Query (id=3f4b6afbed1991fc:3c23055700000000): DEBUG MODE WARNING: Query profile created while running a DEBUG build of Impala. Use RELEASE builds to measure query performance. Summary: Session ID: 464f4c8d55b78179:64ff57afd7b6e7b9 Session Type: BEESWAX Start Time: 2018-03-16 18:15:34.308408000 End Time: 2018-03-16 18:15:42.383631000 Query Type: QUERY Query State: FINISHED Query Status: OK Impala Version: impalad version 3.0.0-SNAPSHOT DEBUG (build b5b207eefaf8160c6e17704a883f80c313de7b0b) User: XXX Connected User: XXX Delegated User: Network Address: XXX Default Db: tpcds_parquet Sql Statement: with results as (select i_item_id, ca_country, ca_state, ca_county, cast(cs_quantity as decimal(12,2)) agg1, cast(cs_list_price as decimal(12,2)) agg2, cast(cs_coupon_amt as decimal(12,2)) agg3, cast(cs_sales_price as decimal(12,2)) agg4, cast(cs_net_profit as decimal(12,2)) agg5, cast(c_birth_year as decimal(12,2)) agg6, cast(cd1.cd_dep_count as decimal(12,2)) agg7 from catalog_sales, customer_demographics cd1, customer_demographics cd2, customer, customer_address, date_dim, item where cs_sold_date_sk = d_date_sk and cs_item_sk = i_item_sk and cs_bill_cdemo_sk = cd1.cd_demo_sk and cs_bill_customer_sk = c_customer_sk and cd1.cd_gender = 'F' and cd1.cd_education_status = 'Unknown' and c_current_cdemo_sk = cd2.cd_demo_sk and c_current_addr_sk = ca_address_sk and c_birth_month in (1, 6, 8, 9, 12, 2) and d_year = 1998 and ca_state in ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') ) select i_item_id, ca_country, ca_state, ca_county, agg1, agg2, agg3, agg4, agg5, agg6, agg7 from ( select i_item_id, ca_country, ca_state, ca_county, avg(agg1) agg1, avg(agg2) agg2, avg(agg3) agg3, avg(agg4) agg4, avg(agg5) agg5, avg(agg6) agg6, avg(agg7) agg7 from results group by i_item_id, ca_country, ca_state, ca_county union all select i_item_id, ca_country, ca_state, NULL as county, avg(agg1) agg1, avg(agg2) agg2, avg(agg3) agg3, avg(agg4) agg4, avg(agg5) agg5, avg(agg6) agg6, avg(agg7) agg7 from results group by i_item_id, ca_country, ca_state union all select i_item_id, ca_country, NULL as ca_state, NULL as county, avg(agg1) agg1, avg(agg2) agg2, avg(agg3) agg3, avg(agg4) agg4, avg(agg5) agg5, avg(agg6) agg6, avg(agg7) agg7 from results group by i_item_id, ca_country union all select i_item_id, NULL as ca_country, NULL as ca_state, NULL as county, avg(agg1) agg1, avg(agg2) agg2, avg(agg3) agg3, avg(agg4) agg4, avg(agg5) agg5, avg(agg6) agg6, avg(agg7) agg7 from results group by i_item_id union all select NULL AS i_item_id, NULL as ca_country, NULL as ca_state, NULL as county, avg(agg1) agg1, avg(agg2) agg2, avg(agg3) agg3, avg(agg4) agg4, avg(agg5) agg5, avg(agg6) agg6, avg(agg7) agg7 from results ) foo order by ca_country, ca_state, ca_county, i_item_id limit 100 Coordinator: XXX Query Options (set by configuration): ABORT_ON_ERROR=1,EXEC_SINGLE_NODE_ROWS_THRESHOLD=0,DECIMAL_V2=0,DISABLE_CODEGEN_ROWS_THRESHOLD=0 Query Options (set by configuration and planner): ABORT_ON_ERROR=1,EXEC_SINGLE_NODE_ROWS_THRESHOLD=0,MT_DOP=0,DECIMAL_V2=0,DISABLE_CODEGEN_ROWS_THRESHOLD=0 Plan: ---------------- Max Per-Host Resource Reservation: Memory=127.75MB Per-Host Resource Estimates: Memory=3.34GB F51:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1 | Per-Host Resources: mem-estimate=0B mem-reservation=0B PLAN-ROOT SINK | mem-estimate=0B mem-reservation=0B | 123:MERGING-EXCHANGE [UNPARTITIONED] | order by: ca_country ASC, ca_state ASC, ca_county ASC, i_item_id ASC | limit: 100 | mem-estimate=0B mem-reservation=0B | tuple-ids=52 row-size=165B cardinality=100 | F50:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 Per-Host Resources: mem-estimate=10.02MB mem-reservation=8.50MB 71:TOP-N [LIMIT=100] | order by: ca_country ASC, ca_state ASC, ca_county ASC, i_item_id ASC | mem-estimate=16.11KB mem-reservation=0B | tuple-ids=52 row-size=165B cardinality=100 | 00:UNION | pass-through-operands: 81 | mem-estimate=0B mem-reservation=0B | tuple-ids=50 row-size=165B cardinality=75607 | |--122:EXCHANGE [RANDOM] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=49 row-size=56B cardinality=1 | | | F49:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1 | Per-Host Resources: mem-estimate=10.00MB mem-reservation=0B | 121:AGGREGATE [FINALIZE] | | output: avg:merge(agg1), avg:merge(agg2), avg:merge(agg3), avg:merge(agg4), avg:merge(agg5), avg:merge(agg6), avg:merge(agg7) | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB | | tuple-ids=49 row-size=56B cardinality=1 | | | 120:EXCHANGE [UNPARTITIONED] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=48 row-size=56B cardinality=1 | | | F47:PLAN FRAGMENT [HASH(c_current_cdemo_sk)] hosts=3 instances=3 | Per-Host Resources: mem-estimate=16.69MB mem-reservation=6.69MB | 70:AGGREGATE | | output: avg(CAST(cs_quantity AS DECIMAL(12,2))), avg(CAST(cs_list_price AS DECIMAL(12,2))), avg(CAST(cs_coupon_amt AS DECIMAL(12,2))), avg(CAST(cs_sales_price AS DECIMAL(12,2))), avg(CAST(cs_net_profit AS DECIMAL(12,2))), avg(CAST(c_birth_year AS DECIMAL(12,2))), avg(CAST(cd1.cd_dep_count AS DECIMAL(12,2))) | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB | | tuple-ids=48 row-size=56B cardinality=1 | | | 69:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_item_sk = i_item_sk | | fk/pk conjuncts: cs_item_sk = i_item_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=40,45,43,44,41,42,46 row-size=153B cardinality=28949 | | | |--119:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=46 row-size=8B cardinality=18000 | | | | | F48:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=16.00MB mem-reservation=0B | | 63:SCAN HDFS [tpcds_parquet.item, RANDOM] | | partitions=1/1 files=1 size=1.73MB | | stored statistics: | | table: rows=18000 size=0B | | columns: all | | extrapolated-rows=disabled | | mem-estimate=16.00MB mem-reservation=0B | | tuple-ids=46 row-size=8B cardinality=18000 | | | 68:HASH JOIN [INNER JOIN, PARTITIONED] | | hash predicates: c_current_cdemo_sk = cd2.cd_demo_sk | | fk/pk conjuncts: c_current_cdemo_sk = cd2.cd_demo_sk | | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB | | tuple-ids=40,45,43,44,41,42 row-size=145B cardinality=28949 | | | |--118:EXCHANGE [HASH(cd2.cd_demo_sk)] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=42 row-size=4B cardinality=1920800 | | | | | F46:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=16.00MB mem-reservation=0B | | 59:SCAN HDFS [tpcds_parquet.customer_demographics cd2, RANDOM] | | partitions=1/1 files=1 size=7.48MB | | stored statistics: | | table: rows=1920800 size=0B | | columns: all | | extrapolated-rows=disabled | | mem-estimate=16.00MB mem-reservation=0B | | tuple-ids=42 row-size=4B cardinality=1920800 | | | 117:EXCHANGE [HASH(c_current_cdemo_sk)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=40,45,43,44,41 row-size=141B cardinality=28949 | | | F45:PLAN FRAGMENT [HASH(cs_bill_cdemo_sk)] hosts=3 instances=3 | Per-Host Resources: mem-estimate=4.75MB mem-reservation=4.75MB | 67:HASH JOIN [INNER JOIN, PARTITIONED] | | hash predicates: cs_bill_cdemo_sk = cd1.cd_demo_sk | | fk/pk conjuncts: cs_bill_cdemo_sk = cd1.cd_demo_sk | | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB | | tuple-ids=40,45,43,44,41 row-size=141B cardinality=28949 | | | |--116:EXCHANGE [HASH(cd1.cd_demo_sk)] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=41 row-size=51B cardinality=194030 | | | | | F44:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=64.00MB mem-reservation=0B | | 58:SCAN HDFS [tpcds_parquet.customer_demographics cd1, RANDOM] | | partitions=1/1 files=1 size=7.48MB | | predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | stored statistics: | | table: rows=1920800 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | parquet dictionary predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | mem-estimate=64.00MB mem-reservation=0B | | tuple-ids=41 row-size=51B cardinality=194030 | | | 115:EXCHANGE [HASH(cs_bill_cdemo_sk)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=40,45,43,44 row-size=90B cardinality=28949 | | | F40:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | Per-Host Resources: mem-estimate=391.81MB mem-reservation=7.81MB runtime-filters-memory=2.00MB | 66:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: c_current_addr_sk = ca_address_sk | | fk/pk conjuncts: c_current_addr_sk = ca_address_sk | | runtime filters: RF054[bloom] <- ca_address_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=40,45,43,44 row-size=90B cardinality=28949 | | | |--114:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=44 row-size=22B cardinality=6863 | | | | | F43:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | | 61:SCAN HDFS [tpcds_parquet.customer_address, RANDOM] | | partitions=1/1 files=1 size=1.16MB | | predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | stored statistics: | | table: rows=50000 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | parquet dictionary predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | mem-estimate=32.00MB mem-reservation=0B | | tuple-ids=44 row-size=22B cardinality=6863 | | | 65:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_bill_customer_sk = c_customer_sk | | fk/pk conjuncts: cs_bill_customer_sk = c_customer_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=40,45,43 row-size=68B cardinality=181767 | | | |--113:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=43 row-size=20B cardinality=50000 | | | | | F42:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=81.00MB mem-reservation=1.00MB runtime-filters-memory=1.00MB | | 60:SCAN HDFS [tpcds_parquet.customer, RANDOM] | | partitions=1/1 files=1 size=5.48MB | | predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | runtime filters: RF054[bloom] -> c_current_addr_sk | | stored statistics: | | table: rows=100000 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | parquet dictionary predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | mem-estimate=80.00MB mem-reservation=0B | | tuple-ids=43 row-size=20B cardinality=50000 | | | 64:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_sold_date_sk = d_date_sk | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk | | runtime filters: RF058[bloom] <- d_date_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=40,45 row-size=48B cardinality=294629 | | | |--112:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=45 row-size=8B cardinality=373 | | | | | F41:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | | 62:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | partitions=1/1 files=1 size=2.15MB | | predicates: d_year = 1998 | | stored statistics: | | table: rows=73049 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: d_year = 1998 | | parquet dictionary predicates: d_year = 1998 | | mem-estimate=32.00MB mem-reservation=0B | | tuple-ids=45 row-size=8B cardinality=373 | | | 57:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM] | partitions=1/1 files=3 size=96.59MB | runtime filters: RF058[bloom] -> cs_sold_date_sk | stored statistics: | table: rows=1441548 size=0B | columns: all | extrapolated-rows=disabled | mem-estimate=384.00MB mem-reservation=0B | tuple-ids=40 row-size=40B cardinality=1441548 | |--111:AGGREGATE [FINALIZE] | | output: avg:merge(agg1), avg:merge(agg2), avg:merge(agg3), avg:merge(agg4), avg:merge(agg5), avg:merge(agg6), avg:merge(agg7) | | group by: i_item_id | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=39 row-size=88B cardinality=8854 | | | 110:EXCHANGE [HASH(i_item_id)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=38 row-size=88B cardinality=8854 | | | F37:PLAN FRAGMENT [HASH(c_current_cdemo_sk)] hosts=3 instances=3 | Per-Host Resources: mem-estimate=16.69MB mem-reservation=8.69MB | 56:AGGREGATE [STREAMING] | | output: avg(CAST(cs_quantity AS DECIMAL(12,2))), avg(CAST(cs_list_price AS DECIMAL(12,2))), avg(CAST(cs_coupon_amt AS DECIMAL(12,2))), avg(CAST(cs_sales_price AS DECIMAL(12,2))), avg(CAST(cs_net_profit AS DECIMAL(12,2))), avg(CAST(c_birth_year AS DECIMAL(12,2))), avg(CAST(cd1.cd_dep_count AS DECIMAL(12,2))) | | group by: i_item_id | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB | | tuple-ids=38 row-size=88B cardinality=8854 | | | 55:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_item_sk = i_item_sk | | fk/pk conjuncts: cs_item_sk = i_item_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=30,35,33,34,31,32,36 row-size=185B cardinality=28949 | | | |--109:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=36 row-size=40B cardinality=18000 | | | | | F38:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | | 49:SCAN HDFS [tpcds_parquet.item, RANDOM] | | partitions=1/1 files=1 size=1.73MB | | stored statistics: | | table: rows=18000 size=0B | | columns: all | | extrapolated-rows=disabled | | mem-estimate=32.00MB mem-reservation=0B | | tuple-ids=36 row-size=40B cardinality=18000 | | | 54:HASH JOIN [INNER JOIN, PARTITIONED] | | hash predicates: c_current_cdemo_sk = cd2.cd_demo_sk | | fk/pk conjuncts: c_current_cdemo_sk = cd2.cd_demo_sk | | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB | | tuple-ids=30,35,33,34,31,32 row-size=145B cardinality=28949 | | | |--108:EXCHANGE [HASH(cd2.cd_demo_sk)] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=32 row-size=4B cardinality=1920800 | | | | | F36:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=16.00MB mem-reservation=0B | | 45:SCAN HDFS [tpcds_parquet.customer_demographics cd2, RANDOM] | | partitions=1/1 files=1 size=7.48MB | | stored statistics: | | table: rows=1920800 size=0B | | columns: all | | extrapolated-rows=disabled | | mem-estimate=16.00MB mem-reservation=0B | | tuple-ids=32 row-size=4B cardinality=1920800 | | | 107:EXCHANGE [HASH(c_current_cdemo_sk)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=30,35,33,34,31 row-size=141B cardinality=28949 | | | F35:PLAN FRAGMENT [HASH(cs_bill_cdemo_sk)] hosts=3 instances=3 | Per-Host Resources: mem-estimate=4.75MB mem-reservation=4.75MB | 53:HASH JOIN [INNER JOIN, PARTITIONED] | | hash predicates: cs_bill_cdemo_sk = cd1.cd_demo_sk | | fk/pk conjuncts: cs_bill_cdemo_sk = cd1.cd_demo_sk | | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB | | tuple-ids=30,35,33,34,31 row-size=141B cardinality=28949 | | | |--106:EXCHANGE [HASH(cd1.cd_demo_sk)] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=31 row-size=51B cardinality=194030 | | | | | F34:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=64.00MB mem-reservation=0B | | 44:SCAN HDFS [tpcds_parquet.customer_demographics cd1, RANDOM] | | partitions=1/1 files=1 size=7.48MB | | predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | stored statistics: | | table: rows=1920800 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | parquet dictionary predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | mem-estimate=64.00MB mem-reservation=0B | | tuple-ids=31 row-size=51B cardinality=194030 | | | 105:EXCHANGE [HASH(cs_bill_cdemo_sk)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=30,35,33,34 row-size=90B cardinality=28949 | | | F30:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | Per-Host Resources: mem-estimate=391.81MB mem-reservation=7.81MB runtime-filters-memory=2.00MB | 52:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: c_current_addr_sk = ca_address_sk | | fk/pk conjuncts: c_current_addr_sk = ca_address_sk | | runtime filters: RF042[bloom] <- ca_address_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=30,35,33,34 row-size=90B cardinality=28949 | | | |--104:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=34 row-size=22B cardinality=6863 | | | | | F33:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | | 47:SCAN HDFS [tpcds_parquet.customer_address, RANDOM] | | partitions=1/1 files=1 size=1.16MB | | predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | stored statistics: | | table: rows=50000 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | parquet dictionary predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | mem-estimate=32.00MB mem-reservation=0B | | tuple-ids=34 row-size=22B cardinality=6863 | | | 51:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_bill_customer_sk = c_customer_sk | | fk/pk conjuncts: cs_bill_customer_sk = c_customer_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=30,35,33 row-size=68B cardinality=181767 | | | |--103:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=33 row-size=20B cardinality=50000 | | | | | F32:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=81.00MB mem-reservation=1.00MB runtime-filters-memory=1.00MB | | 46:SCAN HDFS [tpcds_parquet.customer, RANDOM] | | partitions=1/1 files=1 size=5.48MB | | predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | runtime filters: RF042[bloom] -> c_current_addr_sk | | stored statistics: | | table: rows=100000 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | parquet dictionary predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | mem-estimate=80.00MB mem-reservation=0B | | tuple-ids=33 row-size=20B cardinality=50000 | | | 50:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_sold_date_sk = d_date_sk | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk | | runtime filters: RF046[bloom] <- d_date_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=30,35 row-size=48B cardinality=294629 | | | |--102:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=35 row-size=8B cardinality=373 | | | | | F31:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | | 48:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | partitions=1/1 files=1 size=2.15MB | | predicates: d_year = 1998 | | stored statistics: | | table: rows=73049 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: d_year = 1998 | | parquet dictionary predicates: d_year = 1998 | | mem-estimate=32.00MB mem-reservation=0B | | tuple-ids=35 row-size=8B cardinality=373 | | | 43:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM] | partitions=1/1 files=3 size=96.59MB | runtime filters: RF046[bloom] -> cs_sold_date_sk | stored statistics: | table: rows=1441548 size=0B | columns: all | extrapolated-rows=disabled | mem-estimate=384.00MB mem-reservation=0B | tuple-ids=30 row-size=40B cardinality=1441548 | |--101:AGGREGATE [FINALIZE] | | output: avg:merge(agg1), avg:merge(agg2), avg:merge(agg3), avg:merge(agg4), avg:merge(agg5), avg:merge(agg6), avg:merge(agg7) | | group by: i_item_id, ca_country | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=29 row-size=117B cardinality=8854 | | | 100:EXCHANGE [HASH(i_item_id,ca_country)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=28 row-size=117B cardinality=8854 | | | F27:PLAN FRAGMENT [HASH(c_current_cdemo_sk)] hosts=3 instances=3 | Per-Host Resources: mem-estimate=16.69MB mem-reservation=8.69MB | 42:AGGREGATE [STREAMING] | | output: avg(CAST(cs_quantity AS DECIMAL(12,2))), avg(CAST(cs_list_price AS DECIMAL(12,2))), avg(CAST(cs_coupon_amt AS DECIMAL(12,2))), avg(CAST(cs_sales_price AS DECIMAL(12,2))), avg(CAST(cs_net_profit AS DECIMAL(12,2))), avg(CAST(c_birth_year AS DECIMAL(12,2))), avg(CAST(cd1.cd_dep_count AS DECIMAL(12,2))) | | group by: i_item_id, ca_country | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB | | tuple-ids=28 row-size=117B cardinality=8854 | | | 41:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_item_sk = i_item_sk | | fk/pk conjuncts: cs_item_sk = i_item_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=20,25,23,24,21,22,26 row-size=214B cardinality=28949 | | | |--99:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=26 row-size=40B cardinality=18000 | | | | | F28:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | | 35:SCAN HDFS [tpcds_parquet.item, RANDOM] | | partitions=1/1 files=1 size=1.73MB | | stored statistics: | | table: rows=18000 size=0B | | columns: all | | extrapolated-rows=disabled | | mem-estimate=32.00MB mem-reservation=0B | | tuple-ids=26 row-size=40B cardinality=18000 | | | 40:HASH JOIN [INNER JOIN, PARTITIONED] | | hash predicates: c_current_cdemo_sk = cd2.cd_demo_sk | | fk/pk conjuncts: c_current_cdemo_sk = cd2.cd_demo_sk | | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB | | tuple-ids=20,25,23,24,21,22 row-size=174B cardinality=28949 | | | |--98:EXCHANGE [HASH(cd2.cd_demo_sk)] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=22 row-size=4B cardinality=1920800 | | | | | F26:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=16.00MB mem-reservation=0B | | 31:SCAN HDFS [tpcds_parquet.customer_demographics cd2, RANDOM] | | partitions=1/1 files=1 size=7.48MB | | stored statistics: | | table: rows=1920800 size=0B | | columns: all | | extrapolated-rows=disabled | | mem-estimate=16.00MB mem-reservation=0B | | tuple-ids=22 row-size=4B cardinality=1920800 | | | 97:EXCHANGE [HASH(c_current_cdemo_sk)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=20,25,23,24,21 row-size=170B cardinality=28949 | | | F25:PLAN FRAGMENT [HASH(cs_bill_cdemo_sk)] hosts=3 instances=3 | Per-Host Resources: mem-estimate=4.75MB mem-reservation=4.75MB | 39:HASH JOIN [INNER JOIN, PARTITIONED] | | hash predicates: cs_bill_cdemo_sk = cd1.cd_demo_sk | | fk/pk conjuncts: cs_bill_cdemo_sk = cd1.cd_demo_sk | | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB | | tuple-ids=20,25,23,24,21 row-size=170B cardinality=28949 | | | |--96:EXCHANGE [HASH(cd1.cd_demo_sk)] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=21 row-size=51B cardinality=194030 | | | | | F24:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=64.00MB mem-reservation=0B | | 30:SCAN HDFS [tpcds_parquet.customer_demographics cd1, RANDOM] | | partitions=1/1 files=1 size=7.48MB | | predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | stored statistics: | | table: rows=1920800 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | parquet dictionary predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | mem-estimate=64.00MB mem-reservation=0B | | tuple-ids=21 row-size=51B cardinality=194030 | | | 95:EXCHANGE [HASH(cs_bill_cdemo_sk)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=20,25,23,24 row-size=119B cardinality=28949 | | | F20:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | Per-Host Resources: mem-estimate=391.81MB mem-reservation=7.81MB runtime-filters-memory=2.00MB | 38:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: c_current_addr_sk = ca_address_sk | | fk/pk conjuncts: c_current_addr_sk = ca_address_sk | | runtime filters: RF030[bloom] <- ca_address_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=20,25,23,24 row-size=119B cardinality=28949 | | | |--94:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=24 row-size=51B cardinality=6863 | | | | | F23:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=48.00MB mem-reservation=0B | | 33:SCAN HDFS [tpcds_parquet.customer_address, RANDOM] | | partitions=1/1 files=1 size=1.16MB | | predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | stored statistics: | | table: rows=50000 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | parquet dictionary predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | mem-estimate=48.00MB mem-reservation=0B | | tuple-ids=24 row-size=51B cardinality=6863 | | | 37:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_bill_customer_sk = c_customer_sk | | fk/pk conjuncts: cs_bill_customer_sk = c_customer_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=20,25,23 row-size=68B cardinality=181767 | | | |--93:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=23 row-size=20B cardinality=50000 | | | | | F22:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=81.00MB mem-reservation=1.00MB runtime-filters-memory=1.00MB | | 32:SCAN HDFS [tpcds_parquet.customer, RANDOM] | | partitions=1/1 files=1 size=5.48MB | | predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | runtime filters: RF030[bloom] -> c_current_addr_sk | | stored statistics: | | table: rows=100000 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | parquet dictionary predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | mem-estimate=80.00MB mem-reservation=0B | | tuple-ids=23 row-size=20B cardinality=50000 | | | 36:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_sold_date_sk = d_date_sk | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk | | runtime filters: RF034[bloom] <- d_date_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=20,25 row-size=48B cardinality=294629 | | | |--92:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=25 row-size=8B cardinality=373 | | | | | F21:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | | 34:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | partitions=1/1 files=1 size=2.15MB | | predicates: d_year = 1998 | | stored statistics: | | table: rows=73049 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: d_year = 1998 | | parquet dictionary predicates: d_year = 1998 | | mem-estimate=32.00MB mem-reservation=0B | | tuple-ids=25 row-size=8B cardinality=373 | | | 29:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM] | partitions=1/1 files=3 size=96.59MB | runtime filters: RF034[bloom] -> cs_sold_date_sk | stored statistics: | table: rows=1441548 size=0B | columns: all | extrapolated-rows=disabled | mem-estimate=384.00MB mem-reservation=0B | tuple-ids=20 row-size=40B cardinality=1441548 | |--91:AGGREGATE [FINALIZE] | | output: avg:merge(agg1), avg:merge(agg2), avg:merge(agg3), avg:merge(agg4), avg:merge(agg5), avg:merge(agg6), avg:merge(agg7) | | group by: i_item_id, ca_country, ca_state | | mem-estimate=10.00MB mem-reservation=4.75MB spill-buffer=256.00KB | | tuple-ids=19 row-size=135B cardinality=28949 | | | 90:EXCHANGE [HASH(i_item_id,ca_country,ca_state)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=18 row-size=135B cardinality=28949 | | | F17:PLAN FRAGMENT [HASH(c_current_cdemo_sk)] hosts=3 instances=3 | Per-Host Resources: mem-estimate=16.69MB mem-reservation=11.69MB | 28:AGGREGATE [STREAMING] | | output: avg(CAST(cs_quantity AS DECIMAL(12,2))), avg(CAST(cs_list_price AS DECIMAL(12,2))), avg(CAST(cs_coupon_amt AS DECIMAL(12,2))), avg(CAST(cs_sales_price AS DECIMAL(12,2))), avg(CAST(cs_net_profit AS DECIMAL(12,2))), avg(CAST(c_birth_year AS DECIMAL(12,2))), avg(CAST(cd1.cd_dep_count AS DECIMAL(12,2))) | | group by: i_item_id, ca_country, ca_state | | mem-estimate=10.00MB mem-reservation=5.00MB spill-buffer=256.00KB | | tuple-ids=18 row-size=135B cardinality=28949 | | | 27:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_item_sk = i_item_sk | | fk/pk conjuncts: cs_item_sk = i_item_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=10,15,13,14,11,12,16 row-size=214B cardinality=28949 | | | |--89:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=16 row-size=40B cardinality=18000 | | | | | F18:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | | 21:SCAN HDFS [tpcds_parquet.item, RANDOM] | | partitions=1/1 files=1 size=1.73MB | | stored statistics: | | table: rows=18000 size=0B | | columns: all | | extrapolated-rows=disabled | | mem-estimate=32.00MB mem-reservation=0B | | tuple-ids=16 row-size=40B cardinality=18000 | | | 26:HASH JOIN [INNER JOIN, PARTITIONED] | | hash predicates: c_current_cdemo_sk = cd2.cd_demo_sk | | fk/pk conjuncts: c_current_cdemo_sk = cd2.cd_demo_sk | | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB | | tuple-ids=10,15,13,14,11,12 row-size=174B cardinality=28949 | | | |--88:EXCHANGE [HASH(cd2.cd_demo_sk)] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=12 row-size=4B cardinality=1920800 | | | | | F16:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=16.00MB mem-reservation=0B | | 17:SCAN HDFS [tpcds_parquet.customer_demographics cd2, RANDOM] | | partitions=1/1 files=1 size=7.48MB | | stored statistics: | | table: rows=1920800 size=0B | | columns: all | | extrapolated-rows=disabled | | mem-estimate=16.00MB mem-reservation=0B | | tuple-ids=12 row-size=4B cardinality=1920800 | | | 87:EXCHANGE [HASH(c_current_cdemo_sk)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=10,15,13,14,11 row-size=170B cardinality=28949 | | | F15:PLAN FRAGMENT [HASH(cs_bill_cdemo_sk)] hosts=3 instances=3 | Per-Host Resources: mem-estimate=4.75MB mem-reservation=4.75MB | 25:HASH JOIN [INNER JOIN, PARTITIONED] | | hash predicates: cs_bill_cdemo_sk = cd1.cd_demo_sk | | fk/pk conjuncts: cs_bill_cdemo_sk = cd1.cd_demo_sk | | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB | | tuple-ids=10,15,13,14,11 row-size=170B cardinality=28949 | | | |--86:EXCHANGE [HASH(cd1.cd_demo_sk)] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=11 row-size=51B cardinality=194030 | | | | | F14:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=64.00MB mem-reservation=0B | | 16:SCAN HDFS [tpcds_parquet.customer_demographics cd1, RANDOM] | | partitions=1/1 files=1 size=7.48MB | | predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | stored statistics: | | table: rows=1920800 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | parquet dictionary predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | | mem-estimate=64.00MB mem-reservation=0B | | tuple-ids=11 row-size=51B cardinality=194030 | | | 85:EXCHANGE [HASH(cs_bill_cdemo_sk)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=10,15,13,14 row-size=119B cardinality=28949 | | | F10:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 | Per-Host Resources: mem-estimate=391.81MB mem-reservation=7.81MB runtime-filters-memory=2.00MB | 24:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: c_current_addr_sk = ca_address_sk | | fk/pk conjuncts: c_current_addr_sk = ca_address_sk | | runtime filters: RF018[bloom] <- ca_address_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=10,15,13,14 row-size=119B cardinality=28949 | | | |--84:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=14 row-size=51B cardinality=6863 | | | | | F13:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=48.00MB mem-reservation=0B | | 19:SCAN HDFS [tpcds_parquet.customer_address, RANDOM] | | partitions=1/1 files=1 size=1.16MB | | predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | stored statistics: | | table: rows=50000 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | parquet dictionary predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | | mem-estimate=48.00MB mem-reservation=0B | | tuple-ids=14 row-size=51B cardinality=6863 | | | 23:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_bill_customer_sk = c_customer_sk | | fk/pk conjuncts: cs_bill_customer_sk = c_customer_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=10,15,13 row-size=68B cardinality=181767 | | | |--83:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=13 row-size=20B cardinality=50000 | | | | | F12:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=81.00MB mem-reservation=1.00MB runtime-filters-memory=1.00MB | | 18:SCAN HDFS [tpcds_parquet.customer, RANDOM] | | partitions=1/1 files=1 size=5.48MB | | predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | runtime filters: RF018[bloom] -> c_current_addr_sk | | stored statistics: | | table: rows=100000 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | parquet dictionary predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | | mem-estimate=80.00MB mem-reservation=0B | | tuple-ids=13 row-size=20B cardinality=50000 | | | 22:HASH JOIN [INNER JOIN, BROADCAST] | | hash predicates: cs_sold_date_sk = d_date_sk | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk | | runtime filters: RF022[bloom] <- d_date_sk | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | | tuple-ids=10,15 row-size=48B cardinality=294629 | | | |--82:EXCHANGE [BROADCAST] | | | mem-estimate=0B mem-reservation=0B | | | tuple-ids=15 row-size=8B cardinality=373 | | | | | F11:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | | 20:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | | partitions=1/1 files=1 size=2.15MB | | predicates: d_year = 1998 | | stored statistics: | | table: rows=73049 size=0B | | columns: all | | extrapolated-rows=disabled | | parquet statistics predicates: d_year = 1998 | | parquet dictionary predicates: d_year = 1998 | | mem-estimate=32.00MB mem-reservation=0B | | tuple-ids=15 row-size=8B cardinality=373 | | | 15:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM] | partitions=1/1 files=3 size=96.59MB | runtime filters: RF022[bloom] -> cs_sold_date_sk | stored statistics: | table: rows=1441548 size=0B | columns: all | extrapolated-rows=disabled | mem-estimate=384.00MB mem-reservation=0B | tuple-ids=10 row-size=40B cardinality=1441548 | 81:AGGREGATE [FINALIZE] | output: avg:merge(agg1), avg:merge(agg2), avg:merge(agg3), avg:merge(agg4), avg:merge(agg5), avg:merge(agg6), avg:merge(agg7) | group by: i_item_id, ca_country, ca_state, ca_county | mem-estimate=10.00MB mem-reservation=8.50MB spill-buffer=512.00KB | tuple-ids=9 row-size=165B cardinality=28949 | 80:EXCHANGE [HASH(i_item_id,ca_country,ca_state,ca_county)] | mem-estimate=0B mem-reservation=0B | tuple-ids=8 row-size=165B cardinality=28949 | F07:PLAN FRAGMENT [HASH(c_current_cdemo_sk)] hosts=3 instances=3 Per-Host Resources: mem-estimate=16.69MB mem-reservation=15.69MB 14:AGGREGATE [STREAMING] | output: avg(CAST(cs_quantity AS DECIMAL(12,2))), avg(CAST(cs_list_price AS DECIMAL(12,2))), avg(CAST(cs_coupon_amt AS DECIMAL(12,2))), avg(CAST(cs_sales_price AS DECIMAL(12,2))), avg(CAST(cs_net_profit AS DECIMAL(12,2))), avg(CAST(c_birth_year AS DECIMAL(12,2))), avg(CAST(cd1.cd_dep_count AS DECIMAL(12,2))) | group by: i_item_id, ca_country, ca_state, ca_county | mem-estimate=10.00MB mem-reservation=9.00MB spill-buffer=512.00KB | tuple-ids=8 row-size=165B cardinality=28949 | 13:HASH JOIN [INNER JOIN, BROADCAST] | hash predicates: cs_item_sk = i_item_sk | fk/pk conjuncts: cs_item_sk = i_item_sk | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | tuple-ids=0,5,3,4,1,2,6 row-size=244B cardinality=28949 | |--79:EXCHANGE [BROADCAST] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=6 row-size=40B cardinality=18000 | | | F08:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | 07:SCAN HDFS [tpcds_parquet.item, RANDOM] | partitions=1/1 files=1 size=1.73MB | stored statistics: | table: rows=18000 size=0B | columns: all | extrapolated-rows=disabled | mem-estimate=32.00MB mem-reservation=0B | tuple-ids=6 row-size=40B cardinality=18000 | 12:HASH JOIN [INNER JOIN, PARTITIONED] | hash predicates: c_current_cdemo_sk = cd2.cd_demo_sk | fk/pk conjuncts: c_current_cdemo_sk = cd2.cd_demo_sk | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB | tuple-ids=0,5,3,4,1,2 row-size=204B cardinality=28949 | |--78:EXCHANGE [HASH(cd2.cd_demo_sk)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=2 row-size=4B cardinality=1920800 | | | F06:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Host Resources: mem-estimate=16.00MB mem-reservation=0B | 03:SCAN HDFS [tpcds_parquet.customer_demographics cd2, RANDOM] | partitions=1/1 files=1 size=7.48MB | stored statistics: | table: rows=1920800 size=0B | columns: all | extrapolated-rows=disabled | mem-estimate=16.00MB mem-reservation=0B | tuple-ids=2 row-size=4B cardinality=1920800 | 77:EXCHANGE [HASH(c_current_cdemo_sk)] | mem-estimate=0B mem-reservation=0B | tuple-ids=0,5,3,4,1 row-size=200B cardinality=28949 | F05:PLAN FRAGMENT [HASH(cs_bill_cdemo_sk)] hosts=3 instances=3 Per-Host Resources: mem-estimate=4.75MB mem-reservation=4.75MB 11:HASH JOIN [INNER JOIN, PARTITIONED] | hash predicates: cs_bill_cdemo_sk = cd1.cd_demo_sk | fk/pk conjuncts: cs_bill_cdemo_sk = cd1.cd_demo_sk | mem-estimate=4.75MB mem-reservation=4.75MB spill-buffer=256.00KB | tuple-ids=0,5,3,4,1 row-size=200B cardinality=28949 | |--76:EXCHANGE [HASH(cd1.cd_demo_sk)] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=1 row-size=51B cardinality=194030 | | | F04:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Host Resources: mem-estimate=64.00MB mem-reservation=0B | 02:SCAN HDFS [tpcds_parquet.customer_demographics cd1, RANDOM] | partitions=1/1 files=1 size=7.48MB | predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | stored statistics: | table: rows=1920800 size=0B | columns: all | extrapolated-rows=disabled | parquet statistics predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | parquet dictionary predicates: cd1.cd_gender = 'F', cd1.cd_education_status = 'Unknown' | mem-estimate=64.00MB mem-reservation=0B | tuple-ids=1 row-size=51B cardinality=194030 | 75:EXCHANGE [HASH(cs_bill_cdemo_sk)] | mem-estimate=0B mem-reservation=0B | tuple-ids=0,5,3,4 row-size=149B cardinality=28949 | F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=3 Per-Host Resources: mem-estimate=391.81MB mem-reservation=7.81MB runtime-filters-memory=2.00MB 10:HASH JOIN [INNER JOIN, BROADCAST] | hash predicates: c_current_addr_sk = ca_address_sk | fk/pk conjuncts: c_current_addr_sk = ca_address_sk | runtime filters: RF006[bloom] <- ca_address_sk | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | tuple-ids=0,5,3,4 row-size=149B cardinality=28949 | |--74:EXCHANGE [BROADCAST] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=4 row-size=81B cardinality=6863 | | | F03:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Host Resources: mem-estimate=64.00MB mem-reservation=0B | 05:SCAN HDFS [tpcds_parquet.customer_address, RANDOM] | partitions=1/1 files=1 size=1.16MB | predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | stored statistics: | table: rows=50000 size=0B | columns: all | extrapolated-rows=disabled | parquet statistics predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | parquet dictionary predicates: ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS') | mem-estimate=64.00MB mem-reservation=0B | tuple-ids=4 row-size=81B cardinality=6863 | 09:HASH JOIN [INNER JOIN, BROADCAST] | hash predicates: cs_bill_customer_sk = c_customer_sk | fk/pk conjuncts: cs_bill_customer_sk = c_customer_sk | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | tuple-ids=0,5,3 row-size=68B cardinality=181767 | |--73:EXCHANGE [BROADCAST] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=3 row-size=20B cardinality=50000 | | | F02:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Host Resources: mem-estimate=81.00MB mem-reservation=1.00MB runtime-filters-memory=1.00MB | 04:SCAN HDFS [tpcds_parquet.customer, RANDOM] | partitions=1/1 files=1 size=5.48MB | predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | runtime filters: RF006[bloom] -> c_current_addr_sk | stored statistics: | table: rows=100000 size=0B | columns: all | extrapolated-rows=disabled | parquet statistics predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | parquet dictionary predicates: c_birth_month IN (1, 6, 8, 9, 12, 2) | mem-estimate=80.00MB mem-reservation=0B | tuple-ids=3 row-size=20B cardinality=50000 | 08:HASH JOIN [INNER JOIN, BROADCAST] | hash predicates: cs_sold_date_sk = d_date_sk | fk/pk conjuncts: cs_sold_date_sk = d_date_sk | runtime filters: RF010[bloom] <- d_date_sk | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB | tuple-ids=0,5 row-size=48B cardinality=294629 | |--72:EXCHANGE [BROADCAST] | | mem-estimate=0B mem-reservation=0B | | tuple-ids=5 row-size=8B cardinality=373 | | | F01:PLAN FRAGMENT [RANDOM] hosts=1 instances=1 | Per-Host Resources: mem-estimate=32.00MB mem-reservation=0B | 06:SCAN HDFS [tpcds_parquet.date_dim, RANDOM] | partitions=1/1 files=1 size=2.15MB | predicates: d_year = 1998 | stored statistics: | table: rows=73049 size=0B | columns: all | extrapolated-rows=disabled | parquet statistics predicates: d_year = 1998 | parquet dictionary predicates: d_year = 1998 | mem-estimate=32.00MB mem-reservation=0B | tuple-ids=5 row-size=8B cardinality=373 | 01:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM] partitions=1/1 files=3 size=96.59MB runtime filters: RF010[bloom] -> cs_sold_date_sk stored statistics: table: rows=1441548 size=0B columns: all extrapolated-rows=disabled mem-estimate=384.00MB mem-reservation=0B tuple-ids=0 row-size=40B cardinality=1441548 ---------------- Estimated Per-Host Mem: 3585359985 Per Host Min Reservation: XXX:22000(122.75 MB) XXX:22001(127.75 MB) XXX:22002(122.75 MB) Request Pool: default-pool Admission result: Admitted immediately ExecSummary: Operator #Hosts Avg Time Max Time #Rows Est. #Rows Peak Mem Est. Peak Mem Detail -------------------------------------------------------------------------------------------------------------------------------------------------- 123:MERGING-EXCHANGE 1 227.545us 227.545us 100 100 120.00 KB 0 UNPARTITIONED 71:TOP-N 3 834.048us 1.002ms 300 100 462.00 KB 16.11 KB 00:UNION 3 1.179ms 1.461ms 5.02K 75.61K 20.00 KB 0 |--91:AGGREGATE 3 16.396ms 23.254ms 1.31K 28.95K 4.82 MB 10.00 MB FINALIZE | 90:EXCHANGE 3 134.474us 137.968us 1.32K 28.95K 256.00 KB 0 HASH(i_item_id,ca_country,ca_state) | 28:AGGREGATE 3 3.138ms 3.977ms 1.32K 28.95K 5.11 MB 10.00 MB STREAMING | 27:HASH JOIN 3 15.347ms 21.125ms 1.32K 28.95K 2.03 MB 1.94 MB INNER JOIN, BROADCAST | |--89:EXCHANGE 3 16.297ms 26.890ms 18.00K 18.00K 1.23 MB 0 BROADCAST | | 21:SCAN HDFS 1 145.994ms 145.994ms 18.00K 18.00K 861.66 KB 32.00 MB tpcds_parquet.item | 26:HASH JOIN 3 215.296ms 246.451ms 1.32K 28.95K 20.07 MB 4.75 MB INNER JOIN, PARTITIONED | |--88:EXCHANGE 3 261.054ms 313.292ms 1.92M 1.92M 5.91 MB 0 HASH(cd2.cd_demo_sk) | | 17:SCAN HDFS 1 3s328ms 3s328ms 1.92M 1.92M 9.01 MB 16.00 MB tpcds_parquet.customer_demographics cd2 | 87:EXCHANGE 3 151.119us 164.467us 1.33K 28.95K 176.00 KB 0 HASH(c_current_cdemo_sk) | 25:HASH JOIN 3 60.926ms 98.054ms 1.33K 28.95K 6.06 MB 4.75 MB INNER JOIN, PARTITIONED | |--86:EXCHANGE 3 28.212ms 37.929ms 137.20K 194.03K 1.17 MB 0 HASH(cd1.cd_demo_sk) | | 16:SCAN HDFS 1 3s570ms 3s570ms 137.20K 194.03K 9.53 MB 64.00 MB tpcds_parquet.customer_demographics cd1 | 85:EXCHANGE 3 2.224ms 2.734ms 19.82K 28.95K 1.48 MB 0 HASH(cs_bill_cdemo_sk) | 24:HASH JOIN 3 28.685ms 42.066ms 19.82K 28.95K 10.06 MB 1.94 MB INNER JOIN, BROADCAST | |--84:EXCHANGE 3 5.131ms 11.271ms 7.32K 6.86K 520.00 KB 0 BROADCAST | | 19:SCAN HDFS 1 455.112ms 455.112ms 7.32K 6.86K 1.17 MB 48.00 MB tpcds_parquet.customer_address | 23:HASH JOIN 3 58.859ms 89.154ms 136.68K 181.77K 11.07 MB 1.94 MB INNER JOIN, BROADCAST | |--83:EXCHANGE 3 17.585ms 30.104ms 47.71K 50.00K 1.82 MB 0 BROADCAST | | 18:SCAN HDFS 1 567.011ms 567.011ms 47.71K 50.00K 3.00 MB 80.00 MB tpcds_parquet.customer | 22:HASH JOIN 3 45.379ms 83.294ms 285.69K 294.63K 2.00 MB 1.94 MB INNER JOIN, BROADCAST | |--82:EXCHANGE 3 71.773us 72.659us 365 373 16.00 KB 0 BROADCAST | | 20:SCAN HDFS 1 412.222ms 412.222ms 365 373 849.29 KB 32.00 MB tpcds_parquet.date_dim | 15:SCAN HDFS 3 1s244ms 1s541ms 656.03K 1.44M 15.59 MB 384.00 MB tpcds_parquet.catalog_sales |--101:AGGREGATE 3 7.815ms 9.141ms 1.20K 8.85K 1.99 MB 10.00 MB FINALIZE | 100:EXCHANGE 3 168.029us 170.559us 1.26K 8.85K 176.00 KB 0 HASH(i_item_id,ca_country) | 42:AGGREGATE 3 2.153ms 4.813ms 1.26K 8.85K 2.10 MB 10.00 MB STREAMING | 41:HASH JOIN 3 35.565ms 47.322ms 1.32K 28.95K 2.03 MB 1.94 MB INNER JOIN, BROADCAST | |--99:EXCHANGE 3 10.003ms 17.556ms 18.00K 18.00K 1.23 MB 0 BROADCAST | | 35:SCAN HDFS 1 221.792ms 221.792ms 18.00K 18.00K 1.25 MB 32.00 MB tpcds_parquet.item | 40:HASH JOIN 3 201.996ms 250.334ms 1.32K 28.95K 20.07 MB 4.75 MB INNER JOIN, PARTITIONED | |--98:EXCHANGE 3 222.155ms 254.834ms 1.92M 1.92M 4.08 MB 0 HASH(cd2.cd_demo_sk) | | 31:SCAN HDFS 1 3s407ms 3s407ms 1.92M 1.92M 9.01 MB 16.00 MB tpcds_parquet.customer_demographics cd2 | 97:EXCHANGE 3 142.793us 177.134us 1.33K 28.95K 176.00 KB 0 HASH(c_current_cdemo_sk) | 39:HASH JOIN 3 50.639ms 110.125ms 1.33K 28.95K 6.06 MB 4.75 MB INNER JOIN, PARTITIONED | |--96:EXCHANGE 3 24.671ms 55.005ms 137.20K 194.03K 1.29 MB 0 HASH(cd1.cd_demo_sk) | | 30:SCAN HDFS 1 3s776ms 3s776ms 137.20K 194.03K 9.49 MB 64.00 MB tpcds_parquet.customer_demographics cd1 | 95:EXCHANGE 3 2.067ms 2.475ms 19.82K 28.95K 1.48 MB 0 HASH(cs_bill_cdemo_sk) | 38:HASH JOIN 3 24.433ms 35.890ms 19.82K 28.95K 10.06 MB 1.94 MB INNER JOIN, BROADCAST | |--94:EXCHANGE 3 5.583ms 14.415ms 7.32K 6.86K 520.00 KB 0 BROADCAST | | 33:SCAN HDFS 1 483.533ms 483.533ms 7.32K 6.86K 1.23 MB 48.00 MB tpcds_parquet.customer_address | 37:HASH JOIN 3 41.333ms 72.981ms 136.68K 181.77K 11.07 MB 1.94 MB INNER JOIN, BROADCAST | |--93:EXCHANGE 3 23.075ms 32.455ms 47.71K 50.00K 1.82 MB 0 BROADCAST | | 32:SCAN HDFS 1 527.514ms 527.514ms 47.71K 50.00K 2.92 MB 80.00 MB tpcds_parquet.customer | 36:HASH JOIN 3 33.260ms 72.042ms 285.69K 294.63K 2.00 MB 1.94 MB INNER JOIN, BROADCAST | |--92:EXCHANGE 3 72.010us 77.637us 365 373 16.00 KB 0 BROADCAST | | 34:SCAN HDFS 1 490.691ms 490.691ms 365 373 849.29 KB 32.00 MB tpcds_parquet.date_dim | 29:SCAN HDFS 3 1s284ms 1s738ms 656.03K 1.44M 15.70 MB 384.00 MB tpcds_parquet.catalog_sales |--111:AGGREGATE 3 7.587ms 8.765ms 1.20K 8.85K 1.97 MB 10.00 MB FINALIZE | 110:EXCHANGE 3 101.784us 122.997us 1.26K 8.85K 192.00 KB 0 HASH(i_item_id) | 56:AGGREGATE 3 11.720ms 31.449ms 1.26K 8.85K 2.08 MB 10.00 MB STREAMING | 55:HASH JOIN 3 18.227ms 32.558ms 1.32K 28.95K 2.03 MB 1.94 MB INNER JOIN, BROADCAST | |--109:EXCHANGE 3 9.305ms 16.749ms 18.00K 18.00K 1.23 MB 0 BROADCAST | | 49:SCAN HDFS 1 95.765ms 95.765ms 18.00K 18.00K 1.28 MB 32.00 MB tpcds_parquet.item | 54:HASH JOIN 3 191.679ms 217.135ms 1.32K 28.95K 20.07 MB 4.75 MB INNER JOIN, PARTITIONED | |--108:EXCHANGE 3 256.902ms 285.330ms 1.92M 1.92M 3.89 MB 0 HASH(cd2.cd_demo_sk) | | 45:SCAN HDFS 1 2s529ms 2s529ms 1.92M 1.92M 9.01 MB 16.00 MB tpcds_parquet.customer_demographics cd2 | 107:EXCHANGE 3 116.592us 160.714us 1.33K 28.95K 176.00 KB 0 HASH(c_current_cdemo_sk) | 53:HASH JOIN 3 32.067ms 50.006ms 1.33K 28.95K 6.06 MB 4.75 MB INNER JOIN, PARTITIONED | |--106:EXCHANGE 3 20.633ms 41.941ms 137.20K 194.03K 1.13 MB 0 HASH(cd1.cd_demo_sk) | | 44:SCAN HDFS 1 3s252ms 3s252ms 137.20K 194.03K 9.01 MB 64.00 MB tpcds_parquet.customer_demographics cd1 | 105:EXCHANGE 3 1.815ms 2.018ms 19.82K 28.95K 1.27 MB 0 HASH(cs_bill_cdemo_sk) | 52:HASH JOIN 3 24.559ms 38.649ms 19.82K 28.95K 10.06 MB 1.94 MB INNER JOIN, BROADCAST | |--104:EXCHANGE 3 10.009ms 25.415ms 7.32K 6.86K 296.00 KB 0 BROADCAST | | 47:SCAN HDFS 1 163.286ms 163.286ms 7.32K 6.86K 1.02 MB 32.00 MB tpcds_parquet.customer_address | 51:HASH JOIN 3 70.390ms 102.747ms 136.68K 181.77K 11.07 MB 1.94 MB INNER JOIN, BROADCAST | |--103:EXCHANGE 3 9.442ms 11.984ms 47.71K 50.00K 1.82 MB 0 BROADCAST | | 46:SCAN HDFS 1 533.640ms 533.640ms 47.71K 50.00K 2.62 MB 80.00 MB tpcds_parquet.customer | 50:HASH JOIN 3 46.303ms 72.657ms 285.69K 294.63K 2.00 MB 1.94 MB INNER JOIN, BROADCAST | |--102:EXCHANGE 3 73.707us 81.126us 365 373 16.00 KB 0 BROADCAST | | 48:SCAN HDFS 1 268.208ms 268.208ms 365 373 849.29 KB 32.00 MB tpcds_parquet.date_dim | 43:SCAN HDFS 3 1s090ms 1s505ms 656.03K 1.44M 15.69 MB 384.00 MB tpcds_parquet.catalog_sales |--122:EXCHANGE 3 12.450us 16.695us 1 1 16.00 KB 0 RANDOM | 121:AGGREGATE 1 308.021us 308.021us 1 1 16.00 KB 10.00 MB FINALIZE | 120:EXCHANGE 1 54.769us 54.769us 3 1 32.00 KB 0 UNPARTITIONED | 70:AGGREGATE 3 0.000ns 0.000ns 3 1 64.00 KB 10.00 MB | 69:HASH JOIN 3 30.431ms 37.483ms 1.32K 28.95K 2.03 MB 1.94 MB INNER JOIN, BROADCAST | |--119:EXCHANGE 3 23.140ms 28.819ms 18.00K 18.00K 424.00 KB 0 BROADCAST | | 63:SCAN HDFS 1 45.596ms 45.596ms 18.00K 18.00K 577.63 KB 16.00 MB tpcds_parquet.item | 68:HASH JOIN 3 229.052ms 255.328ms 1.32K 28.95K 20.07 MB 4.75 MB INNER JOIN, PARTITIONED | |--118:EXCHANGE 3 268.106ms 286.152ms 1.92M 1.92M 4.50 MB 0 HASH(cd2.cd_demo_sk) | | 59:SCAN HDFS 1 3s271ms 3s271ms 1.92M 1.92M 9.01 MB 16.00 MB tpcds_parquet.customer_demographics cd2 | 117:EXCHANGE 3 151.178us 202.040us 1.33K 28.95K 176.00 KB 0 HASH(c_current_cdemo_sk) | 67:HASH JOIN 3 115.537ms 145.300ms 1.33K 28.95K 6.06 MB 4.75 MB INNER JOIN, PARTITIONED | |--116:EXCHANGE 3 20.259ms 41.738ms 137.20K 194.03K 1.33 MB 0 HASH(cd1.cd_demo_sk) | | 58:SCAN HDFS 1 3s444ms 3s444ms 137.20K 194.03K 9.00 MB 64.00 MB tpcds_parquet.customer_demographics cd1 | 115:EXCHANGE 3 1.734ms 1.872ms 19.82K 28.95K 1.27 MB 0 HASH(cs_bill_cdemo_sk) | 66:HASH JOIN 3 63.609ms 101.647ms 19.82K 28.95K 10.06 MB 1.94 MB INNER JOIN, BROADCAST | |--114:EXCHANGE 3 1.187ms 1.194ms 7.32K 6.86K 296.00 KB 0 BROADCAST | | 61:SCAN HDFS 1 132.544ms 132.544ms 7.32K 6.86K 1.01 MB 32.00 MB tpcds_parquet.customer_address | 65:HASH JOIN 3 41.558ms 64.884ms 136.68K 181.77K 11.07 MB 1.94 MB INNER JOIN, BROADCAST | |--113:EXCHANGE 3 13.231ms 22.833ms 47.71K 50.00K 1.82 MB 0 BROADCAST | | 60:SCAN HDFS 1 417.936ms 417.936ms 47.71K 50.00K 2.57 MB 80.00 MB tpcds_parquet.customer | 64:HASH JOIN 3 26.536ms 57.268ms 285.69K 294.63K 2.00 MB 1.94 MB INNER JOIN, BROADCAST | |--112:EXCHANGE 3 70.325us 74.104us 365 373 16.00 KB 0 BROADCAST | | 62:SCAN HDFS 1 170.169ms 170.169ms 365 373 849.29 KB 32.00 MB tpcds_parquet.date_dim | 57:SCAN HDFS 3 1s158ms 1s645ms 656.03K 1.44M 15.64 MB 384.00 MB tpcds_parquet.catalog_sales 81:AGGREGATE 3 17.038ms 33.037ms 1.32K 28.95K 8.58 MB 10.00 MB FINALIZE 80:EXCHANGE 3 168.977us 181.499us 1.32K 28.95K 208.00 KB 0 HASH(i_item_id,ca_country,ca_state,ca_county) 14:AGGREGATE 3 3.090ms 3.378ms 1.32K 28.95K 9.13 MB 10.00 MB STREAMING 13:HASH JOIN 3 19.599ms 26.549ms 1.32K 28.95K 2.03 MB 1.94 MB INNER JOIN, BROADCAST |--79:EXCHANGE 3 17.562ms 34.866ms 18.00K 18.00K 1.23 MB 0 BROADCAST | 07:SCAN HDFS 1 78.905ms 78.905ms 18.00K 18.00K 1.21 MB 32.00 MB tpcds_parquet.item 12:HASH JOIN 3 244.034ms 285.750ms 1.32K 28.95K 20.07 MB 4.75 MB INNER JOIN, PARTITIONED |--78:EXCHANGE 3 262.220ms 344.846ms 1.92M 1.92M 5.53 MB 0 HASH(cd2.cd_demo_sk) | 03:SCAN HDFS 1 3s794ms 3s794ms 1.92M 1.92M 9.01 MB 16.00 MB tpcds_parquet.customer_demographics cd2 77:EXCHANGE 3 138.360us 166.583us 1.33K 28.95K 208.00 KB 0 HASH(c_current_cdemo_sk) 11:HASH JOIN 3 42.373ms 81.396ms 1.33K 28.95K 6.06 MB 4.75 MB INNER JOIN, PARTITIONED |--76:EXCHANGE 3 14.785ms 26.583ms 137.20K 194.03K 760.00 KB 0 HASH(cd1.cd_demo_sk) | 02:SCAN HDFS 1 3s866ms 3s866ms 137.20K 194.03K 9.93 MB 64.00 MB tpcds_parquet.customer_demographics cd1 75:EXCHANGE 3 2.662ms 3.243ms 19.82K 28.95K 1.70 MB 0 HASH(cs_bill_cdemo_sk) 10:HASH JOIN 3 20.042ms 32.745ms 19.82K 28.95K 10.06 MB 1.94 MB INNER JOIN, BROADCAST |--74:EXCHANGE 3 1.537ms 2.267ms 7.32K 6.86K 976.00 KB 0 BROADCAST | 05:SCAN HDFS 1 622.645ms 622.645ms 7.32K 6.86K 1.90 MB 64.00 MB tpcds_parquet.customer_address 09:HASH JOIN 3 43.212ms 69.033ms 136.68K 181.77K 11.07 MB 1.94 MB INNER JOIN, BROADCAST |--73:EXCHANGE 3 21.934ms 33.862ms 47.71K 50.00K 1.82 MB 0 BROADCAST | 04:SCAN HDFS 1 617.025ms 617.025ms 47.71K 50.00K 2.87 MB 80.00 MB tpcds_parquet.customer 08:HASH JOIN 3 43.372ms 81.643ms 285.69K 294.63K 2.00 MB 1.94 MB INNER JOIN, BROADCAST |--72:EXCHANGE 3 75.374us 76.398us 365 373 16.00 KB 0 BROADCAST | 06:SCAN HDFS 1 228.567ms 228.567ms 365 373 849.29 KB 32.00 MB tpcds_parquet.date_dim 01:SCAN HDFS 3 1s255ms 1s685ms 656.03K 1.44M 16.08 MB 384.00 MB tpcds_parquet.catalog_sales Errors: Query Compilation: 37.367ms - Metadata of all 6 tables cached: 1.003ms (1.003ms) - Analysis finished: 6.935ms (5.931ms) - Value transfer graph computed: 7.150ms (214.962us) - Single node plan created: 24.632ms (17.482ms) - Runtime filters computed: 28.066ms (3.434ms) - Distributed plan created: 28.299ms (232.742us) - Planning finished: 37.367ms (9.067ms) Query Timeline: 8s140ms - Query submitted: 33.120us (33.120us) - Planning finished: 45.604ms (45.571ms) - Submit for admission: 48.856ms (3.252ms) - Completed admission: 48.908ms (51.578us) - Ready to start on 3 backends: 51.255ms (2.347ms) - All 3 execution backends (80 fragment instances) started: 65.564ms (14.308ms) - First dynamic filter received: 5s159ms (5s093ms) - Rows available: 7s911ms (2s752ms) - First row fetched: 7s945ms (33.288ms) - Last row fetched: 7s945ms (809.144us) - Released admission control resources: 7s946ms (365.093us) - Unregister query: 8s075ms (128.899ms) - ComputeScanRangeAssignmentTimer: 837.522us ImpalaServer: - ClientFetchWaitTimer: 115.728ms - RowMaterializationTimer: 47.610ms Execution Profile 3f4b6afbed1991fc:3c23055700000000:(Total: 7s908ms, non-child: 0.000ns, % non-child: 0.00%) Number of filters: 10 Filter routing table: ID Src. Node Tgt. Node(s) Target type Partition filter Pending (Expected) First arrived Completed Enabled ------------------------------------------------------------------------------------------------------------------- 58 64 57 LOCAL false 0 (3) N/A N/A true 54 66 60 REMOTE false 1 (3) N/A N/A true 46 50 43 LOCAL false 0 (3) N/A N/A true 42 52 46 REMOTE false 1 (3) N/A N/A true 34 36 29 LOCAL false 0 (3) N/A N/A true 30 38 32 REMOTE false 1 (3) N/A N/A true 22 22 15 LOCAL false 0 (3) N/A N/A true 18 24 18 REMOTE false 1 (3) N/A N/A true 10 8 1 LOCAL false 0 (3) N/A N/A true 6 10 4 REMOTE false 1 (3) N/A N/A true Backend startup latencies: Count: 3, min / max: 4ms / 6ms, 25th %-ile: 4ms, 50th %-ile: 5ms, 75th %-ile: 5ms, 90th %-ile: 6ms, 95th %-ile: 6ms, 99.9th %-ile: 6ms Final filter table: ID Src. Node Tgt. Node(s) Target type Partition filter Pending (Expected) First arrived Completed Enabled ------------------------------------------------------------------------------------------------------------------- 58 64 57 LOCAL false 0 (3) N/A N/A true 54 66 60 REMOTE false 0 (3) 5s476ms 5s476ms false 46 50 43 LOCAL false 0 (3) N/A N/A true 42 52 46 REMOTE false 0 (3) 5s556ms 5s556ms false 34 36 29 LOCAL false 0 (3) N/A N/A true 30 38 32 REMOTE false 0 (3) 5s308ms 5s308ms false 22 22 15 LOCAL false 0 (3) N/A N/A true 18 24 18 REMOTE false 0 (3) 5s437ms 5s437ms false 10 8 1 LOCAL false 0 (3) N/A N/A true 6 10 4 REMOTE false 0 (3) 5s159ms 5s159ms false Per Node Peak Memory Usage: XXX:22000(207.68 MB) XXX:22001(309.33 MB) XXX:22002(272.32 MB) - FiltersReceived: 5 (5) - FinalizationTimer: 0.000ns - NumBackends: 3 (3) - NumFragmentInstances: 80 (80) - NumFragments: 48 (48) Averaged Fragment F51:(Total: 7s884ms, non-child: 35.944ms, % non-child: 0.46%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s886ms max:7s886ms mean: 7s886ms 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 - BloomFilterBytes: 0 - PeakMemoryUsage: 345.00 KB (353280) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 100 (100) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 30 (30) - TotalThreadsTotalWallClockTime: 7s883ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 76.000ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 33.784ms - ExecTreeExecTime: 190.665us - OpenTime: 7s849ms - ExecTreeOpenTime: 7s708ms - PrepareTime: 1.557ms - ExecTreePrepareTime: 128.863us PLAN_ROOT_SINK: - PeakMemoryUsage: 0 EXCHANGE_NODE (id=123):(Total: 7s708ms, non-child: 7s708ms, % non-child: 100.00%) - ConvertRowBatchTime: 0.000ns - MergeGetNext: 186.594us - MergeGetNextBatch: 10.356us - PeakMemoryUsage: 120.00 KB (122880) - RowsReturned: 100 (100) - RowsReturnedRate: 12.00 /sec Buffer pool: - AllocTime: 13.137us - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 6 (6) - PeakReservation: 120.00 KB (122880) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 120.00 KB (122880) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 7s708ms - TotalBytesReceived: 50.54 KB (51750) - TotalGetBatchTime: 7s708ms - DataArrivalTimer: 7s708ms SenderSide: - DeserializeRowBatchTime: 126.001us - NumBatchesArrived: 3 (3) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 3 (3) - NumBatchesReceived: 3 (3) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 140.238ms, non-child: 140.238ms, % non-child: 100.00%) - CodegenTime: 1.689ms - CompileTime: 43.808ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 32 (32) - NumInstructions: 674 (674) - OptimizationTime: 71.226ms - PeakMemoryUsage: 337.00 KB (345088) - PrepareTime: 17.698ms Coordinator Fragment F51: Instance 3f4b6afbed1991fc:3c23055700000000 (host=XXX:22000):(Total: 7s884ms, non-child: 35.944ms, % non-child: 0.46%) Fragment Instance Lifecycle Event Timeline: 7s884ms - Prepare Finished: 1.708ms (1.708ms) - Open Finished: 7s851ms (7s849ms) - First Batch Produced: 7s851ms (193.503us) - First Batch Sent: 7s884ms (33.577ms) - ExecInternal Finished: 7s884ms (8.856us) MemoryUsage(500.000ms): 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB, 9.96 KB - AverageThreadTokens: 0.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 345.00 KB (353280) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 100 (100) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 0.000ns - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 30 (30) - TotalThreadsTotalWallClockTime: 7s883ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 76.000ms - TotalThreadsVoluntaryContextSwitches: 11 (11) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 33.784ms - ExecTreeExecTime: 190.665us - OpenTime: 7s849ms - ExecTreeOpenTime: 7s708ms - PrepareTime: 1.557ms - ExecTreePrepareTime: 128.863us PLAN_ROOT_SINK: - PeakMemoryUsage: 0 EXCHANGE_NODE (id=123):(Total: 7s708ms, non-child: 227.545us, % non-child: 0.00%) ExecOption: Codegen Enabled - ConvertRowBatchTime: 0.000ns - MergeGetNext: 186.594us - MergeGetNextBatch: 10.356us - PeakMemoryUsage: 120.00 KB (122880) - RowsReturned: 100 (100) - RowsReturnedRate: 12.00 /sec Buffer pool: - AllocTime: 13.137us - CumulativeAllocationBytes: 120.00 KB (122880) - CumulativeAllocations: 6 (6) - PeakReservation: 120.00 KB (122880) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 120.00 KB (122880) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 7s708ms - TotalBytesReceived: 50.54 KB (51750) - TotalGetBatchTime: 7s708ms - DataArrivalTimer: 7s708ms SenderSide: - DeserializeRowBatchTime: 126.001us - NumBatchesArrived: 3 (3) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 3 (3) - NumBatchesReceived: 3 (3) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 140.238ms, non-child: 140.238ms, % non-child: 100.00%) - CodegenTime: 1.689ms - CompileTime: 43.808ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 32 (32) - NumInstructions: 674 (674) - OptimizationTime: 71.226ms - PeakMemoryUsage: 337.00 KB (345088) - PrepareTime: 17.698ms Averaged Fragment F50:(Total: 7s843ms, non-child: 241.088ms, % non-child: 3.07%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s847ms max:7s853ms mean: 7s850ms stddev:2.481ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.21 MB (9652856) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 100 (100) - TotalNetworkReceiveTime: 1s242ms - TotalNetworkSendTime: 487.566us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 652 (652) - TotalThreadsTotalWallClockTime: 7s819ms - TotalThreadsSysTime: 1.333ms - TotalThreadsUserTime: 1s164ms - TotalThreadsVoluntaryContextSwitches: 85 (85) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 702.453us - ExecTreeExecTime: 18.767us - OpenTime: 7s818ms - ExecTreeOpenTime: 1s284ms - PrepareTime: 23.875ms - ExecTreePrepareTime: 9.238ms KrpcDataStreamSender (dst_id=123):(Total: 653.188us, non-child: 653.188us, % non-child: 100.00%) - BytesSent: 6.58 KB (6735) - EosSent: 1 (1) - OverallThroughput: 28.63 MB/sec - PeakMemoryUsage: 1.05 KB (1072) - RowsReturned: 100 (100) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 127.164us - UncompressedRowBatchSize: 16.85 KB (17250) SORT_NODE (id=71):(Total: 1s293ms, non-child: 834.049us, % non-child: 0.06%) - InsertBatchTime: 568.659us - PeakMemoryUsage: 452.67 KB (463530) - RowsReturned: 100 (100) - RowsReturnedRate: 78.00 /sec - TuplePoolReclamations: 0 (0) UNION_NODE (id=0):(Total: 1s292ms, non-child: 1.179ms, % non-child: 0.09%) - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1.67K (1674) - RowsReturnedRate: 1.32 K/sec AGGREGATION_NODE (id=91):(Total: 16.531ms, non-child: 16.396ms, % non-child: 99.19%) - BuildTime: 1.044ms - GetResultsTime: 8.231ms - HTResizeTime: 1.263us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 4.82 MB (5049472) - RowsRepartitioned: 0 (0) - RowsReturned: 436 (436) - RowsReturnedRate: 33.34 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=90):(Total: 134.474us, non-child: 134.474us, % non-child: 100.00%) - ConvertRowBatchTime: 75.634us - PeakMemoryUsage: 240.00 KB (245760) - RowsReturned: 438 (438) - RowsReturnedRate: 3.26 M/sec Buffer pool: - AllocTime: 37.880us - CumulativeAllocationBytes: 240.00 KB (245760) - CumulativeAllocations: 14 (14) - PeakReservation: 240.00 KB (245760) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 240.00 KB (245760) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 110.07 KB (112707) - TotalGetBatchTime: 26.298us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 333.620us - NumBatchesArrived: 7 (7) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 7 (7) - NumBatchesReceived: 7 (7) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 24.017us - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - PeakReservation: 4.75 MB (4980736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=101):(Total: 120.713ms, non-child: 7.815ms, % non-child: 6.47%) - BuildTime: 934.375us - GetResultsTime: 4.245ms - HTResizeTime: 2.644us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.99 MB (2082944) - RowsRepartitioned: 0 (0) - RowsReturned: 399 (399) - RowsReturnedRate: 3.32 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=100):(Total: 112.897ms, non-child: 112.897ms, % non-child: 100.00%) - ConvertRowBatchTime: 69.267us - PeakMemoryUsage: 160.00 KB (163840) - RowsReturned: 421 (421) - RowsReturnedRate: 3.74 K/sec Buffer pool: - AllocTime: 37.231us - CumulativeAllocationBytes: 202.67 KB (207530) - CumulativeAllocations: 12 (12) - PeakReservation: 160.00 KB (163840) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 160.00 KB (163840) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 64.009ms - TotalBytesReceived: 98.23 KB (100588) - TotalGetBatchTime: 112.773ms - DataArrivalTimer: 112.732ms SenderSide: - DeserializeRowBatchTime: 261.039us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 28.534us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=111):(Total: 7.688ms, non-child: 7.587ms, % non-child: 98.68%) - BuildTime: 788.577us - GetResultsTime: 4.245ms - HTResizeTime: 959.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2065536) - RowsRepartitioned: 0 (0) - RowsReturned: 399 (399) - RowsReturnedRate: 53.59 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=110):(Total: 101.784us, non-child: 101.784us, % non-child: 100.00%) - ConvertRowBatchTime: 56.804us - PeakMemoryUsage: 186.67 KB (191146) - RowsReturned: 421 (421) - RowsReturnedRate: 4.40 M/sec Buffer pool: - AllocTime: 32.337us - CumulativeAllocationBytes: 186.67 KB (191146) - CumulativeAllocations: 12 (12) - PeakReservation: 186.67 KB (191146) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 186.67 KB (191146) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 85.93 KB (87989) - TotalGetBatchTime: 21.294us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 231.593us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 28.224us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=122):(Total: 12.450us, non-child: 12.450us, % non-child: 100.00%) - ConvertRowBatchTime: 964.000ns - PeakMemoryUsage: 5.33 KB (5461) - RowsReturned: 0 (0) - RowsReturnedRate: 19.97 K/sec Buffer pool: - AllocTime: 1.067us - CumulativeAllocationBytes: 5.33 KB (5461) - CumulativeAllocations: 0 (0) - PeakReservation: 5.33 KB (5461) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 5.33 KB (5461) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 21.00 B (21) - TotalGetBatchTime: 5.490us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.945us - NumBatchesArrived: 0 (0) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 0 (0) - NumBatchesReceived: 0 (0) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) AGGREGATION_NODE (id=81):(Total: 1s146ms, non-child: 17.038ms, % non-child: 1.49%) - BuildTime: 1.178ms - GetResultsTime: 5.082ms - HTResizeTime: 2.671us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.58 MB (8999040) - RowsRepartitioned: 0 (0) - RowsReturned: 439 (439) - RowsReturnedRate: 392.00 /sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=80):(Total: 1s129ms, non-child: 1s129ms, % non-child: 100.00%) - ConvertRowBatchTime: 73.991us - PeakMemoryUsage: 205.33 KB (210261) - RowsReturned: 439 (439) - RowsReturnedRate: 398.00 /sec Buffer pool: - AllocTime: 35.811us - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 14 (14) - PeakReservation: 205.33 KB (210261) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 205.33 KB (210261) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 1s117ms - TotalBytesReceived: 123.19 KB (126149) - TotalGetBatchTime: 1s129ms - DataArrivalTimer: 1s129ms SenderSide: - DeserializeRowBatchTime: 349.911us - NumBatchesArrived: 7 (7) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 7 (7) - NumBatchesReceived: 7 (7) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 18.662us - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 6s307ms, non-child: 6s307ms, % non-child: 100.00%) - CodegenTime: 326.612ms - CompileTime: 196.364ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 299 (299) - NumInstructions: 9.80K (9798) - OptimizationTime: 5s875ms - PeakMemoryUsage: 4.78 MB (5016576) - PrepareTime: 234.777ms Fragment F50: Instance 3f4b6afbed1991fc:3c2305570000004e (host=XXX:22000):(Total: 7s850ms, non-child: 202.569ms, % non-child: 2.58%) Fragment Instance Lifecycle Event Timeline: 7s850ms - Prepare Finished: 47.499ms (47.499ms) - Open Finished: 7s849ms (7s802ms) - First Batch Produced: 7s849ms (22.839us) - First Batch Sent: 7s850ms (227.301us) - ExecInternal Finished: 7s850ms (606.048us) MemoryUsage(500.000ms): 211.55 KB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 269.28 KB, 269.28 KB, 2.64 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.21 MB (9655587) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 100 (100) - TotalNetworkReceiveTime: 1s253ms - TotalNetworkSendTime: 567.405us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 964 (964) - TotalThreadsTotalWallClockTime: 7s803ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s204ms - TotalThreadsVoluntaryContextSwitches: 40 (40) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 860.793us - ExecTreeExecTime: 20.260us - OpenTime: 7s802ms - ExecTreeOpenTime: 1s304ms - PrepareTime: 47.297ms - ExecTreePrepareTime: 24.204ms KrpcDataStreamSender (dst_id=123):(Total: 1.645ms, non-child: 1.645ms, % non-child: 100.00%) - BytesSent: 6.62 KB (6781) - EosSent: 1 (1) - OverallThroughput: 3.93 MB/sec - PeakMemoryUsage: 1.05 KB (1072) - RowsReturned: 100 (100) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 186.593us - UncompressedRowBatchSize: 16.79 KB (17193) SORT_NODE (id=71):(Total: 1s329ms, non-child: 1.002ms, % non-child: 0.08%) SortType: TopN ExecOption: Codegen Enabled - InsertBatchTime: 668.705us - PeakMemoryUsage: 434.00 KB (444416) - RowsReturned: 100 (100) - RowsReturnedRate: 75.00 /sec - TuplePoolReclamations: 0 (0) UNION_NODE (id=0):(Total: 1s328ms, non-child: 1.118ms, % non-child: 0.08%) ExecOption: Codegen Enabled - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1.64K (1637) - RowsReturnedRate: 1.23 K/sec AGGREGATION_NODE (id=91):(Total: 23.383ms, non-child: 23.254ms, % non-child: 99.45%) ExecOption: Codegen Enabled - BuildTime: 1.102ms - GetResultsTime: 5.660ms - HTResizeTime: 1.153us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 9 (9) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 4.82 MB (5049472) - RowsRepartitioned: 0 (0) - RowsReturned: 431 (431) - RowsReturnedRate: 18.43 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=90):(Total: 129.145us, non-child: 129.145us, % non-child: 100.00%) - ConvertRowBatchTime: 72.672us - PeakMemoryUsage: 240.00 KB (245760) - RowsReturned: 434 (434) - RowsReturnedRate: 3.36 M/sec Buffer pool: - AllocTime: 39.367us - CumulativeAllocationBytes: 240.00 KB (245760) - CumulativeAllocations: 14 (14) - PeakReservation: 240.00 KB (245760) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 240.00 KB (245760) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 108.87 KB (111486) - TotalGetBatchTime: 26.039us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 333.334us - NumBatchesArrived: 7 (7) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 7 (7) - NumBatchesReceived: 7 (7) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 21.817us - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - PeakReservation: 4.75 MB (4980736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=101):(Total: 112.367ms, non-child: 8.712ms, % non-child: 7.75%) ExecOption: Codegen Enabled - BuildTime: 1.048ms - GetResultsTime: 4.751ms - HTResizeTime: 2.664us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.99 MB (2082944) - RowsRepartitioned: 0 (0) - RowsReturned: 393 (393) - RowsReturnedRate: 3.50 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=100):(Total: 103.654ms, non-child: 170.559us, % non-child: 0.16%) - ConvertRowBatchTime: 79.759us - PeakMemoryUsage: 152.00 KB (155648) - RowsReturned: 416 (416) - RowsReturnedRate: 4.01 K/sec Buffer pool: - AllocTime: 37.583us - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 12 (12) - PeakReservation: 152.00 KB (155648) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 152.00 KB (155648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 54.386ms - TotalBytesReceived: 97.07 KB (99398) - TotalGetBatchTime: 103.530ms - DataArrivalTimer: 103.486ms SenderSide: - DeserializeRowBatchTime: 261.343us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 35.211us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=111):(Total: 8.215ms, non-child: 8.103ms, % non-child: 98.63%) ExecOption: Codegen Enabled - BuildTime: 883.791us - GetResultsTime: 4.805ms - HTResizeTime: 1.081us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2065536) - RowsRepartitioned: 0 (0) - RowsReturned: 382 (382) - RowsReturnedRate: 46.50 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=110):(Total: 112.168us, non-child: 112.168us, % non-child: 100.00%) - ConvertRowBatchTime: 62.222us - PeakMemoryUsage: 184.00 KB (188416) - RowsReturned: 403 (403) - RowsReturnedRate: 3.59 M/sec Buffer pool: - AllocTime: 42.122us - CumulativeAllocationBytes: 184.00 KB (188416) - CumulativeAllocations: 12 (12) - PeakReservation: 184.00 KB (188416) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 184.00 KB (188416) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82.25 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 82.25 KB (84227) - TotalGetBatchTime: 23.304us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 232.065us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 32.299us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=122):(Total: 6.413us, non-child: 6.413us, % non-child: 100.00%) - ConvertRowBatchTime: 998.000ns - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 0 - TotalGetBatchTime: 2.017us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 0.000ns - NumBatchesArrived: 0 (0) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 0 (0) - NumBatchesReceived: 0 (0) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) AGGREGATION_NODE (id=81):(Total: 1s182ms, non-child: 33.037ms, % non-child: 2.79%) ExecOption: Codegen Enabled - BuildTime: 1.245ms - GetResultsTime: 4.754ms - HTResizeTime: 2.702us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.58 MB (8999040) - RowsRepartitioned: 0 (0) - RowsReturned: 431 (431) - RowsReturnedRate: 364.00 /sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=80):(Total: 1s149ms, non-child: 163.891us, % non-child: 0.01%) - ConvertRowBatchTime: 71.889us - PeakMemoryUsage: 208.00 KB (212992) - RowsReturned: 432 (432) - RowsReturnedRate: 375.00 /sec Buffer pool: - AllocTime: 33.297us - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 14 (14) - PeakReservation: 208.00 KB (212992) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 208.00 KB (212992) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 1s135ms - TotalBytesReceived: 121.15 KB (124055) - TotalGetBatchTime: 1s149ms - DataArrivalTimer: 1s149ms SenderSide: - DeserializeRowBatchTime: 337.633us - NumBatchesArrived: 7 (7) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 7 (7) - NumBatchesReceived: 7 (7) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 17.852us - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 6s317ms, non-child: 6s317ms, % non-child: 100.00%) - CodegenTime: 233.873ms - CompileTime: 202.219ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 299 (299) - NumInstructions: 9.80K (9798) - OptimizationTime: 5s965ms - PeakMemoryUsage: 4.78 MB (5016576) - PrepareTime: 148.459ms Instance 3f4b6afbed1991fc:3c2305570000004f (host=XXX:22002):(Total: 7s844ms, non-child: 210.344ms, % non-child: 2.68%) Fragment Instance Lifecycle Event Timeline: 7s844ms - Prepare Finished: 15.738ms (15.738ms) - Open Finished: 7s844ms (7s828ms) - First Batch Produced: 7s844ms (15.161us) - First Batch Sent: 7s844ms (119.833us) - ExecInternal Finished: 7s844ms (500.072us) MemoryUsage(500.000ms): 211.55 KB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 211.55 KB, 269.28 KB, 269.28 KB, 2.44 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.22 MB (9671971) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 100 (100) - TotalNetworkReceiveTime: 1s413ms - TotalNetworkSendTime: 486.453us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 445 (445) - TotalThreadsTotalWallClockTime: 7s829ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s120ms - TotalThreadsVoluntaryContextSwitches: 60 (60) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 638.087us - ExecTreeExecTime: 13.171us - OpenTime: 7s828ms - ExecTreeOpenTime: 1s453ms - PrepareTime: 15.608ms - ExecTreePrepareTime: 2.135ms KrpcDataStreamSender (dst_id=123):(Total: 146.901us, non-child: 146.901us, % non-child: 100.00%) - BytesSent: 6.62 KB (6778) - EosSent: 1 (1) - OverallThroughput: 44.00 MB/sec - PeakMemoryUsage: 1.05 KB (1072) - RowsReturned: 100 (100) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 84.497us - UncompressedRowBatchSize: 16.92 KB (17323) SORT_NODE (id=71):(Total: 1s455ms, non-child: 711.447us, % non-child: 0.05%) SortType: TopN ExecOption: Codegen Enabled - InsertBatchTime: 509.646us - PeakMemoryUsage: 462.00 KB (473088) - RowsReturned: 100 (100) - RowsReturnedRate: 68.00 /sec - TuplePoolReclamations: 1 (1) UNION_NODE (id=0):(Total: 1s454ms, non-child: 958.072us, % non-child: 0.07%) ExecOption: Codegen Enabled - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1.65K (1647) - RowsReturnedRate: 1.13 K/sec AGGREGATION_NODE (id=91):(Total: 18.665ms, non-child: 18.528ms, % non-child: 99.26%) ExecOption: Codegen Enabled - BuildTime: 1.204ms - GetResultsTime: 14.746ms - HTResizeTime: 1.449us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 10 (10) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 4.82 MB (5049472) - RowsRepartitioned: 0 (0) - RowsReturned: 439 (439) - RowsReturnedRate: 23.52 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=90):(Total: 137.968us, non-child: 137.968us, % non-child: 100.00%) - ConvertRowBatchTime: 75.332us - PeakMemoryUsage: 256.00 KB (262144) - RowsReturned: 443 (443) - RowsReturnedRate: 3.21 M/sec Buffer pool: - AllocTime: 39.301us - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 16 (16) - PeakReservation: 256.00 KB (262144) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 256.00 KB (262144) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 111.14 KB (113812) - TotalGetBatchTime: 27.778us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 343.897us - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 24.265us - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - PeakReservation: 4.75 MB (4980736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=101):(Total: 113.327ms, non-child: 5.592ms, % non-child: 4.93%) ExecOption: Codegen Enabled - BuildTime: 616.446us - GetResultsTime: 2.612ms - HTResizeTime: 2.456us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.99 MB (2082944) - RowsRepartitioned: 0 (0) - RowsReturned: 377 (377) - RowsReturnedRate: 3.33 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=100):(Total: 107.735ms, non-child: 166.037us, % non-child: 0.15%) - ConvertRowBatchTime: 63.001us - PeakMemoryUsage: 152.00 KB (155648) - RowsReturned: 398 (398) - RowsReturnedRate: 3.69 K/sec Buffer pool: - AllocTime: 36.397us - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 12 (12) - PeakReservation: 152.00 KB (155648) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 152.00 KB (155648) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 59.514ms - TotalBytesReceived: 92.88 KB (95109) - TotalGetBatchTime: 107.610ms - DataArrivalTimer: 107.571ms SenderSide: - DeserializeRowBatchTime: 236.251us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 26.324us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=111):(Total: 5.962ms, non-child: 5.892ms, % non-child: 98.82%) ExecOption: Codegen Enabled - BuildTime: 490.309us - GetResultsTime: 2.800ms - HTResizeTime: 716.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2065536) - RowsRepartitioned: 0 (0) - RowsReturned: 407 (407) - RowsReturnedRate: 68.26 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=110):(Total: 70.187us, non-child: 70.187us, % non-child: 100.00%) - ConvertRowBatchTime: 38.562us - PeakMemoryUsage: 184.00 KB (188416) - RowsReturned: 429 (429) - RowsReturnedRate: 6.11 M/sec Buffer pool: - AllocTime: 27.662us - CumulativeAllocationBytes: 184.00 KB (188416) - CumulativeAllocations: 12 (12) - PeakReservation: 184.00 KB (188416) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 184.00 KB (188416) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 87.56 KB (89661) - TotalGetBatchTime: 14.347us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 241.987us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 18.896us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=122):(Total: 16.695us, non-child: 16.695us, % non-child: 100.00%) - ConvertRowBatchTime: 900.000ns - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 1 (1) - RowsReturnedRate: 59.90 K/sec Buffer pool: - AllocTime: 3.201us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65.00 B - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 65.00 B (65) - TotalGetBatchTime: 13.193us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 11.836us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) AGGREGATION_NODE (id=81):(Total: 1s315ms, non-child: 10.405ms, % non-child: 0.79%) ExecOption: Codegen Enabled - BuildTime: 1.253ms - GetResultsTime: 6.322ms - HTResizeTime: 2.630us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.58 MB (8999040) - RowsRepartitioned: 0 (0) - RowsReturned: 423 (423) - RowsReturnedRate: 321.00 /sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=80):(Total: 1s305ms, non-child: 161.543us, % non-child: 0.01%) - ConvertRowBatchTime: 72.553us - PeakMemoryUsage: 208.00 KB (212992) - RowsReturned: 423 (423) - RowsReturnedRate: 324.00 /sec Buffer pool: - AllocTime: 32.543us - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 14 (14) - PeakReservation: 208.00 KB (212992) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 208.00 KB (212992) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 1s290ms - TotalBytesReceived: 118.59 KB (121440) - TotalGetBatchTime: 1s305ms - DataArrivalTimer: 1s305ms SenderSide: - DeserializeRowBatchTime: 336.255us - NumBatchesArrived: 7 (7) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 7 (7) - NumBatchesReceived: 7 (7) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 22.926us - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 6s178ms, non-child: 6s178ms, % non-child: 100.00%) - CodegenTime: 219.994ms - CompileTime: 212.922ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 299 (299) - NumInstructions: 9.80K (9798) - OptimizationTime: 5s713ms - PeakMemoryUsage: 4.78 MB (5016576) - PrepareTime: 251.873ms Instance 3f4b6afbed1991fc:3c2305570000004d (host=XXX:22001):(Total: 7s834ms, non-child: 310.350ms, % non-child: 3.96%) Fragment Instance Lifecycle Event Timeline: 7s835ms - Prepare Finished: 10.329ms (10.329ms) - Open Finished: 7s835ms (7s824ms) - First Batch Produced: 7s835ms (24.541us) - First Batch Sent: 7s835ms (135.667us) - ExecInternal Finished: 7s835ms (435.041us) MemoryUsage(500.000ms): 211.55 KB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 4.99 MB, 269.28 KB, 269.28 KB, 2.66 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.18 MB (9631011) - PeakReservation: 8.50 MB (8912896) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 100 (100) - TotalNetworkReceiveTime: 1s061ms - TotalNetworkSendTime: 408.842us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 547 (547) - TotalThreadsTotalWallClockTime: 7s825ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 1s168ms - TotalThreadsVoluntaryContextSwitches: 156 (156) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 608.479us - ExecTreeExecTime: 22.871us - OpenTime: 7s824ms - ExecTreeOpenTime: 1s095ms - PrepareTime: 8.720ms - ExecTreePrepareTime: 1.376ms KrpcDataStreamSender (dst_id=123):(Total: 167.054us, non-child: 167.054us, % non-child: 100.00%) - BytesSent: 6.49 KB (6648) - EosSent: 1 (1) - OverallThroughput: 37.95 MB/sec - PeakMemoryUsage: 1.05 KB (1072) - RowsReturned: 100 (100) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 110.404us - UncompressedRowBatchSize: 16.83 KB (17234) SORT_NODE (id=71):(Total: 1s096ms, non-child: 788.331us, % non-child: 0.07%) SortType: TopN ExecOption: Codegen Enabled - InsertBatchTime: 527.626us - PeakMemoryUsage: 462.00 KB (473088) - RowsReturned: 100 (100) - RowsReturnedRate: 91.00 /sec - TuplePoolReclamations: 1 (1) UNION_NODE (id=0):(Total: 1s096ms, non-child: 1.461ms, % non-child: 0.13%) ExecOption: Codegen Enabled - PeakMemoryUsage: 20.00 KB (20480) - RowsReturned: 1.74K (1738) - RowsReturnedRate: 1.58 K/sec AGGREGATION_NODE (id=91):(Total: 7.544ms, non-child: 7.407ms, % non-child: 98.19%) ExecOption: Codegen Enabled - BuildTime: 825.540us - GetResultsTime: 4.288ms - HTResizeTime: 1.188us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 4.82 MB (5049472) - RowsRepartitioned: 0 (0) - RowsReturned: 438 (438) - RowsReturnedRate: 58.06 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=90):(Total: 136.310us, non-child: 136.310us, % non-child: 100.00%) - ConvertRowBatchTime: 78.898us - PeakMemoryUsage: 224.00 KB (229376) - RowsReturned: 439 (439) - RowsReturnedRate: 3.22 M/sec Buffer pool: - AllocTime: 34.973us - CumulativeAllocationBytes: 224.00 KB (229376) - CumulativeAllocations: 14 (14) - PeakReservation: 224.00 KB (229376) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 224.00 KB (229376) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 110.18 KB (112823) - TotalGetBatchTime: 25.079us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 323.629us - NumBatchesArrived: 7 (7) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 7 (7) - NumBatchesReceived: 7 (7) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 25.971us - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - PeakReservation: 4.75 MB (4980736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=101):(Total: 136.443ms, non-child: 9.141ms, % non-child: 6.70%) ExecOption: Codegen Enabled - BuildTime: 1.137ms - GetResultsTime: 5.373ms - HTResizeTime: 2.812us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.99 MB (2082944) - RowsRepartitioned: 0 (0) - RowsReturned: 428 (428) - RowsReturnedRate: 3.14 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=100):(Total: 127.302ms, non-child: 167.491us, % non-child: 0.13%) - ConvertRowBatchTime: 65.043us - PeakMemoryUsage: 176.00 KB (180224) - RowsReturned: 449 (449) - RowsReturnedRate: 3.53 K/sec Buffer pool: - AllocTime: 37.715us - CumulativeAllocationBytes: 224.00 KB (229376) - CumulativeAllocations: 14 (14) - PeakReservation: 176.00 KB (180224) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 176.00 KB (180224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 78.126ms - TotalBytesReceived: 104.75 KB (107259) - TotalGetBatchTime: 127.179ms - DataArrivalTimer: 127.137ms SenderSide: - DeserializeRowBatchTime: 285.523us - NumBatchesArrived: 7 (7) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 7 (7) - NumBatchesReceived: 7 (7) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 24.069us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns AGGREGATION_NODE (id=111):(Total: 8.888ms, non-child: 8.765ms, % non-child: 98.62%) ExecOption: Codegen Enabled - BuildTime: 991.632us - GetResultsTime: 5.129ms - HTResizeTime: 1.080us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 1.97 MB (2065536) - RowsRepartitioned: 0 (0) - RowsReturned: 409 (409) - RowsReturnedRate: 46.01 K/sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=110):(Total: 122.997us, non-child: 122.997us, % non-child: 100.00%) - ConvertRowBatchTime: 69.630us - PeakMemoryUsage: 192.00 KB (196608) - RowsReturned: 431 (431) - RowsReturnedRate: 3.50 M/sec Buffer pool: - AllocTime: 27.228us - CumulativeAllocationBytes: 192.00 KB (196608) - CumulativeAllocations: 12 (12) - PeakReservation: 192.00 KB (196608) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 192.00 KB (196608) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87.97 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 87.97 KB (90079) - TotalGetBatchTime: 26.231us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 220.728us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 33.478us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns EXCHANGE_NODE (id=122):(Total: 14.244us, non-child: 14.244us, % non-child: 100.00%) - ConvertRowBatchTime: 995.000ns - PeakMemoryUsage: 0 - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 0 - TotalGetBatchTime: 1.260us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 0.000ns - NumBatchesArrived: 0 (0) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 0 (0) - NumBatchesReceived: 0 (0) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) AGGREGATION_NODE (id=81):(Total: 941.720ms, non-child: 7.671ms, % non-child: 0.81%) ExecOption: Codegen Enabled - BuildTime: 1.035ms - GetResultsTime: 4.171ms - HTResizeTime: 2.682us - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 8.58 MB (8999040) - RowsRepartitioned: 0 (0) - RowsReturned: 463 (463) - RowsReturnedRate: 491.00 /sec - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=80):(Total: 934.049ms, non-child: 181.499us, % non-child: 0.02%) - ConvertRowBatchTime: 77.532us - PeakMemoryUsage: 200.00 KB (204800) - RowsReturned: 463 (463) - RowsReturnedRate: 495.00 /sec Buffer pool: - AllocTime: 41.594us - CumulativeAllocationBytes: 256.00 KB (262144) - CumulativeAllocations: 16 (16) - PeakReservation: 200.00 KB (204800) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 200.00 KB (204800) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 925.478ms - TotalBytesReceived: 129.84 KB (132953) - TotalGetBatchTime: 933.922ms - DataArrivalTimer: 933.872ms SenderSide: - DeserializeRowBatchTime: 375.847us - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 15.208us - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - PeakReservation: 8.50 MB (8912896) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 6s426ms, non-child: 6s426ms, % non-child: 100.00%) - CodegenTime: 525.968ms - CompileTime: 173.951ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 299 (299) - NumInstructions: 9.80K (9798) - OptimizationTime: 5s948ms - PeakMemoryUsage: 4.78 MB (5016576) - PrepareTime: 303.998ms Averaged Fragment F07:(Total: 7s683ms, non-child: 205.702ms, % non-child: 2.68%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s683ms max:7s700ms mean: 7s690ms stddev:7.194ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.02 - BloomFilterBytes: 0 - PeakMemoryUsage: 31.44 MB (32967625) - PeakReservation: 30.94 MB (32440320) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 439 (439) - TotalNetworkReceiveTime: 1s783ms - TotalNetworkSendTime: 3.769ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 506 (506) - TotalThreadsTotalWallClockTime: 7s718ms - TotalThreadsSysTime: 5.333ms - TotalThreadsUserTime: 1s108ms - TotalThreadsVoluntaryContextSwitches: 144 (144) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 8.710ms - ExecTreeExecTime: 2.878ms - OpenTime: 7s672ms - ExecTreeOpenTime: 2s306ms - PrepareTime: 2.102ms - ExecTreePrepareTime: 1.208ms KrpcDataStreamSender (dst_id=80):(Total: 761.471us, non-child: 761.471us, % non-child: 100.00%) - BytesSent: 40.95 KB (41930) - EosSent: 3 (3) - OverallThroughput: 52.90 MB/sec - PeakMemoryUsage: 85.64 KB (87696) - RowsReturned: 439 (439) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 649.665us - UncompressedRowBatchSize: 123.19 KB (126149) AGGREGATION_NODE (id=14):(Total: 2s310ms, non-child: 3.090ms, % non-child: 0.13%) - GetResultsTime: 250.848us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 9.13 MB (9572480) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 439 (439) - RowsReturnedRate: 196.00 /sec - StreamingTime: 1.363ms Buffer pool: - AllocTime: 19.323us - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - PeakReservation: 9.00 MB (9437184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=13):(Total: 2s307ms, non-child: 19.599ms, % non-child: 0.85%) - BuildRows: 18.00K (18000) - BuildTime: 19.757ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 439 (439) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 178.555us - RowsReturned: 439 (439) - RowsReturnedRate: 196.00 /sec Buffer pool: - AllocTime: 62.581us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=13): - BuildRowsPartitionTime: 3.095ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 13.904ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=79):(Total: 17.562ms, non-child: 17.562ms, % non-child: 100.00%) - ConvertRowBatchTime: 17.408ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 2.65 M/sec Buffer pool: - AllocTime: 100.038us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 79.995us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.425ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=12):(Total: 2s288ms, non-child: 244.034ms, % non-child: 10.67%) - BuildRows: 640.27K (640266) - BuildTime: 240.875ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 443 (443) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 62.691us - RowsReturned: 439 (439) - RowsReturnedRate: 198.00 /sec Buffer pool: - AllocTime: 223.178us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=12): - BuildRowsPartitionTime: 128.172ms - BuildRowsPartitioned: 640.27K (640266) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 111.947ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=78):(Total: 2s043ms, non-child: 2s043ms, % non-child: 100.00%) - ConvertRowBatchTime: 259.608ms - PeakMemoryUsage: 4.88 MB (5111808) - RowsReturned: 640.27K (640266) - RowsReturnedRate: 334.11 K/sec Buffer pool: - AllocTime: 2.563ms - CumulativeAllocationBytes: 9.17 MB (9614677) - CumulativeAllocations: 392 (392) - PeakReservation: 4.88 MB (5111808) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.88 MB (5111808) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.94 MB (8323466) - TotalGetBatchTime: 1s783ms - DataArrivalTimer: 1s781ms SenderSide: - DeserializeRowBatchTime: 18.983ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=77):(Total: 138.360us, non-child: 138.360us, % non-child: 100.00%) - ConvertRowBatchTime: 68.228us - PeakMemoryUsage: 189.33 KB (193877) - RowsReturned: 443 (443) - RowsReturnedRate: 3.34 M/sec Buffer pool: - AllocTime: 29.025us - CumulativeAllocationBytes: 189.33 KB (193877) - CumulativeAllocations: 12 (12) - PeakReservation: 189.33 KB (193877) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 189.33 KB (193877) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 105.26 KB (107786) - TotalGetBatchTime: 20.515us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 456.662us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 5s166ms, non-child: 5s166ms, % non-child: 100.00%) - CodegenTime: 265.567ms - CompileTime: 334.441ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 181 (181) - NumInstructions: 10.85K (10849) - OptimizationTime: 4s712ms - PeakMemoryUsage: 5.30 MB (5554688) - PrepareTime: 119.041ms Fragment F07: Instance 3f4b6afbed1991fc:3c2305570000000e (host=XXX:22000):(Total: 7s697ms, non-child: 98.157ms, % non-child: 1.28%) Fragment Instance Lifecycle Event Timeline: 7s697ms - Prepare Finished: 1.814ms (1.814ms) - Open Finished: 7s684ms (7s682ms) - First Batch Produced: 7s686ms (1.900ms) - First Batch Sent: 7s686ms (2.186us) - ExecInternal Finished: 7s697ms (10.866ms) MemoryUsage(500.000ms): 5.57 MB, 7.37 MB, 7.98 MB, 8.31 MB, 8.68 MB, 9.10 MB, 9.57 MB, 10.09 MB, 10.56 MB, 12.47 MB, 11.22 MB, 11.22 MB, 11.22 MB, 11.22 MB, 11.40 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.07 - BloomFilterBytes: 0 - PeakMemoryUsage: 31.44 MB (32962164) - PeakReservation: 30.94 MB (32440320) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 438 (438) - TotalNetworkReceiveTime: 2s286ms - TotalNetworkSendTime: 8.376ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 527 (527) - TotalThreadsTotalWallClockTime: 7s738ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 1s096ms - TotalThreadsVoluntaryContextSwitches: 131 (131) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 12.772ms - ExecTreeExecTime: 2.651ms - OpenTime: 7s682ms - ExecTreeOpenTime: 2s883ms - PrepareTime: 1.468ms - ExecTreePrepareTime: 833.876us KrpcDataStreamSender (dst_id=80):(Total: 671.540us, non-child: 671.540us, % non-child: 100.00%) - BytesSent: 40.65 KB (41623) - EosSent: 3 (3) - OverallThroughput: 59.11 MB/sec - PeakMemoryUsage: 85.64 KB (87696) - RowsReturned: 438 (438) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 540.592us - UncompressedRowBatchSize: 122.94 KB (125889) AGGREGATION_NODE (id=14):(Total: 2s886ms, non-child: 2.658ms, % non-child: 0.09%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 195.663us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 9 (9) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 9.13 MB (9572480) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 438 (438) - RowsReturnedRate: 151.00 /sec - StreamingTime: 1.378ms Buffer pool: - AllocTime: 18.733us - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - PeakReservation: 9.00 MB (9437184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=13):(Total: 2s884ms, non-child: 14.043ms, % non-child: 0.49%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 7.623ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 438 (438) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 107.759us - RowsReturned: 438 (438) - RowsReturnedRate: 151.00 /sec Buffer pool: - AllocTime: 48.313us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=13): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 2.905ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 4.156ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=79):(Total: 34.866ms, non-child: 34.866ms, % non-child: 100.00%) - ConvertRowBatchTime: 34.695ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 516.26 K/sec Buffer pool: - AllocTime: 98.895us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 85.347us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.415ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=12):(Total: 2s870ms, non-child: 240.939ms, % non-child: 8.39%) ExecOption: Probe Side Codegen Enabled - BuildRows: 641.22K (641220) - BuildTime: 237.169ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 438 (438) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 47.046us - RowsReturned: 438 (438) - RowsReturnedRate: 152.00 /sec Buffer pool: - AllocTime: 213.597us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=12): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 118.354ms - BuildRowsPartitioned: 641.22K (641220) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 118.024ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=78):(Total: 2s629ms, non-child: 344.846ms, % non-child: 13.12%) - ConvertRowBatchTime: 341.560ms - PeakMemoryUsage: 4.27 MB (4472832) - RowsReturned: 641.22K (641220) - RowsReturnedRate: 243.88 K/sec Buffer pool: - AllocTime: 1.120ms - CumulativeAllocationBytes: 9.19 MB (9633792) - CumulativeAllocations: 392 (392) - PeakReservation: 4.27 MB (4472832) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.27 MB (4472832) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 41.59 KB, 540.67 KB, 1.06 MB, 1.34 MB, 1.67 MB, 2.03 MB, 2.44 MB, 2.88 MB, 3.29 MB, 3.70 MB, 4.14 MB, 4.67 MB, 5.28 MB, 6.21 MB, 7.31 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.95 MB (8335860) - TotalGetBatchTime: 2s286ms - DataArrivalTimer: 2s284ms SenderSide: - DeserializeRowBatchTime: 14.609ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=77):(Total: 100.254us, non-child: 100.254us, % non-child: 100.00%) - ConvertRowBatchTime: 45.503us - PeakMemoryUsage: 184.00 KB (188416) - RowsReturned: 438 (438) - RowsReturnedRate: 4.37 M/sec Buffer pool: - AllocTime: 27.792us - CumulativeAllocationBytes: 184.00 KB (188416) - CumulativeAllocations: 12 (12) - PeakReservation: 184.00 KB (188416) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 184.00 KB (188416) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104.12 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 104.12 KB (106617) - TotalGetBatchTime: 15.220us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 539.006us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 4s711ms, non-child: 4s711ms, % non-child: 100.00%) - CodegenTime: 124.040ms - CompileTime: 394.864ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 181 (181) - NumInstructions: 10.85K (10849) - OptimizationTime: 4s257ms - PeakMemoryUsage: 5.30 MB (5554688) - PrepareTime: 58.355ms Instance 3f4b6afbed1991fc:3c2305570000000d (host=XXX:22002):(Total: 7s686ms, non-child: 292.376ms, % non-child: 3.80%) Fragment Instance Lifecycle Event Timeline: 7s686ms - Prepare Finished: 1.989ms (1.989ms) - Open Finished: 7s679ms (7s677ms) - First Batch Produced: 7s681ms (2.061ms) - First Batch Sent: 7s681ms (2.707us) - ExecInternal Finished: 7s686ms (4.370ms) MemoryUsage(500.000ms): 282.27 KB, 7.37 MB, 7.98 MB, 8.26 MB, 8.68 MB, 9.10 MB, 9.57 MB, 10.04 MB, 10.56 MB, 11.03 MB, 6.24 MB, 11.79 MB, 11.79 MB, 11.79 MB, 11.99 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 31.46 MB (32986740) - PeakReservation: 30.94 MB (32440320) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 481 (481) - TotalNetworkReceiveTime: 1s906ms - TotalNetworkSendTime: 324.603us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 418 (418) - TotalThreadsTotalWallClockTime: 7s731ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s108ms - TotalThreadsVoluntaryContextSwitches: 143 (143) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 6.378ms - ExecTreeExecTime: 3.191ms - OpenTime: 7s677ms - ExecTreeOpenTime: 2s317ms - PrepareTime: 1.822ms - ExecTreePrepareTime: 646.821us KrpcDataStreamSender (dst_id=80):(Total: 891.982us, non-child: 891.982us, % non-child: 100.00%) - BytesSent: 45.23 KB (46319) - EosSent: 3 (3) - OverallThroughput: 49.52 MB/sec - PeakMemoryUsage: 85.64 KB (87696) - RowsReturned: 481 (481) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 802.504us - UncompressedRowBatchSize: 134.90 KB (138133) AGGREGATION_NODE (id=14):(Total: 2s321ms, non-child: 3.378ms, % non-child: 0.15%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 301.605us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 9.13 MB (9572480) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 481 (481) - RowsReturnedRate: 207.00 /sec - StreamingTime: 1.522ms HASH_JOIN_NODE (id=13):(Total: 2s318ms, non-child: 26.549ms, % non-child: 1.15%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 43.747ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 481 (481) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 132.164us - RowsReturned: 481 (481) - RowsReturnedRate: 207.00 /sec Hash Join Builder (join_node_id=13): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.231ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 33.352ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=79):(Total: 2.895ms, non-child: 2.895ms, % non-child: 100.00%) - ConvertRowBatchTime: 2.752ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 6.22 M/sec Buffer pool: - AllocTime: 101.914us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 78.557us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.431ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=12):(Total: 2s291ms, non-child: 205.413ms, % non-child: 8.96%) ExecOption: Probe Side Codegen Enabled - BuildRows: 639.71K (639709) - BuildTime: 202.426ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 493 (493) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 79.818us - RowsReturned: 481 (481) - RowsReturnedRate: 209.00 /sec Hash Join Builder (join_node_id=12): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 85.941ms - BuildRowsPartitioned: 639.71K (639709) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 115.694ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=78):(Total: 2s086ms, non-child: 181.463ms, % non-child: 8.70%) - ConvertRowBatchTime: 179.099ms - PeakMemoryUsage: 4.83 MB (5062656) - RowsReturned: 639.71K (639709) - RowsReturnedRate: 306.65 K/sec Buffer pool: - AllocTime: 1.109ms - CumulativeAllocationBytes: 9.16 MB (9601024) - CumulativeAllocations: 392 (392) - PeakReservation: 4.83 MB (5062656) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.83 MB (5062656) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 41.59 KB, 540.67 KB, 1.06 MB, 1.30 MB, 1.67 MB, 2.03 MB, 2.44 MB, 2.84 MB, 3.29 MB, 3.70 MB, 4.14 MB, 4.63 MB, 5.28 MB, 6.21 MB, 7.31 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.93 MB (8316217) - TotalGetBatchTime: 1s905ms - DataArrivalTimer: 1s904ms SenderSide: - DeserializeRowBatchTime: 15.447ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=77):(Total: 166.583us, non-child: 166.583us, % non-child: 100.00%) - ConvertRowBatchTime: 88.446us - PeakMemoryUsage: 208.00 KB (212992) - RowsReturned: 493 (493) - RowsReturnedRate: 2.96 M/sec Buffer pool: - AllocTime: 31.249us - CumulativeAllocationBytes: 208.00 KB (212992) - CumulativeAllocations: 12 (12) - PeakReservation: 208.00 KB (212992) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 208.00 KB (212992) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 117.06 KB (119873) - TotalGetBatchTime: 23.061us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 458.662us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 209.093us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 76.930us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 16.799us - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - PeakReservation: 9.00 MB (9437184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 5s071ms, non-child: 5s071ms, % non-child: 100.00%) - CodegenTime: 321.960ms - CompileTime: 326.377ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 181 (181) - NumInstructions: 10.85K (10849) - OptimizationTime: 4s566ms - PeakMemoryUsage: 5.30 MB (5554688) - PrepareTime: 178.080ms Instance 3f4b6afbed1991fc:3c2305570000000f (host=XXX:22001):(Total: 7s667ms, non-child: 226.573ms, % non-child: 2.96%) Fragment Instance Lifecycle Event Timeline: 7s668ms - Prepare Finished: 4.663ms (4.663ms) - Open Finished: 7s661ms (7s657ms) - First Batch Produced: 7s663ms (1.923ms) - First Batch Sent: 7s663ms (1.987us) - ExecInternal Finished: 7s668ms (5.052ms) MemoryUsage(500.000ms): 330.27 KB, 7.37 MB, 7.93 MB, 8.31 MB, 8.68 MB, 9.10 MB, 9.57 MB, 10.04 MB, 10.56 MB, 11.03 MB, 11.54 MB, 6.81 MB, 12.49 MB, 12.49 MB, 12.66 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 31.43 MB (32953972) - PeakReservation: 30.94 MB (32440320) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 399 (399) - TotalNetworkReceiveTime: 1s157ms - TotalNetworkSendTime: 2.607ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 573 (573) - TotalThreadsTotalWallClockTime: 7s687ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 1s120ms - TotalThreadsVoluntaryContextSwitches: 158 (158) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 6.981ms - ExecTreeExecTime: 2.792ms - OpenTime: 7s657ms - ExecTreeOpenTime: 1s718ms - PrepareTime: 3.018ms - ExecTreePrepareTime: 2.143ms KrpcDataStreamSender (dst_id=80):(Total: 720.892us, non-child: 720.892us, % non-child: 100.00%) - BytesSent: 36.96 KB (37848) - EosSent: 3 (3) - OverallThroughput: 50.07 MB/sec - PeakMemoryUsage: 85.64 KB (87696) - RowsReturned: 399 (399) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 605.900us - UncompressedRowBatchSize: 111.74 KB (114426) AGGREGATION_NODE (id=14):(Total: 1s723ms, non-child: 3.234ms, % non-child: 0.19%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 255.278us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 9.13 MB (9572480) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 399 (399) - RowsReturnedRate: 231.00 /sec - StreamingTime: 1.190ms Buffer pool: - AllocTime: 22.437us - CumulativeAllocationBytes: 8.50 MB (8912896) - CumulativeAllocations: 17 (17) - PeakReservation: 9.00 MB (9437184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 8.50 MB (8912896) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=13):(Total: 1s720ms, non-child: 18.204ms, % non-child: 1.06%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 7.900ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 399 (399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 295.742us - RowsReturned: 399 (399) - RowsReturnedRate: 231.00 /sec Buffer pool: - AllocTime: 62.502us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=13): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.148ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 4.203ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=79):(Total: 14.926ms, non-child: 14.926ms, % non-child: 100.00%) - ConvertRowBatchTime: 14.778ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 1.21 M/sec Buffer pool: - AllocTime: 99.307us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 76.082us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.429ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=12):(Total: 1s702ms, non-child: 285.750ms, % non-child: 16.79%) ExecOption: Probe Side Codegen Enabled - BuildRows: 639.87K (639871) - BuildTime: 283.030ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 399 (399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 61.211us - RowsReturned: 399 (399) - RowsReturnedRate: 234.00 /sec Buffer pool: - AllocTime: 246.845us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=12): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 180.219ms - BuildRowsPartitioned: 639.87K (639871) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 102.122ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=78):(Total: 1s416ms, non-child: 260.352ms, % non-child: 18.38%) - ConvertRowBatchTime: 258.165ms - PeakMemoryUsage: 5.53 MB (5799936) - RowsReturned: 639.87K (639871) - RowsReturnedRate: 451.79 K/sec Buffer pool: - AllocTime: 5.459ms - CumulativeAllocationBytes: 9.16 MB (9609216) - CumulativeAllocations: 392 (392) - PeakReservation: 5.53 MB (5799936) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 5.53 MB (5799936) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 83.18 KB, 540.67 KB, 1.02 MB, 1.34 MB, 1.67 MB, 2.03 MB, 2.44 MB, 2.84 MB, 3.29 MB, 3.70 MB, 4.14 MB, 4.63 MB, 5.28 MB, 6.17 MB, 7.27 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.93 MB (8318323) - TotalGetBatchTime: 1s157ms - DataArrivalTimer: 1s155ms SenderSide: - DeserializeRowBatchTime: 26.892ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=77):(Total: 148.243us, non-child: 148.243us, % non-child: 100.00%) - ConvertRowBatchTime: 70.735us - PeakMemoryUsage: 176.00 KB (180224) - RowsReturned: 399 (399) - RowsReturnedRate: 2.69 M/sec Buffer pool: - AllocTime: 28.035us - CumulativeAllocationBytes: 176.00 KB (180224) - CumulativeAllocations: 12 (12) - PeakReservation: 176.00 KB (180224) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 176.00 KB (180224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94.60 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 94.60 KB (96870) - TotalGetBatchTime: 23.264us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 372.320us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 5s716ms, non-child: 5s716ms, % non-child: 100.00%) - CodegenTime: 350.703ms - CompileTime: 282.081ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 181 (181) - NumInstructions: 10.85K (10849) - OptimizationTime: 5s312ms - PeakMemoryUsage: 5.30 MB (5554688) - PrepareTime: 120.689ms Averaged Fragment F05:(Total: 7s253ms, non-child: 51.999ms, % non-child: 0.72%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s256ms max:7s262ms mean: 7s260ms stddev:2.695ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.31 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.78 MB (8155438) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 443 (443) - TotalNetworkReceiveTime: 7s339ms - TotalNetworkSendTime: 3.818ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 140 (140) - TotalThreadsTotalWallClockTime: 9s304ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 306.666ms - TotalThreadsVoluntaryContextSwitches: 198 (198) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s583ms - ExecTreeExecTime: 1s577ms - OpenTime: 5s665ms - ExecTreeOpenTime: 3s821ms - PrepareTime: 3.741ms - ExecTreePrepareTime: 315.945us KrpcDataStreamSender (dst_id=77):(Total: 1.368ms, non-child: 1.368ms, % non-child: 100.00%) - BytesSent: 39.52 KB (40473) - EosSent: 3 (3) - OverallThroughput: 28.16 MB/sec - PeakMemoryUsage: 90.15 KB (92314) - RowsReturned: 443 (443) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.235ms - UncompressedRowBatchSize: 105.26 KB (107786) HASH_JOIN_NODE (id=11):(Total: 5s399ms, non-child: 42.373ms, % non-child: 0.78%) - BuildRows: 45.73K (45733) - BuildTime: 88.231ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.61K (6605) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 568.675us - RowsReturned: 443 (443) - RowsReturnedRate: 81.00 /sec Buffer pool: - AllocTime: 99.850us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=11): - BuildRowsPartitionTime: 61.006ms - BuildRowsPartitioned: 45.73K (45733) - HashBuckets: 129.71K (129706) - HashCollisions: 0 (0) - HashTablesBuildTime: 26.620ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=76):(Total: 2s922ms, non-child: 2s922ms, % non-child: 100.00%) - ConvertRowBatchTime: 7.096ms - PeakMemoryUsage: 640.00 KB (655360) - RowsReturned: 45.73K (45733) - RowsReturnedRate: 15.69 K/sec Buffer pool: - AllocTime: 677.582us - CumulativeAllocationBytes: 4.48 MB (4702208) - CumulativeAllocations: 230 (230) - PeakReservation: 640.00 KB (655360) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 640.00 KB (655360) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2606800) - TotalGetBatchTime: 2s914ms - DataArrivalTimer: 2s907ms SenderSide: - DeserializeRowBatchTime: 12.993ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=75):(Total: 4s427ms, non-child: 4s427ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.067ms - PeakMemoryUsage: 1.58 MB (1660245) - RowsReturned: 6.61K (6605) - RowsReturnedRate: 1.73 K/sec Buffer pool: - AllocTime: 266.651us - CumulativeAllocationBytes: 1.97 MB (2069845) - CumulativeAllocations: 102 (102) - PeakReservation: 1.58 MB (1660245) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.58 MB (1660245) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 2s707ms - TotalBytesReceived: 1.17 MB (1227503) - TotalGetBatchTime: 4s425ms - DataArrivalTimer: 4s424ms SenderSide: - DeserializeRowBatchTime: 3.631ms - NumBatchesArrived: 51 (51) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 51 (51) - NumBatchesReceived: 51 (51) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s800ms, non-child: 1s800ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 201.502ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s555ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 43.165ms Fragment F05: Instance 3f4b6afbed1991fc:3c23055700000009 (host=XXX:22000):(Total: 7s259ms, non-child: 15.409ms, % non-child: 0.21%) Fragment Instance Lifecycle Event Timeline: 7s259ms - Prepare Finished: 2.744ms (2.744ms) - Open Finished: 5s637ms (5s634ms) - First Batch Produced: 7s254ms (1s617ms) - First Batch Sent: 7s256ms (1.690ms) - ExecInternal Finished: 7s259ms (3.541ms) MemoryUsage(500.000ms): 1.29 MB, 1.29 MB, 1.45 MB, 709.73 KB, 5.54 MB, 5.54 MB, 5.54 MB, 5.54 MB, 5.54 MB, 5.54 MB, 6.12 MB, 6.50 MB, 7.47 MB, 7.78 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1 - AverageThreadTokens: 1.43 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.90 MB (8286510) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 428 (428) - TotalNetworkReceiveTime: 8s198ms - TotalNetworkSendTime: 2.931ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 106 (106) - TotalThreadsTotalWallClockTime: 10s245ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 304.000ms - TotalThreadsVoluntaryContextSwitches: 176 (176) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s622ms - ExecTreeExecTime: 1s617ms - OpenTime: 5s634ms - ExecTreeOpenTime: 3s771ms - PrepareTime: 2.429ms - ExecTreePrepareTime: 321.683us KrpcDataStreamSender (dst_id=77):(Total: 1.324ms, non-child: 1.324ms, % non-child: 100.00%) - BytesSent: 38.19 KB (39111) - EosSent: 3 (3) - OverallThroughput: 28.16 MB/sec - PeakMemoryUsage: 95.48 KB (97776) - RowsReturned: 428 (428) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.193ms - UncompressedRowBatchSize: 101.71 KB (104151) HASH_JOIN_NODE (id=11):(Total: 5s388ms, non-child: 31.041ms, % non-child: 0.58%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 45.89K (45894) - BuildTime: 136.217ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 7.09K (7089) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 582.956us - RowsReturned: 428 (428) - RowsReturnedRate: 79.00 /sec Buffer pool: - AllocTime: 102.170us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=11): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 110.006ms - BuildRowsPartitioned: 45.89K (45894) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 25.635ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=76):(Total: 2s851ms, non-child: 26.583ms, % non-child: 0.93%) - ConvertRowBatchTime: 7.468ms - PeakMemoryUsage: 680.00 KB (696320) - RowsReturned: 45.89K (45894) - RowsReturnedRate: 16.09 K/sec Buffer pool: - AllocTime: 670.228us - CumulativeAllocationBytes: 4.51 MB (4726784) - CumulativeAllocations: 232 (232) - PeakReservation: 680.00 KB (696320) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 680.00 KB (696320) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 88.84 KB, 333.15 KB, 644.09 KB, 1021.66 KB, 1.34 MB, 1.74 MB, 2.10 MB, 2.49 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2615958) - TotalGetBatchTime: 2s842ms - DataArrivalTimer: 2s824ms SenderSide: - DeserializeRowBatchTime: 13.002ms - NumBatchesArrived: 116 (116) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 116 (116) - NumBatchesReceived: 116 (116) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=75):(Total: 5s357ms, non-child: 2.317ms, % non-child: 0.04%) - ConvertRowBatchTime: 1.149ms - PeakMemoryUsage: 1.70 MB (1785856) - RowsReturned: 7.09K (7089) - RowsReturnedRate: 1.32 K/sec Buffer pool: - AllocTime: 302.253us - CumulativeAllocationBytes: 2.12 MB (2228224) - CumulativeAllocations: 110 (110) - PeakReservation: 1.70 MB (1785856) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.70 MB (1785856) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285.81 KB, 1023.26 KB, 1.23 MB - FirstBatchArrivalWaitTime: 3s636ms - TotalBytesReceived: 1.26 MB (1317973) - TotalGetBatchTime: 5s355ms - DataArrivalTimer: 5s355ms SenderSide: - DeserializeRowBatchTime: 3.908ms - NumBatchesArrived: 55 (55) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 55 (55) - NumBatchesReceived: 55 (55) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s853ms, non-child: 1s853ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 226.668ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s596ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 29.905ms Instance 3f4b6afbed1991fc:3c23055700000008 (host=XXX:22002):(Total: 7s254ms, non-child: 70.792ms, % non-child: 0.98%) Fragment Instance Lifecycle Event Timeline: 7s254ms - Prepare Finished: 2.292ms (2.292ms) - Open Finished: 5s695ms (5s692ms) - First Batch Produced: 7s249ms (1s554ms) - First Batch Sent: 7s251ms (1.818ms) - ExecInternal Finished: 7s254ms (3.323ms) MemoryUsage(500.000ms): 1.29 MB, 1.29 MB, 1.45 MB, 5.34 MB, 5.34 MB, 5.34 MB, 5.34 MB, 5.34 MB, 5.34 MB, 5.34 MB, 6.12 MB, 6.59 MB, 7.34 MB, 7.53 MB ThreadUsage(500.000ms): 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1 - AverageThreadTokens: 1.50 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.64 MB (8016174) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 405 (405) - TotalNetworkReceiveTime: 8s662ms - TotalNetworkSendTime: 2.756ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 140 (140) - TotalThreadsTotalWallClockTime: 10s428ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 308.000ms - TotalThreadsVoluntaryContextSwitches: 189 (189) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s559ms - ExecTreeExecTime: 1s554ms - OpenTime: 5s692ms - ExecTreeOpenTime: 4s005ms - PrepareTime: 2.086ms - ExecTreePrepareTime: 356.543us KrpcDataStreamSender (dst_id=77):(Total: 1.305ms, non-child: 1.305ms, % non-child: 100.00%) - BytesSent: 36.16 KB (37028) - EosSent: 3 (3) - OverallThroughput: 27.06 MB/sec - PeakMemoryUsage: 79.48 KB (81392) - RowsReturned: 405 (405) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.145ms - UncompressedRowBatchSize: 96.07 KB (98378) HASH_JOIN_NODE (id=11):(Total: 5s560ms, non-child: 14.682ms, % non-child: 0.26%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 45.73K (45734) - BuildTime: 49.122ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.12K (6120) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 537.498us - RowsReturned: 405 (405) - RowsReturnedRate: 72.00 /sec Buffer pool: - AllocTime: 109.902us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=11): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 19.649ms - BuildRowsPartitioned: 45.73K (45734) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 28.904ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=76):(Total: 3s126ms, non-child: 9.461ms, % non-child: 0.30%) - ConvertRowBatchTime: 7.064ms - PeakMemoryUsage: 480.00 KB (491520) - RowsReturned: 45.73K (45734) - RowsReturnedRate: 14.63 K/sec Buffer pool: - AllocTime: 679.288us - CumulativeAllocationBytes: 4.48 MB (4694016) - CumulativeAllocations: 230 (230) - PeakReservation: 480.00 KB (491520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 480.00 KB (491520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 88.84 KB, 333.15 KB, 644.09 KB, 999.45 KB, 1.34 MB, 1.74 MB, 2.10 MB, 2.47 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2606838) - TotalGetBatchTime: 3s117ms - DataArrivalTimer: 3s116ms SenderSide: - DeserializeRowBatchTime: 13.065ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=75):(Total: 5s545ms, non-child: 2.425ms, % non-child: 0.04%) - ConvertRowBatchTime: 990.683us - PeakMemoryUsage: 1.46 MB (1531904) - RowsReturned: 6.12K (6120) - RowsReturnedRate: 1.10 K/sec Buffer pool: - AllocTime: 236.629us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.46 MB (1531904) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.46 MB (1531904) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356.36 KB, 926.68 KB, 1.04 MB - FirstBatchArrivalWaitTime: 3s829ms - TotalBytesReceived: 1.08 MB (1136786) - TotalGetBatchTime: 5s543ms - DataArrivalTimer: 5s543ms SenderSide: - DeserializeRowBatchTime: 3.370ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s621ms, non-child: 1s621ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 183.596ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s413ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 24.050ms Instance 3f4b6afbed1991fc:3c2305570000000a (host=XXX:22001):(Total: 7s246ms, non-child: 69.796ms, % non-child: 0.96%) Fragment Instance Lifecycle Event Timeline: 7s248ms - Prepare Finished: 8.746ms (8.746ms) - Open Finished: 5s678ms (5s669ms) - First Batch Produced: 7s240ms (1s561ms) - First Batch Sent: 7s242ms (1.773ms) - ExecInternal Finished: 7s248ms (6.550ms) MemoryUsage(500.000ms): 1.29 MB, 1.29 MB, 1.45 MB, 709.73 KB, 5.62 MB, 5.62 MB, 5.62 MB, 5.62 MB, 5.62 MB, 5.62 MB, 6.12 MB, 6.53 MB, 7.44 MB, 7.66 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.79 MB (8163630) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 497 (497) - TotalNetworkReceiveTime: 5s157ms - TotalNetworkSendTime: 5.766ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 174 (174) - TotalThreadsTotalWallClockTime: 7s239ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 308.000ms - TotalThreadsVoluntaryContextSwitches: 231 (231) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s570ms - ExecTreeExecTime: 1s561ms - OpenTime: 5s669ms - ExecTreeOpenTime: 3s686ms - PrepareTime: 6.708ms - ExecTreePrepareTime: 269.610us KrpcDataStreamSender (dst_id=77):(Total: 1.476ms, non-child: 1.476ms, % non-child: 100.00%) - BytesSent: 44.22 KB (45280) - EosSent: 3 (3) - OverallThroughput: 29.25 MB/sec - PeakMemoryUsage: 95.48 KB (97776) - RowsReturned: 497 (497) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.366ms - UncompressedRowBatchSize: 118.00 KB (120831) HASH_JOIN_NODE (id=11):(Total: 5s249ms, non-child: 81.396ms, % non-child: 1.55%) ExecOption: Probe Side Codegen Enabled - BuildRows: 45.57K (45572) - BuildTime: 79.355ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.61K (6608) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 585.571us - RowsReturned: 497 (497) - RowsReturnedRate: 94.00 /sec Buffer pool: - AllocTime: 87.478us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=11): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 53.361ms - BuildRowsPartitioned: 45.57K (45572) - HashBuckets: 126.98K (126976) - HashCollisions: 0 (0) - HashTablesBuildTime: 25.321ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=76):(Total: 2s789ms, non-child: 8.311ms, % non-child: 0.30%) - ConvertRowBatchTime: 6.757ms - PeakMemoryUsage: 760.00 KB (778240) - RowsReturned: 45.57K (45572) - RowsReturnedRate: 16.34 K/sec Buffer pool: - AllocTime: 683.232us - CumulativeAllocationBytes: 4.47 MB (4685824) - CumulativeAllocations: 230 (230) - PeakReservation: 760.00 KB (778240) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 760.00 KB (778240) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 88.84 KB, 333.15 KB, 644.09 KB, 1021.66 KB, 1.34 MB, 1.74 MB, 2.10 MB, 2.47 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.48 MB (2597604) - TotalGetBatchTime: 2s781ms - DataArrivalTimer: 2s781ms SenderSide: - DeserializeRowBatchTime: 12.911ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=75):(Total: 2s378ms, non-child: 3.243ms, % non-child: 0.14%) - ConvertRowBatchTime: 1.062ms - PeakMemoryUsage: 1.59 MB (1662976) - RowsReturned: 6.61K (6608) - RowsReturnedRate: 2.78 K/sec Buffer pool: - AllocTime: 261.072us - CumulativeAllocationBytes: 1.98 MB (2072576) - CumulativeAllocations: 102 (102) - PeakReservation: 1.59 MB (1662976) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.59 MB (1662976) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308.52 KB, 998.22 KB, 1.14 MB - FirstBatchArrivalWaitTime: 655.321ms - TotalBytesReceived: 1.17 MB (1227752) - TotalGetBatchTime: 2s375ms - DataArrivalTimer: 2s375ms SenderSide: - DeserializeRowBatchTime: 3.616ms - NumBatchesArrived: 51 (51) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 51 (51) - NumBatchesReceived: 51 (51) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s926ms, non-child: 1s926ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 194.244ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s655ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 75.539ms Averaged Fragment F00:(Total: 6s772ms, non-child: 140.072ms, % non-child: 2.07%) split sizes: min: 9.71 MB, max: 43.56 MB, avg: 32.20 MB, stddev: 15.90 MB completion times: min:5s880ms max:7s261ms mean: 6s780ms stddev:637.126ms execution rates: min:1.65 MB/sec max:6.02 MB/sec mean:4.56 MB/sec stddev:2.05 MB/sec num instances: 3 - AverageThreadTokens: 1.22 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 23.70 MB (24847329) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 6.61K (6605) - TotalNetworkReceiveTime: 375.900us - TotalNetworkSendTime: 16.477ms - TotalStorageWaitTime: 46.543us - TotalThreadsInvoluntaryContextSwitches: 855 (855) - TotalThreadsTotalWallClockTime: 8s109ms - TotalThreadsSysTime: 1.333ms - TotalThreadsUserTime: 1s353ms - TotalThreadsVoluntaryContextSwitches: 280 (280) Buffer pool: - AllocTime: 5.278us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 594.031ms - ExecTreeExecTime: 549.603ms - OpenTime: 6s171ms - ExecTreeOpenTime: 833.459ms - PrepareTime: 6.781ms - ExecTreePrepareTime: 778.209us KrpcDataStreamSender (dst_id=75):(Total: 15.542ms, non-child: 15.542ms, % non-child: 100.00%) - BytesSent: 444.23 KB (454891) - EosSent: 3 (3) - OverallThroughput: 9.35 MB/sec - PeakMemoryUsage: 40.28 KB (41248) - RowsReturned: 6.61K (6605) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 15.409ms - UncompressedRowBatchSize: 1.17 MB (1227503) HASH_JOIN_NODE (id=10):(Total: 1s384ms, non-child: 20.042ms, % non-child: 1.45%) - BuildRows: 7.32K (7317) - BuildTime: 25.233ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 4.68 MB (4909994) - ProbeRows: 45.56K (45560) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.091ms - RowsReturned: 6.61K (6605) - RowsReturnedRate: 3.50 K/sec Hash Join Builder (join_node_id=10): - BuildRowsPartitionTime: 6.080ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 12.529ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=74):(Total: 1.537ms, non-child: 1.537ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.441ms - PeakMemoryUsage: 976.00 KB (999424) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 5.24 M/sec Buffer pool: - AllocTime: 54.919us - CumulativeAllocationBytes: 976.00 KB (999424) - CumulativeAllocations: 16 (16) - PeakReservation: 976.00 KB (999424) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 976.00 KB (999424) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 641.02 KB (656402) - TotalGetBatchTime: 48.810us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 15.158ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=9):(Total: 1s364ms, non-child: 43.212ms, % non-child: 3.17%) - BuildRows: 47.71K (47714) - BuildTime: 33.086ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 5.72 MB (6001578) - ProbeRows: 95.23K (95229) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 8.235ms - RowsReturned: 45.56K (45560) - RowsReturnedRate: 24.61 K/sec Hash Join Builder (join_node_id=9): - BuildRowsPartitionTime: 16.345ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 16.249ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=73):(Total: 21.934ms, non-child: 21.934ms, % non-child: 100.00%) - ConvertRowBatchTime: 12.810ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 2.47 M/sec Buffer pool: - AllocTime: 260.281us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 291.177us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.822ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=8):(Total: 1s299ms, non-child: 43.372ms, % non-child: 3.34%) - BuildRows: 365 (365) - BuildTime: 2.132ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 218.68K (218678) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 15.173ms - RowsReturned: 95.23K (95229) - RowsReturnedRate: 53.88 K/sec Hash Join Builder (join_node_id=8): - BuildRowsPartitionTime: 218.584us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 1.322ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=72):(Total: 75.374us, non-child: 75.374us, % non-child: 100.00%) - ConvertRowBatchTime: 55.892us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 4.84 M/sec Buffer pool: - AllocTime: 6.265us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 11.887us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 26.750us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=1):(Total: 1s255ms, non-child: 1s255ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 6.80 MB (7128132) - BytesReadDataNodeCache: 0 - BytesReadLocal: 6.80 MB (7128132) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 6.80 MB (7128132) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 8.759ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 12.04 MB (12623463) - PerReadThreadRawHdfsThroughput: 1.63 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s238ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 480.52K (480516) - RowsReturned: 218.68K (218678) - RowsReturnedRate: 129.71 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 426 (426) - ScannerThreadsTotalWallClockTime: 1s313ms - MaterializeTupleTime(*): 934.826ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 445.333ms - ScannerThreadsVoluntaryContextSwitches: 2 (2) - TotalRawHdfsOpenFileTime(*): 61.909us - TotalRawHdfsReadTime(*): 3.764ms - TotalReadThroughput: 1012.45 KB/sec 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: 267.30K (267299) - Rows rejected: 261.84K (261838) - Rows total: 480.52K (480516) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Buffer pool: - AllocTime: 33.645us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 83.728us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 43.388us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 5s232ms, non-child: 5s232ms, % non-child: 100.00%) - CodegenTime: 2.681ms - CompileTime: 334.311ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s806ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 90.794ms Fragment F00: Instance 3f4b6afbed1991fc:3c23055700000004 (host=XXX:22002):(Total: 7s258ms, non-child: 333.487ms, % non-child: 4.59%) Hdfs split stats (:<# splits>/): 0:1/43.56 MB Filter 10 arrival: 5s345ms Fragment Instance Lifecycle Event Timeline: 7s258ms - Prepare Finished: 2.508ms (2.508ms) - Open Finished: 5s478ms (5s476ms) - First Batch Produced: 5s530ms (51.179ms) - First Batch Sent: 5s535ms (5.509ms) - ExecInternal Finished: 7s258ms (1s723ms) MemoryUsage(500.000ms): 2.17 MB, 5.73 MB, 5.73 MB, 8.09 MB, 8.50 MB, 8.50 MB, 8.50 MB, 8.50 MB, 8.50 MB, 8.50 MB, 7.16 MB, 24.73 MB, 24.99 MB, 31.96 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2 - AverageThreadTokens: 1.29 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 32.90 MB (34499639) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 19.82K (19817) - TotalNetworkReceiveTime: 265.766us - TotalNetworkSendTime: 47.767ms - TotalStorageWaitTime: 48.330us - TotalThreadsInvoluntaryContextSwitches: 1.35K (1353) - TotalThreadsTotalWallClockTime: 9s175ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 1s600ms - TotalThreadsVoluntaryContextSwitches: 703 (703) Buffer pool: - AllocTime: 5.157us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s779ms - ExecTreeExecTime: 1s648ms - OpenTime: 5s476ms - ExecTreeOpenTime: 234.308ms - PrepareTime: 1.978ms - ExecTreePrepareTime: 830.357us KrpcDataStreamSender (dst_id=75):(Total: 46.400ms, non-child: 46.400ms, % non-child: 100.00%) - BytesSent: 1.30 MB (1364674) - EosSent: 3 (3) - OverallThroughput: 28.05 MB/sec - PeakMemoryUsage: 96.28 KB (98592) - RowsReturned: 19.82K (19817) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 46.227ms - UncompressedRowBatchSize: 3.51 MB (3682511) HASH_JOIN_NODE (id=10):(Total: 1s884ms, non-child: 32.745ms, % non-child: 1.74%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 28.281ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 10.06 MB (10547456) - ProbeRows: 136.68K (136682) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 9.274ms - RowsReturned: 19.82K (19817) - RowsReturnedRate: 10.52 K/sec Hash Join Builder (join_node_id=10): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 12.789ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 13.994ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=74):(Total: 2.267ms, non-child: 2.267ms, % non-child: 100.00%) - ConvertRowBatchTime: 2.165ms - PeakMemoryUsage: 976.00 KB (999424) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 3.23 M/sec Buffer pool: - AllocTime: 76.782us - CumulativeAllocationBytes: 976.00 KB (999424) - CumulativeAllocations: 16 (16) - PeakReservation: 976.00 KB (999424) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 976.00 KB (999424) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 641.02 KB (656402) - TotalGetBatchTime: 52.448us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 2.631ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=9):(Total: 1s851ms, non-child: 69.033ms, % non-child: 3.73%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 40.877ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 11.07 MB (11610368) - ProbeRows: 285.69K (285688) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 24.705ms - RowsReturned: 136.68K (136682) - RowsReturnedRate: 73.83 K/sec Hash Join Builder (join_node_id=9): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 34.406ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 5.988ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=73):(Total: 14.767ms, non-child: 14.767ms, % non-child: 100.00%) - ConvertRowBatchTime: 14.379ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 3.23 M/sec Buffer pool: - AllocTime: 259.081us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 1.02 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 176.981us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.831ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=8):(Total: 1s767ms, non-child: 81.643ms, % non-child: 4.62%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 3.942ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 656.03K (656034) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 45.517ms - RowsReturned: 285.69K (285688) - RowsReturnedRate: 161.63 K/sec Hash Join Builder (join_node_id=8): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 207.280us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 3.111ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=72):(Total: 75.735us, non-child: 75.735us, % non-child: 100.00%) - ConvertRowBatchTime: 54.009us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 4.82 M/sec Buffer pool: - AllocTime: 6.013us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 13.398us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 25.960us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=1):(Total: 1s685ms, non-child: 1s685ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/43.56 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.11 MB, 9.11 MB, 9.11 MB - FooterProcessingTime: (Avg: 302.181us ; Min: 302.181us ; Max: 302.181us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 9.11 MB (9552260) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.11 MB (9552260) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.11 MB (9552260) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 7.720ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 16.08 MB (16858838) - PerReadThreadRawHdfsThroughput: 2.01 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s659ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 656.13K (656132) - RowsReturned: 656.03K (656034) - RowsReturnedRate: 389.14 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 1.05K (1051) - ScannerThreadsTotalWallClockTime: 1s884ms - MaterializeTupleTime(*): 947.325ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 604.000ms - ScannerThreadsVoluntaryContextSwitches: 1 (1) - TotalRawHdfsOpenFileTime(*): 61.397us - TotalRawHdfsReadTime(*): 4.426ms - TotalReadThroughput: 1.30 MB/sec 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: 16.48K (16482) - Rows rejected: 98 (98) - Rows total: 656.13K (656132) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Buffer pool: - AllocTime: 26.124us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 101.608us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 39.436us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 4s994ms, non-child: 4s994ms, % non-child: 100.00%) - CodegenTime: 1.688ms - CompileTime: 307.020ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s543ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 142.802ms Instance 3f4b6afbed1991fc:3c23055700000006 (host=XXX:22001):(Total: 7s183ms, non-child: 38.847ms, % non-child: 0.54%) Hdfs split stats (:<# splits>/): 0:1/43.32 MB Filter 10 arrival: 5s790ms Fragment Instance Lifecycle Event Timeline: 7s186ms - Prepare Finished: 7.937ms (7.937ms) - Open Finished: 7s185ms (7s177ms) - First Batch Produced: 7s185ms (270.978us) - First Batch Sent: 7s185ms (3.173us) - ExecInternal Finished: 7s186ms (641.545us) MemoryUsage(500.000ms): 5.71 MB, 5.73 MB, 5.73 MB, 8.05 MB, 8.50 MB, 8.50 MB, 8.50 MB, 8.50 MB, 8.50 MB, 8.50 MB, 8.50 MB, 23.22 MB, 24.55 MB, 24.59 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2 - AverageThreadTokens: 1.21 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 24.62 MB (25817662) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 262.987us - TotalNetworkSendTime: 568.137us - TotalStorageWaitTime: 47.844us - TotalThreadsInvoluntaryContextSwitches: 880 (880) - TotalThreadsTotalWallClockTime: 8s578ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s476ms - TotalThreadsVoluntaryContextSwitches: 100 (100) Buffer pool: - AllocTime: 5.950us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 921.118us - ExecTreeExecTime: 271.224us - OpenTime: 7s177ms - ExecTreeOpenTime: 1s463ms - PrepareTime: 5.226ms - ExecTreePrepareTime: 696.780us KrpcDataStreamSender (dst_id=75):(Total: 98.185us, non-child: 98.185us, % non-child: 100.00%) - BytesSent: 0 - EosSent: 3 (3) - OverallThroughput: 0.00 /sec - PeakMemoryUsage: 12.28 KB (12576) - RowsReturned: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - UncompressedRowBatchSize: 0 HASH_JOIN_NODE (id=10):(Total: 1s465ms, non-child: 9.691ms, % non-child: 0.66%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 22.953ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 1.99 MB (2091264) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 598.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 52.833us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=10): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 2.825ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.729ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=74):(Total: 1.163ms, non-child: 1.163ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.073ms - PeakMemoryUsage: 976.00 KB (999424) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 6.29 M/sec Buffer pool: - AllocTime: 47.392us - CumulativeAllocationBytes: 976.00 KB (999424) - CumulativeAllocations: 16 (16) - PeakReservation: 976.00 KB (999424) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 976.00 KB (999424) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 641.02 KB (656402) - TotalGetBatchTime: 45.662us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 39.252ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=9):(Total: 1s455ms, non-child: 27.795ms, % non-child: 1.91%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 26.737ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 3.05 MB (3197184) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 720.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 58.959us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=9): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 11.613ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 14.609ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=73):(Total: 17.172ms, non-child: 17.172ms, % non-child: 100.00%) - ConvertRowBatchTime: 16.765ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 2.78 M/sec Buffer pool: - AllocTime: 257.468us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 1015.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 183.291us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.822ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=8):(Total: 1s410ms, non-child: 18.918ms, % non-child: 1.34%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 1.278ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 739.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 50.299us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=8): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 237.579us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 457.120us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=72):(Total: 73.991us, non-child: 73.991us, % non-child: 100.00%) - ConvertRowBatchTime: 56.449us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 4.93 M/sec Buffer pool: - AllocTime: 5.195us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 9.771us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 22.478us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=1):(Total: 1s391ms, non-child: 1s391ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/43.32 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.06 MB, 9.06 MB, 9.06 MB - FooterProcessingTime: (Avg: 300.479us ; Min: 300.479us ; Max: 300.479us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 9.06 MB (9499861) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.06 MB (9499861) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.06 MB (9499861) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 17.687ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 15.55 MB (16302263) - PerReadThreadRawHdfsThroughput: 1.99 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s373ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 652.17K (652171) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 185 (185) - ScannerThreadsTotalWallClockTime: 1s374ms - MaterializeTupleTime(*): 1s236ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 600.000ms - ScannerThreadsVoluntaryContextSwitches: 4 (4) - TotalRawHdfsOpenFileTime(*): 58.745us - TotalRawHdfsReadTime(*): 4.456ms - TotalReadThroughput: 1.29 MB/sec 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: 652.17K (652171) - Rows rejected: 652.17K (652171) - Rows total: 652.17K (652171) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s679ms, non-child: 5s679ms, % non-child: 100.00%) - CodegenTime: 1.117ms - CompileTime: 315.364ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 5s263ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 100.341ms Instance 3f4b6afbed1991fc:3c23055700000005 (host=XXX:22000):(Total: 5s876ms, non-child: 47.882ms, % non-child: 0.81%) Hdfs split stats (:<# splits>/): 0:1/9.71 MB Filter 10 arrival: 5s183ms Fragment Instance Lifecycle Event Timeline: 5s877ms - Prepare Finished: 14.489ms (14.489ms) - Open Finished: 5s876ms (5s861ms) - First Batch Produced: 5s876ms (271.469us) - First Batch Sent: 5s876ms (1.929us) - ExecInternal Finished: 5s877ms (1.176ms) MemoryUsage(500.000ms): 5.71 MB, 5.73 MB, 5.73 MB, 8.05 MB, 8.50 MB, 8.50 MB, 8.50 MB, 8.50 MB, 8.50 MB, 4.96 MB, 13.57 MB, 13.44 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2 - AverageThreadTokens: 1.17 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 13.57 MB (14224688) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 598.949us - TotalNetworkSendTime: 1.096ms - TotalStorageWaitTime: 43.456us - TotalThreadsInvoluntaryContextSwitches: 333 (333) - TotalThreadsTotalWallClockTime: 6s574ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 984.000ms - TotalThreadsVoluntaryContextSwitches: 38 (38) Buffer pool: - AllocTime: 4.728us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1.455ms - ExecTreeExecTime: 271.286us - OpenTime: 5s861ms - ExecTreeOpenTime: 802.226ms - PrepareTime: 13.139ms - ExecTreePrepareTime: 807.491us KrpcDataStreamSender (dst_id=75):(Total: 129.799us, non-child: 129.799us, % non-child: 100.00%) - BytesSent: 0 - EosSent: 3 (3) - OverallThroughput: 0.00 /sec - PeakMemoryUsage: 12.28 KB (12576) - RowsReturned: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - UncompressedRowBatchSize: 0 HASH_JOIN_NODE (id=10):(Total: 804.026ms, non-child: 17.691ms, % non-child: 2.20%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 24.466ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 1.99 MB (2091264) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 696.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Hash Join Builder (join_node_id=10): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 2.627ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 20.864ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=74):(Total: 1.180ms, non-child: 1.180ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.087ms - PeakMemoryUsage: 976.00 KB (999424) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 6.20 M/sec Buffer pool: - AllocTime: 40.585us - CumulativeAllocationBytes: 976.00 KB (999424) - CumulativeAllocations: 16 (16) - PeakReservation: 976.00 KB (999424) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 976.00 KB (999424) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB, 641.02 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 641.02 KB (656402) - TotalGetBatchTime: 48.320us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.590ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=9):(Total: 786.348ms, non-child: 32.807ms, % non-child: 4.17%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 31.643ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 3.05 MB (3197184) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 652.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Hash Join Builder (join_node_id=9): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.015ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 28.152ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=73):(Total: 33.862ms, non-child: 33.862ms, % non-child: 100.00%) - ConvertRowBatchTime: 7.285ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 1.41 M/sec Buffer pool: - AllocTime: 264.294us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 1015.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 513.260us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.814ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=8):(Total: 719.678ms, non-child: 29.556ms, % non-child: 4.11%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 1.175ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 712.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Hash Join Builder (join_node_id=8): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 210.894us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 399.939us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=72):(Total: 76.398us, non-child: 76.398us, % non-child: 100.00%) - ConvertRowBatchTime: 57.218us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 4.78 M/sec Buffer pool: - AllocTime: 7.589us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 12.494us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 31.813us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=1):(Total: 690.125ms, non-child: 690.125ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/9.71 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.22 MB, 2.22 MB - FooterProcessingTime: (Avg: 288.918us ; Min: 288.918us ; Max: 288.918us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 2.22 MB (2332276) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.22 MB (2332276) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.22 MB (2332276) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 870.217us - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 4.49 MB (4709289) - PerReadThreadRawHdfsThroughput: 922.77 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 681.597ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 133.25K (133245) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 43 (43) - ScannerThreadsTotalWallClockTime: 681.899ms - MaterializeTupleTime(*): 620.324ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 132.000ms - ScannerThreadsVoluntaryContextSwitches: 1 (1) - TotalRawHdfsOpenFileTime(*): 65.586us - TotalRawHdfsReadTime(*): 2.410ms - TotalReadThroughput: 379.60 KB/sec 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: 133.25K (133245) - Rows rejected: 133.25K (133245) - Rows total: 133.25K (133245) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Buffer pool: - AllocTime: 24.512us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 90.617us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 37.897us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 5s024ms, non-child: 5s024ms, % non-child: 100.00%) - CodegenTime: 5.240ms - CompileTime: 380.548ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s614ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 29.239ms Averaged Fragment F01:(Total: 390.626ms, non-child: 7.743ms, % non-child: 1.98%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:422.384ms max:422.384ms mean: 422.384ms stddev:0.000ns execution rates: min:5.10 MB/sec max:5.10 MB/sec mean:5.10 MB/sec stddev:0.66 B/sec num instances: 1 - AverageThreadTokens: 2.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 900.98 KB (922601) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 155.76 MB (163323171) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 566.705us - TotalStorageWaitTime: 2.286ms - TotalThreadsInvoluntaryContextSwitches: 33 (33) - TotalThreadsTotalWallClockTime: 471.887ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 60.000ms - TotalThreadsVoluntaryContextSwitches: 28 (28) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 228.984ms - ExecTreeExecTime: 228.110ms - OpenTime: 160.388ms - ExecTreeOpenTime: 115.311us - PrepareTime: 1.193ms - ExecTreePrepareTime: 150.948us KrpcDataStreamSender (dst_id=72):(Total: 489.906us, non-child: 489.906us, % non-child: 100.00%) - BytesSent: 2.86 KB (2932) - EosSent: 3 (3) - OverallThroughput: 5.71 MB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 144.510us - UncompressedRowBatchSize: 6.06 KB (6205) HDFS_SCAN_NODE (id=6):(Total: 228.567ms, non-child: 228.567ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 465.32 KB (476485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 465.32 KB (476485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 465.32 KB (476485) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 8.678ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 849.29 KB (869668) - PerReadThreadRawHdfsThroughput: 631.48 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 60.466ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 73.05K (73049) - RowsReturned: 365 (365) - RowsReturnedRate: 1.60 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 5 (5) - ScannerThreadsTotalWallClockTime: 82.532ms - MaterializeTupleTime(*): 17.481ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 10 (10) - TotalRawHdfsOpenFileTime(*): 30.540us - TotalRawHdfsReadTime(*): 719.594us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 153.825ms, non-child: 153.825ms, % non-child: 100.00%) - CodegenTime: 6.145ms - CompileTime: 3.100ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 20 (20) - NumInstructions: 319 (319) - OptimizationTime: 80.029ms - PeakMemoryUsage: 159.50 KB (163328) - PrepareTime: 70.137ms Fragment F01: Instance 3f4b6afbed1991fc:3c23055700000001 (host=XXX:22001):(Total: 390.626ms, non-child: 7.743ms, % non-child: 1.98%) Hdfs split stats (:<# splits>/): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 398.534ms - Prepare Finished: 9.155ms (9.155ms) - Open Finished: 169.559ms (160.404ms) - First Batch Produced: 375.782ms (206.223ms) - First Batch Sent: 375.988ms (206.033us) - ExecInternal Finished: 398.534ms (22.545ms) MemoryUsage(500.000ms): 55.69 KB ThreadUsage(500.000ms): 2 - AverageThreadTokens: 2.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 900.98 KB (922601) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 155.76 MB (163323171) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 566.705us - TotalStorageWaitTime: 2.286ms - TotalThreadsInvoluntaryContextSwitches: 33 (33) - TotalThreadsTotalWallClockTime: 471.887ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 60.000ms - TotalThreadsVoluntaryContextSwitches: 28 (28) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 228.984ms - ExecTreeExecTime: 228.110ms - OpenTime: 160.388ms - ExecTreeOpenTime: 115.311us - PrepareTime: 1.193ms - ExecTreePrepareTime: 150.948us KrpcDataStreamSender (dst_id=72):(Total: 489.906us, non-child: 489.906us, % non-child: 100.00%) - BytesSent: 2.86 KB (2932) - EosSent: 3 (3) - OverallThroughput: 5.71 MB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 144.510us - UncompressedRowBatchSize: 6.06 KB (6205) HDFS_SCAN_NODE (id=6):(Total: 228.567ms, non-child: 228.567ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0 - FooterProcessingTime: (Avg: 228.250us ; Min: 228.250us ; Max: 228.250us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 465.32 KB (476485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 465.32 KB (476485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 465.32 KB (476485) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 8.678ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 849.29 KB (869668) - PerReadThreadRawHdfsThroughput: 631.48 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 60.466ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 73.05K (73049) - RowsReturned: 365 (365) - RowsReturnedRate: 1.60 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 5 (5) - ScannerThreadsTotalWallClockTime: 82.532ms - MaterializeTupleTime(*): 17.481ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 10 (10) - TotalRawHdfsOpenFileTime(*): 30.540us - TotalRawHdfsReadTime(*): 719.594us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 153.825ms, non-child: 153.825ms, % non-child: 100.00%) - CodegenTime: 6.145ms - CompileTime: 3.100ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 20 (20) - NumInstructions: 319 (319) - OptimizationTime: 80.029ms - PeakMemoryUsage: 159.50 KB (163328) - PrepareTime: 70.137ms Averaged Fragment F02:(Total: 1s881ms, non-child: 238.118ms, % non-child: 12.65%) split sizes: min: 5.48 MB, max: 5.48 MB, avg: 5.48 MB, stddev: 0 completion times: min:1s903ms max:1s903ms mean: 1s903ms stddev:0.000ns execution rates: min:2.88 MB/sec max:2.88 MB/sec mean:2.88 MB/sec stddev:0.09 B/sec num instances: 1 - AverageThreadTokens: 1.50 - BloomFilterBytes: 0 - PeakMemoryUsage: 3.93 MB (4126028) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 287.17 MB (301124571) - RowsProduced: 47.71K (47714) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 214.039ms - TotalStorageWaitTime: 12.888ms - TotalThreadsInvoluntaryContextSwitches: 83 (83) - TotalThreadsTotalWallClockTime: 2s541ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 176.000ms - TotalThreadsVoluntaryContextSwitches: 169 (169) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 1.00 MB (1048576) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 857.984ms - ExecTreeExecTime: 616.557ms - OpenTime: 1s005ms - ExecTreeOpenTime: 172.754us - PrepareTime: 18.057ms - ExecTreePrepareTime: 169.066us KrpcDataStreamSender (dst_id=73):(Total: 24.548ms, non-child: 24.548ms, % non-child: 100.00%) - BytesSent: 916.45 KB (938440) - EosSent: 3 (3) - OverallThroughput: 36.46 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 47.71K (47714) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 24.404ms - UncompressedRowBatchSize: 1.32 MB (1383706) HDFS_SCAN_NODE (id=4):(Total: 617.025ms, non-child: 617.025ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 1.53 MB (1599321) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.53 MB (1599321) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.53 MB (1599321) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 54.830ms - MaxCompressedTextFileLength: 0 - NumColumns: 5 (5) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.87 MB (3004988) - PerReadThreadRawHdfsThroughput: 983.19 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 435.628ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 100.00K (100000) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 77.33 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 45 (45) - ScannerThreadsTotalWallClockTime: 677.708ms - MaterializeTupleTime(*): 335.661ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 60.000ms - ScannerThreadsVoluntaryContextSwitches: 33 (33) - TotalRawHdfsOpenFileTime(*): 31.432us - TotalRawHdfsReadTime(*): 1.551ms - TotalReadThroughput: 780.92 KB/sec Filter 6 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 1s002ms, non-child: 1s002ms, % non-child: 100.00%) - CodegenTime: 14.016ms - CompileTime: 194.604ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 54 (54) - NumInstructions: 884 (884) - OptimizationTime: 691.063ms - PeakMemoryUsage: 442.00 KB (452608) - PrepareTime: 115.925ms Fragment F02: Instance 3f4b6afbed1991fc:3c23055700000002 (host=XXX:22001):(Total: 1s881ms, non-child: 238.118ms, % non-child: 12.65%) Hdfs split stats (:<# splits>/): 0:1/5.48 MB Fragment Instance Lifecycle Event Timeline: 1s890ms - Prepare Finished: 27.040ms (27.040ms) - Open Finished: 1s032ms (1s005ms) - First Batch Produced: 1s374ms (341.471ms) - First Batch Sent: 1s380ms (6.496ms) - ExecInternal Finished: 1s890ms (510.010ms) MemoryUsage(500.000ms): 1.46 MB, 1.03 MB, 2.88 MB, 3.74 MB ThreadUsage(500.000ms): 1, 1, 2, 2 - AverageThreadTokens: 1.50 - BloomFilterBytes: 0 - PeakMemoryUsage: 3.93 MB (4126028) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 287.17 MB (301124571) - RowsProduced: 47.71K (47714) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 214.039ms - TotalStorageWaitTime: 12.888ms - TotalThreadsInvoluntaryContextSwitches: 83 (83) - TotalThreadsTotalWallClockTime: 2s541ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 176.000ms - TotalThreadsVoluntaryContextSwitches: 169 (169) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 1.00 MB (1048576) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 857.984ms - ExecTreeExecTime: 616.557ms - OpenTime: 1s005ms - ExecTreeOpenTime: 172.754us - PrepareTime: 18.057ms - ExecTreePrepareTime: 169.066us KrpcDataStreamSender (dst_id=73):(Total: 24.548ms, non-child: 24.548ms, % non-child: 100.00%) - BytesSent: 916.45 KB (938440) - EosSent: 3 (3) - OverallThroughput: 36.46 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 47.71K (47714) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 24.404ms - UncompressedRowBatchSize: 1.32 MB (1383706) HDFS_SCAN_NODE (id=4):(Total: 617.025ms, non-child: 617.025ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/5.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [6]), waited for 43ms Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 1.53 MB, 1.53 MB - FooterProcessingTime: (Avg: 4.914ms ; Min: 4.914ms ; Max: 4.914ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 1.53 MB (1599321) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.53 MB (1599321) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.53 MB (1599321) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 54.830ms - MaxCompressedTextFileLength: 0 - NumColumns: 5 (5) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.87 MB (3004988) - PerReadThreadRawHdfsThroughput: 983.19 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 435.628ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 100.00K (100000) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 77.33 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 45 (45) - ScannerThreadsTotalWallClockTime: 677.708ms - MaterializeTupleTime(*): 335.661ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 60.000ms - ScannerThreadsVoluntaryContextSwitches: 33 (33) - TotalRawHdfsOpenFileTime(*): 31.432us - TotalRawHdfsReadTime(*): 1.551ms - TotalReadThroughput: 780.92 KB/sec Filter 6 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 1s002ms, non-child: 1s002ms, % non-child: 100.00%) - CodegenTime: 14.016ms - CompileTime: 194.604ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 54 (54) - NumInstructions: 884 (884) - OptimizationTime: 691.063ms - PeakMemoryUsage: 442.00 KB (452608) - PrepareTime: 115.925ms Averaged Fragment F03:(Total: 1s556ms, non-child: 64.492ms, % non-child: 4.14%) split sizes: min: 1.16 MB, max: 1.16 MB, avg: 1.16 MB, stddev: 0 completion times: min:1s595ms max:1s595ms mean: 1s595ms stddev:0.000ns execution rates: min:745.66 KB/sec max:745.66 KB/sec mean:745.66 KB/sec stddev:0.74 B/sec num instances: 1 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.92 MB (2010078) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 257.85 MB (270380150) - RowsProduced: 7.32K (7317) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 34.607ms - TotalStorageWaitTime: 7.668ms - TotalThreadsInvoluntaryContextSwitches: 75 (75) - TotalThreadsTotalWallClockTime: 2s086ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 128.000ms - TotalThreadsVoluntaryContextSwitches: 128 (128) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 661.393ms - ExecTreeExecTime: 610.003ms - OpenTime: 876.965ms - ExecTreeOpenTime: 142.485us - PrepareTime: 18.318ms - ExecTreePrepareTime: 6.237ms KrpcDataStreamSender (dst_id=74):(Total: 16.343ms, non-child: 16.343ms, % non-child: 100.00%) - BytesSent: 249.01 KB (254985) - EosSent: 3 (3) - OverallThroughput: 14.88 MB/sec - PeakMemoryUsage: 7.24 KB (7416) - RowsReturned: 7.32K (7317) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.201ms - UncompressedRowBatchSize: 641.02 KB (656402) HDFS_SCAN_NODE (id=5):(Total: 622.645ms, non-child: 622.645ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 501.31 KB (513343) - BytesReadDataNodeCache: 0 - BytesReadLocal: 501.31 KB (513343) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 501.31 KB (513343) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 170.674ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.90 MB (1992555) - PerReadThreadRawHdfsThroughput: 599.93 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 481.810ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 50.00K (50000) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 11.75 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 22 (22) - ScannerThreadsTotalWallClockTime: 547.929ms - MaterializeTupleTime(*): 267.615ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 24.000ms - ScannerThreadsVoluntaryContextSwitches: 39 (39) - TotalRawHdfsOpenFileTime(*): 44.893us - TotalRawHdfsReadTime(*): 816.028us - TotalReadThroughput: 334.21 KB/sec CodeGen:(Total: 853.255ms, non-child: 853.255ms, % non-child: 100.00%) - CodegenTime: 23.513ms - CompileTime: 226.305ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 45 (45) - NumInstructions: 682 (682) - OptimizationTime: 534.026ms - PeakMemoryUsage: 341.00 KB (349184) - PrepareTime: 92.400ms Fragment F03: Instance 3f4b6afbed1991fc:3c23055700000003 (host=XXX:22001):(Total: 1s556ms, non-child: 64.492ms, % non-child: 4.14%) Hdfs split stats (:<# splits>/): 0:1/1.16 MB Fragment Instance Lifecycle Event Timeline: 1s566ms - Prepare Finished: 28.326ms (28.326ms) - Open Finished: 905.301ms (876.974ms) - First Batch Produced: 1s328ms (423.369ms) - First Batch Sent: 1s329ms (1.115ms) - ExecInternal Finished: 1s566ms (236.905ms) MemoryUsage(500.000ms): 356.24 KB, 15.24 KB, 1.49 MB ThreadUsage(500.000ms): 1, 1, 2 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.92 MB (2010078) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 257.85 MB (270380150) - RowsProduced: 7.32K (7317) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 34.607ms - TotalStorageWaitTime: 7.668ms - TotalThreadsInvoluntaryContextSwitches: 75 (75) - TotalThreadsTotalWallClockTime: 2s086ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 128.000ms - TotalThreadsVoluntaryContextSwitches: 128 (128) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 661.393ms - ExecTreeExecTime: 610.003ms - OpenTime: 876.965ms - ExecTreeOpenTime: 142.485us - PrepareTime: 18.318ms - ExecTreePrepareTime: 6.237ms KrpcDataStreamSender (dst_id=74):(Total: 16.343ms, non-child: 16.343ms, % non-child: 100.00%) - BytesSent: 249.01 KB (254985) - EosSent: 3 (3) - OverallThroughput: 14.88 MB/sec - PeakMemoryUsage: 7.24 KB (7416) - RowsReturned: 7.32K (7317) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 16.201ms - UncompressedRowBatchSize: 641.02 KB (656402) HDFS_SCAN_NODE (id=5):(Total: 622.645ms, non-child: 622.645ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/1.16 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 501.31 KB - FooterProcessingTime: (Avg: 1.780ms ; Min: 1.780ms ; Max: 1.780ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 501.31 KB (513343) - BytesReadDataNodeCache: 0 - BytesReadLocal: 501.31 KB (513343) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 501.31 KB (513343) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 170.674ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.90 MB (1992555) - PerReadThreadRawHdfsThroughput: 599.93 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 481.810ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 50.00K (50000) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 11.75 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 22 (22) - ScannerThreadsTotalWallClockTime: 547.929ms - MaterializeTupleTime(*): 267.615ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 24.000ms - ScannerThreadsVoluntaryContextSwitches: 39 (39) - TotalRawHdfsOpenFileTime(*): 44.893us - TotalRawHdfsReadTime(*): 816.028us - TotalReadThroughput: 334.21 KB/sec CodeGen:(Total: 853.255ms, non-child: 853.255ms, % non-child: 100.00%) - CodegenTime: 23.513ms - CompileTime: 226.305ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 45 (45) - NumInstructions: 682 (682) - OptimizationTime: 534.026ms - PeakMemoryUsage: 341.00 KB (349184) - PrepareTime: 92.400ms Averaged Fragment F04:(Total: 4s826ms, non-child: 159.991ms, % non-child: 3.31%) split sizes: min: 7.48 MB, max: 7.48 MB, avg: 7.48 MB, stddev: 0 completion times: min:4s849ms max:4s849ms mean: 4s849ms stddev:0.000ns execution rates: min:1.54 MB/sec max:1.54 MB/sec mean:1.54 MB/sec stddev:0.24 B/sec num instances: 1 - AverageThreadTokens: 1.90 - BloomFilterBytes: 0 - PeakMemoryUsage: 10.23 MB (10724181) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 137.20K (137200) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 38.066ms - TotalStorageWaitTime: 6.358ms - TotalThreadsInvoluntaryContextSwitches: 480 (480) - TotalThreadsTotalWallClockTime: 8s844ms - TotalThreadsSysTime: 16.000ms - TotalThreadsUserTime: 848.000ms - TotalThreadsVoluntaryContextSwitches: 265 (265) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 4s098ms - ExecTreeExecTime: 3s826ms - OpenTime: 661.723ms - ExecTreeOpenTime: 96.510us - PrepareTime: 66.187ms - ExecTreePrepareTime: 20.036ms KrpcDataStreamSender (dst_id=76):(Total: 144.162ms, non-child: 144.162ms, % non-child: 100.00%) - BytesSent: 2.90 MB (3043464) - EosSent: 3 (3) - OverallThroughput: 20.13 MB/sec - PeakMemoryUsage: 93.35 KB (95592) - RowsReturned: 137.20K (137200) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 99.274ms - UncompressedRowBatchSize: 7.46 MB (7820400) HDFS_SCAN_NODE (id=2):(Total: 3s866ms, non-child: 3s866ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.54 MB (7903345) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.54 MB (7903345) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.54 MB (7903345) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 9.258ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.93 MB (10416488) - PerReadThreadRawHdfsThroughput: 2.99 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 3s813ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 1.92M (1920800) - RowsReturned: 137.20K (137200) - RowsReturnedRate: 35.49 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 399 (399) - ScannerThreadsTotalWallClockTime: 4s084ms - MaterializeTupleTime(*): 2s270ms - ScannerThreadsSysTime: 8.000ms - ScannerThreadsUserTime: 540.000ms - ScannerThreadsVoluntaryContextSwitches: 74 (74) - TotalRawHdfsOpenFileTime(*): 44.997us - TotalRawHdfsReadTime(*): 2.463ms - TotalReadThroughput: 1.51 MB/sec CodeGen:(Total: 655.964ms, non-child: 655.964ms, % non-child: 100.00%) - CodegenTime: 5.189ms - CompileTime: 79.990ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 44 (44) - NumInstructions: 769 (769) - OptimizationTime: 504.929ms - PeakMemoryUsage: 384.50 KB (393728) - PrepareTime: 66.917ms Fragment F04: Instance 3f4b6afbed1991fc:3c23055700000007 (host=XXX:22001):(Total: 4s826ms, non-child: 159.991ms, % non-child: 3.31%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB Fragment Instance Lifecycle Event Timeline: 4s836ms - Prepare Finished: 76.182ms (76.182ms) - Open Finished: 737.914ms (661.731ms) - First Batch Produced: 1s043ms (305.307ms) - First Batch Sent: 1s044ms (870.505us) - ExecInternal Finished: 4s836ms (3s792ms) MemoryUsage(500.000ms): 401.85 KB, 87.48 KB, 8.93 MB, 8.83 MB, 9.05 MB, 8.50 MB, 8.50 MB, 8.51 MB, 8.50 MB, 239.90 KB ThreadUsage(500.000ms): 1, 2, 2, 2, 2, 2, 2, 2, 2, 2 - AverageThreadTokens: 1.90 - BloomFilterBytes: 0 - PeakMemoryUsage: 10.23 MB (10724181) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 137.20K (137200) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 38.066ms - TotalStorageWaitTime: 6.358ms - TotalThreadsInvoluntaryContextSwitches: 480 (480) - TotalThreadsTotalWallClockTime: 8s844ms - TotalThreadsSysTime: 16.000ms - TotalThreadsUserTime: 848.000ms - TotalThreadsVoluntaryContextSwitches: 265 (265) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 4s098ms - ExecTreeExecTime: 3s826ms - OpenTime: 661.723ms - ExecTreeOpenTime: 96.510us - PrepareTime: 66.187ms - ExecTreePrepareTime: 20.036ms KrpcDataStreamSender (dst_id=76):(Total: 144.162ms, non-child: 144.162ms, % non-child: 100.00%) - BytesSent: 2.90 MB (3043464) - EosSent: 3 (3) - OverallThroughput: 20.13 MB/sec - PeakMemoryUsage: 93.35 KB (95592) - RowsReturned: 137.20K (137200) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 99.274ms - UncompressedRowBatchSize: 7.46 MB (7820400) HDFS_SCAN_NODE (id=2):(Total: 3s866ms, non-child: 3s866ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 129.96 KB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB - FooterProcessingTime: (Avg: 44.137ms ; Min: 44.137ms ; Max: 44.137ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.54 MB (7903345) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.54 MB (7903345) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.54 MB (7903345) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 9.258ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.93 MB (10416488) - PerReadThreadRawHdfsThroughput: 2.99 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 3s813ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 1.92M (1920800) - RowsReturned: 137.20K (137200) - RowsReturnedRate: 35.49 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 399 (399) - ScannerThreadsTotalWallClockTime: 4s084ms - MaterializeTupleTime(*): 2s270ms - ScannerThreadsSysTime: 8.000ms - ScannerThreadsUserTime: 540.000ms - ScannerThreadsVoluntaryContextSwitches: 74 (74) - TotalRawHdfsOpenFileTime(*): 44.997us - TotalRawHdfsReadTime(*): 2.463ms - TotalReadThroughput: 1.51 MB/sec CodeGen:(Total: 655.964ms, non-child: 655.964ms, % non-child: 100.00%) - CodegenTime: 5.189ms - CompileTime: 79.990ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 44 (44) - NumInstructions: 769 (769) - OptimizationTime: 504.929ms - PeakMemoryUsage: 384.50 KB (393728) - PrepareTime: 66.917ms Averaged Fragment F06:(Total: 7s547ms, non-child: 1s955ms, % non-child: 25.92%) split sizes: min: 7.48 MB, max: 7.48 MB, avg: 7.48 MB, stddev: 0 completion times: min:7s570ms max:7s570ms mean: 7s570ms stddev:0.000ns execution rates: min:1012.08 KB/sec max:1012.08 KB/sec mean:1012.08 KB/sec stddev:0.47 B/sec num instances: 1 - AverageThreadTokens: 2.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.17 MB (9616839) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1.92M (1920800) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 67.077ms - TotalStorageWaitTime: 6.661us - TotalThreadsInvoluntaryContextSwitches: 2.91K (2908) - TotalThreadsTotalWallClockTime: 14s769ms - TotalThreadsSysTime: 12.000ms - TotalThreadsUserTime: 1s728ms - TotalThreadsVoluntaryContextSwitches: 1.80K (1802) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 7s361ms - ExecTreeExecTime: 3s797ms - OpenTime: 166.077ms - ExecTreeOpenTime: 81.760us - PrepareTime: 16.068ms - ExecTreePrepareTime: 119.021us KrpcDataStreamSender (dst_id=78):(Total: 1s631ms, non-child: 1s631ms, % non-child: 100.00%) - BytesSent: 14.67 MB (15378251) - EosSent: 3 (3) - OverallThroughput: 8.99 MB/sec - PeakMemoryUsage: 160.78 KB (164640) - RowsReturned: 1.92M (1920800) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1s631ms - UncompressedRowBatchSize: 23.81 MB (24970400) HDFS_SCAN_NODE (id=3):(Total: 3s794ms, non-child: 3s794ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.51 MB (7871794) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.51 MB (7871794) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.51 MB (7871794) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 25.000ms - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9443592) - PerReadThreadRawHdfsThroughput: 3.46 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 30.813ms - RowBatchQueuePutWaitTime: 6s948ms - RowsRead: 1.92M (1920800) - RowsReturned: 1.92M (1920800) - RowsReturnedRate: 506.26 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 39 (39) - ScannerThreadsTotalWallClockTime: 7s241ms - MaterializeTupleTime(*): 224.301ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 156.000ms - ScannerThreadsVoluntaryContextSwitches: 1.75K (1753) - TotalRawHdfsOpenFileTime(*): 17.366us - TotalRawHdfsReadTime(*): 2.116ms - TotalReadThroughput: 1.00 MB/sec CodeGen:(Total: 165.560ms, non-child: 165.560ms, % non-child: 100.00%) - CodegenTime: 601.864us - CompileTime: 81.726ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 10.320ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 72.973ms Fragment F06: Instance 3f4b6afbed1991fc:3c2305570000000b (host=XXX:22001):(Total: 7s547ms, non-child: 1s955ms, % non-child: 25.92%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB Fragment Instance Lifecycle Event Timeline: 7s557ms - Prepare Finished: 29.463ms (29.463ms) - Open Finished: 195.549ms (166.085ms) - First Batch Produced: 246.631ms (51.081ms) - First Batch Sent: 247.082ms (451.630us) - ExecInternal Finished: 7s557ms (7s310ms) MemoryUsage(500.000ms): 9.14 MB, 9.17 MB, 9.01 MB, 9.12 MB, 9.15 MB, 9.16 MB, 9.16 MB, 9.14 MB, 9.17 MB, 9.17 MB, 9.14 MB, 9.16 MB, 9.11 MB, 9.15 MB, 9.16 MB ThreadUsage(500.000ms): 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 - AverageThreadTokens: 2.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.17 MB (9616839) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1.92M (1920800) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 67.077ms - TotalStorageWaitTime: 6.661us - TotalThreadsInvoluntaryContextSwitches: 2.91K (2908) - TotalThreadsTotalWallClockTime: 14s769ms - TotalThreadsSysTime: 12.000ms - TotalThreadsUserTime: 1s728ms - TotalThreadsVoluntaryContextSwitches: 1.80K (1802) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 7s361ms - ExecTreeExecTime: 3s797ms - OpenTime: 166.077ms - ExecTreeOpenTime: 81.760us - PrepareTime: 16.068ms - ExecTreePrepareTime: 119.021us KrpcDataStreamSender (dst_id=78):(Total: 1s631ms, non-child: 1s631ms, % non-child: 100.00%) - BytesSent: 14.67 MB (15378251) - EosSent: 3 (3) - OverallThroughput: 8.99 MB/sec - PeakMemoryUsage: 160.78 KB (164640) - RowsReturned: 1.92M (1920800) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1s631ms - UncompressedRowBatchSize: 23.81 MB (24970400) HDFS_SCAN_NODE (id=3):(Total: 3s794ms, non-child: 3s794ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB - FooterProcessingTime: (Avg: 138.047us ; Min: 138.047us ; Max: 138.047us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.51 MB (7871794) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.51 MB (7871794) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.51 MB (7871794) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 25.000ms - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9443592) - PerReadThreadRawHdfsThroughput: 3.46 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 30.813ms - RowBatchQueuePutWaitTime: 6s948ms - RowsRead: 1.92M (1920800) - RowsReturned: 1.92M (1920800) - RowsReturnedRate: 506.26 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 39 (39) - ScannerThreadsTotalWallClockTime: 7s241ms - MaterializeTupleTime(*): 224.301ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 156.000ms - ScannerThreadsVoluntaryContextSwitches: 1.75K (1753) - TotalRawHdfsOpenFileTime(*): 17.366us - TotalRawHdfsReadTime(*): 2.116ms - TotalReadThroughput: 1.00 MB/sec CodeGen:(Total: 165.560ms, non-child: 165.560ms, % non-child: 100.00%) - CodegenTime: 601.864us - CompileTime: 81.726ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 10.320ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 72.973ms Averaged Fragment F08:(Total: 340.617ms, non-child: 25.508ms, % non-child: 7.49%) split sizes: min: 1.73 MB, max: 1.73 MB, avg: 1.73 MB, stddev: 0 completion times: min:385.990ms max:385.990ms mean: 385.990ms stddev:0.000ns execution rates: min:4.48 MB/sec max:4.48 MB/sec mean:4.48 MB/sec stddev:0.50 B/sec num instances: 1 - AverageThreadTokens: 2.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.26 MB (1322595) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 147.57 MB (154737070) - RowsProduced: 18.00K (18000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 9.217ms - TotalStorageWaitTime: 3.294ms - TotalThreadsInvoluntaryContextSwitches: 88 (88) - TotalThreadsTotalWallClockTime: 372.925ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 44.000ms - TotalThreadsVoluntaryContextSwitches: 53 (53) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 109.422ms - ExecTreeExecTime: 78.536ms - OpenTime: 229.590ms - ExecTreeOpenTime: 80.417us - PrepareTime: 1.540ms - ExecTreePrepareTime: 146.390us KrpcDataStreamSender (dst_id=79):(Total: 10.266ms, non-child: 10.266ms, % non-child: 100.00%) - BytesSent: 263.99 KB (270323) - EosSent: 3 (3) - OverallThroughput: 25.11 MB/sec - PeakMemoryUsage: 15.35 KB (15720) - RowsReturned: 18.00K (18000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.108ms - UncompressedRowBatchSize: 861.33 KB (882000) HDFS_SCAN_NODE (id=7):(Total: 78.905ms, non-child: 78.905ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 277.86 KB (284524) - BytesReadDataNodeCache: 0 - BytesReadLocal: 277.86 KB (284524) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 277.86 KB (284524) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 54.315us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.21 MB (1272668) - PerReadThreadRawHdfsThroughput: 371.43 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 22.857ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 18.00K (18000) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 228.12 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 3 (3) - ScannerThreadsTotalWallClockTime: 33.924ms - MaterializeTupleTime(*): 5.384ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 4.000ms - ScannerThreadsVoluntaryContextSwitches: 5 (5) - TotalRawHdfsOpenFileTime(*): 29.380us - TotalRawHdfsReadTime(*): 730.543us - TotalReadThroughput: 200.00 KB/sec CodeGen:(Total: 225.937ms, non-child: 225.937ms, % non-child: 100.00%) - CodegenTime: 44.510ms - CompileTime: 11.324ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 84.785ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 129.318ms Fragment F08: Instance 3f4b6afbed1991fc:3c2305570000000c (host=XXX:22001):(Total: 340.617ms, non-child: 25.508ms, % non-child: 7.49%) Hdfs split stats (:<# splits>/): 0:1/1.73 MB Fragment Instance Lifecycle Event Timeline: 369.341ms - Prepare Finished: 30.323ms (30.323ms) - Open Finished: 259.922ms (229.599ms) - First Batch Produced: 338.135ms (78.212ms) - First Batch Sent: 338.815ms (679.748us) - ExecInternal Finished: 369.341ms (30.526ms) MemoryUsage(500.000ms): 151.76 KB ThreadUsage(500.000ms): 2 - AverageThreadTokens: 2.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.26 MB (1322595) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 147.57 MB (154737070) - RowsProduced: 18.00K (18000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 9.217ms - TotalStorageWaitTime: 3.294ms - TotalThreadsInvoluntaryContextSwitches: 88 (88) - TotalThreadsTotalWallClockTime: 372.925ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 44.000ms - TotalThreadsVoluntaryContextSwitches: 53 (53) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 109.422ms - ExecTreeExecTime: 78.536ms - OpenTime: 229.590ms - ExecTreeOpenTime: 80.417us - PrepareTime: 1.540ms - ExecTreePrepareTime: 146.390us KrpcDataStreamSender (dst_id=79):(Total: 10.266ms, non-child: 10.266ms, % non-child: 100.00%) - BytesSent: 263.99 KB (270323) - EosSent: 3 (3) - OverallThroughput: 25.11 MB/sec - PeakMemoryUsage: 15.35 KB (15720) - RowsReturned: 18.00K (18000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.108ms - UncompressedRowBatchSize: 861.33 KB (882000) HDFS_SCAN_NODE (id=7):(Total: 78.905ms, non-child: 78.905ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/1.73 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 100.00 KB - FooterProcessingTime: (Avg: 221.191us ; Min: 221.191us ; Max: 221.191us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 277.86 KB (284524) - BytesReadDataNodeCache: 0 - BytesReadLocal: 277.86 KB (284524) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 277.86 KB (284524) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 54.315us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.21 MB (1272668) - PerReadThreadRawHdfsThroughput: 371.43 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 22.857ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 18.00K (18000) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 228.12 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 3 (3) - ScannerThreadsTotalWallClockTime: 33.924ms - MaterializeTupleTime(*): 5.384ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 4.000ms - ScannerThreadsVoluntaryContextSwitches: 5 (5) - TotalRawHdfsOpenFileTime(*): 29.380us - TotalRawHdfsReadTime(*): 730.543us - TotalReadThroughput: 200.00 KB/sec CodeGen:(Total: 225.937ms, non-child: 225.937ms, % non-child: 100.00%) - CodegenTime: 44.510ms - CompileTime: 11.324ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 84.785ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 129.318ms Averaged Fragment F17:(Total: 7s633ms, non-child: 464.053ms, % non-child: 6.08%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s630ms max:7s679ms mean: 7s650ms stddev:20.870ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 27.69 MB (29035468) - PeakReservation: 26.94 MB (28246016) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 438 (438) - TotalNetworkReceiveTime: 1s422ms - TotalNetworkSendTime: 2.498ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 477 (477) - TotalThreadsTotalWallClockTime: 7s632ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 1s077ms - TotalThreadsVoluntaryContextSwitches: 162 (162) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 9.157ms - ExecTreeExecTime: 5.054ms - OpenTime: 7s574ms - ExecTreeOpenTime: 1s906ms - PrepareTime: 50.467ms - ExecTreePrepareTime: 1.074ms KrpcDataStreamSender (dst_id=90):(Total: 22.266ms, non-child: 22.266ms, % non-child: 100.00%) - BytesSent: 34.74 KB (35571) - EosSent: 3 (3) - OverallThroughput: 7.40 MB/sec - PeakMemoryUsage: 85.76 KB (87816) - RowsReturned: 438 (438) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 579.752us - UncompressedRowBatchSize: 110.07 KB (112707) AGGREGATION_NODE (id=28):(Total: 1s913ms, non-child: 3.138ms, % non-child: 0.16%) - GetResultsTime: 321.363us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 5.11 MB (5360768) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 438 (438) - RowsReturnedRate: 235.00 /sec - StreamingTime: 1.421ms Buffer pool: - AllocTime: 33.441us - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - PeakReservation: 5.00 MB (5242880) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=27):(Total: 1s909ms, non-child: 15.347ms, % non-child: 0.80%) - BuildRows: 18.00K (18000) - BuildTime: 32.397ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 439 (439) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.447ms - RowsReturned: 439 (439) - RowsReturnedRate: 235.00 /sec Buffer pool: - AllocTime: 58.909us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=27): - BuildRowsPartitionTime: 19.205ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 12.620ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=89):(Total: 16.297ms, non-child: 16.297ms, % non-child: 100.00%) - ConvertRowBatchTime: 16.128ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 2.64 M/sec Buffer pool: - AllocTime: 108.240us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 84.848us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.710ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=26):(Total: 1s894ms, non-child: 215.296ms, % non-child: 11.36%) - BuildRows: 640.27K (640266) - BuildTime: 211.482ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 443 (443) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 71.873us - RowsReturned: 439 (439) - RowsReturnedRate: 237.00 /sec Buffer pool: - AllocTime: 259.694us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=26): - BuildRowsPartitionTime: 105.802ms - BuildRowsPartitioned: 640.27K (640266) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 105.007ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=88):(Total: 1s679ms, non-child: 1s679ms, % non-child: 100.00%) - ConvertRowBatchTime: 248.004ms - PeakMemoryUsage: 5.28 MB (5537792) - RowsReturned: 640.27K (640266) - RowsReturnedRate: 401.76 K/sec Buffer pool: - AllocTime: 1.118ms - CumulativeAllocationBytes: 9.17 MB (9614677) - CumulativeAllocations: 392 (392) - PeakReservation: 5.28 MB (5537792) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 5.28 MB (5537792) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.94 MB (8323466) - TotalGetBatchTime: 1s422ms - DataArrivalTimer: 1s418ms SenderSide: - DeserializeRowBatchTime: 19.302ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=87):(Total: 151.119us, non-child: 151.119us, % non-child: 100.00%) - ConvertRowBatchTime: 79.258us - PeakMemoryUsage: 168.00 KB (172032) - RowsReturned: 443 (443) - RowsReturnedRate: 2.94 M/sec Buffer pool: - AllocTime: 27.210us - CumulativeAllocationBytes: 168.00 KB (172032) - CumulativeAllocations: 11 (11) - PeakReservation: 168.00 KB (172032) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 168.00 KB (172032) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 92.19 KB (94399) - TotalGetBatchTime: 21.782us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 369.010us - NumBatchesArrived: 5 (5) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 5 (5) - NumBatchesReceived: 5 (5) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 5s234ms, non-child: 5s234ms, % non-child: 100.00%) - CodegenTime: 611.272ms - CompileTime: 292.519ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 178 (178) - NumInstructions: 10.72K (10716) - OptimizationTime: 4s688ms - PeakMemoryUsage: 5.23 MB (5486592) - PrepareTime: 241.740ms Fragment F17: Instance 3f4b6afbed1991fc:3c2305570000001d (host=XXX:22000):(Total: 7s675ms, non-child: 299.144ms, % non-child: 3.90%) Fragment Instance Lifecycle Event Timeline: 7s676ms - Prepare Finished: 60.400ms (60.400ms) - Open Finished: 7s669ms (7s609ms) - First Batch Produced: 7s673ms (3.787ms) - First Batch Sent: 7s673ms (2.641us) - ExecInternal Finished: 7s676ms (3.417ms) MemoryUsage(500.000ms): 217.38 KB, 7.19 MB, 7.99 MB, 8.23 MB, 8.60 MB, 9.02 MB, 9.49 MB, 10.01 MB, 10.48 MB, 10.94 MB, 6.27 MB, 11.96 MB, 11.96 MB, 11.96 MB, 11.96 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 27.40 MB (28732364) - PeakReservation: 26.94 MB (28246016) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 438 (438) - TotalNetworkReceiveTime: 1s657ms - TotalNetworkSendTime: 861.564us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 391 (391) - TotalThreadsTotalWallClockTime: 7s650ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s080ms - TotalThreadsVoluntaryContextSwitches: 122 (122) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 7.212ms - ExecTreeExecTime: 4.903ms - OpenTime: 7s609ms - ExecTreeOpenTime: 2s169ms - PrepareTime: 58.971ms - ExecTreePrepareTime: 1.847ms KrpcDataStreamSender (dst_id=90):(Total: 10.645ms, non-child: 10.645ms, % non-child: 100.00%) - BytesSent: 34.69 KB (35520) - EosSent: 3 (3) - OverallThroughput: 3.18 MB/sec - PeakMemoryUsage: 85.76 KB (87816) - RowsReturned: 438 (438) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 594.447us - UncompressedRowBatchSize: 109.93 KB (112566) AGGREGATION_NODE (id=28):(Total: 2s176ms, non-child: 2.409ms, % non-child: 0.11%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 285.595us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 9 (9) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 5.11 MB (5360768) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 438 (438) - RowsReturnedRate: 201.00 /sec - StreamingTime: 1.394ms Buffer pool: - AllocTime: 35.335us - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - PeakReservation: 5.00 MB (5242880) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=27):(Total: 2s174ms, non-child: 21.125ms, % non-child: 0.97%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 30.807ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 438 (438) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 92.216us - RowsReturned: 438 (438) - RowsReturnedRate: 201.00 /sec Buffer pool: - AllocTime: 74.987us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=27): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 26.035ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 4.292ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=89):(Total: 2.848ms, non-child: 2.848ms, % non-child: 100.00%) - ConvertRowBatchTime: 2.689ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 6.32 M/sec Buffer pool: - AllocTime: 108.067us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 80.302us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.568ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=26):(Total: 2s153ms, non-child: 246.451ms, % non-child: 11.45%) ExecOption: Probe Side Codegen Enabled - BuildRows: 641.22K (641220) - BuildTime: 241.396ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 438 (438) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 88.991us - RowsReturned: 438 (438) - RowsReturnedRate: 203.00 /sec Buffer pool: - AllocTime: 231.234us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=26): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 107.651ms - BuildRowsPartitioned: 641.22K (641220) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 133.085ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=88):(Total: 1s906ms, non-child: 250.913ms, % non-child: 13.16%) - ConvertRowBatchTime: 248.386ms - PeakMemoryUsage: 5.02 MB (5259264) - RowsReturned: 641.22K (641220) - RowsReturnedRate: 336.33 K/sec Buffer pool: - AllocTime: 1.131ms - CumulativeAllocationBytes: 9.19 MB (9633792) - CumulativeAllocations: 392 (392) - PeakReservation: 5.02 MB (5259264) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 5.02 MB (5259264) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 457.49 KB, 1.14 MB, 1.34 MB, 1.67 MB, 2.03 MB, 2.44 MB, 2.88 MB, 3.29 MB, 3.70 MB, 4.18 MB, 4.67 MB, 5.28 MB, 6.21 MB, 7.31 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.95 MB (8335860) - TotalGetBatchTime: 1s656ms - DataArrivalTimer: 1s655ms SenderSide: - DeserializeRowBatchTime: 14.668ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=87):(Total: 164.467us, non-child: 164.467us, % non-child: 100.00%) - ConvertRowBatchTime: 83.905us - PeakMemoryUsage: 168.00 KB (172032) - RowsReturned: 438 (438) - RowsReturnedRate: 2.66 M/sec Buffer pool: - AllocTime: 31.143us - CumulativeAllocationBytes: 168.00 KB (172032) - CumulativeAllocations: 12 (12) - PeakReservation: 168.00 KB (172032) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 168.00 KB (172032) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 91.11 KB (93294) - TotalGetBatchTime: 26.404us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 372.004us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 5s188ms, non-child: 5s188ms, % non-child: 100.00%) - CodegenTime: 237.548ms - CompileTime: 292.278ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 178 (178) - NumInstructions: 10.72K (10716) - OptimizationTime: 4s785ms - PeakMemoryUsage: 5.23 MB (5486592) - PrepareTime: 78.489ms Instance 3f4b6afbed1991fc:3c2305570000001c (host=XXX:22002):(Total: 7s625ms, non-child: 297.657ms, % non-child: 3.90%) Fragment Instance Lifecycle Event Timeline: 7s626ms - Prepare Finished: 7.328ms (7.328ms) - Open Finished: 7s612ms (7s604ms) - First Batch Produced: 7s618ms (6.420ms) - First Batch Sent: 7s618ms (2.232us) - ExecInternal Finished: 7s626ms (8.001ms) MemoryUsage(500.000ms): 217.38 KB, 7.19 MB, 7.99 MB, 8.23 MB, 8.60 MB, 9.02 MB, 9.49 MB, 9.96 MB, 10.48 MB, 10.94 MB, 6.23 MB, 11.86 MB, 11.86 MB, 11.86 MB, 11.86 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 27.41 MB (28740556) - PeakReservation: 26.94 MB (28246016) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 479 (479) - TotalNetworkReceiveTime: 1s643ms - TotalNetworkSendTime: 5.082ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 584 (584) - TotalThreadsTotalWallClockTime: 7s655ms - TotalThreadsSysTime: 12.000ms - TotalThreadsUserTime: 1s060ms - TotalThreadsVoluntaryContextSwitches: 152 (152) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 14.427ms - ExecTreeExecTime: 7.589ms - OpenTime: 7s604ms - ExecTreeOpenTime: 2s135ms - PrepareTime: 6.279ms - ExecTreePrepareTime: 647.175us KrpcDataStreamSender (dst_id=90):(Total: 2.007ms, non-child: 2.007ms, % non-child: 100.00%) - BytesSent: 37.90 KB (38811) - EosSent: 3 (3) - OverallThroughput: 18.44 MB/sec - PeakMemoryUsage: 85.76 KB (87816) - RowsReturned: 479 (479) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 633.010us - UncompressedRowBatchSize: 120.22 KB (123103) AGGREGATION_NODE (id=28):(Total: 2s143ms, non-child: 3.977ms, % non-child: 0.19%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 412.419us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 5.11 MB (5360768) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 479 (479) - RowsReturnedRate: 223.00 /sec - StreamingTime: 1.736ms HASH_JOIN_NODE (id=27):(Total: 2s139ms, non-child: 9.640ms, % non-child: 0.45%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 16.691ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 481 (481) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 4.161ms - RowsReturned: 481 (481) - RowsReturnedRate: 224.00 /sec Buffer pool: - AllocTime: 45.104us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=27): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 11.771ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 4.157ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=89):(Total: 19.154ms, non-child: 19.154ms, % non-child: 100.00%) - ConvertRowBatchTime: 18.982ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 939.71 K/sec Buffer pool: - AllocTime: 109.941us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 85.062us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.736ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=26):(Total: 2s129ms, non-child: 182.789ms, % non-child: 8.58%) ExecOption: Probe Side Codegen Enabled - BuildRows: 639.71K (639709) - BuildTime: 179.628ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 493 (493) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 66.714us - RowsReturned: 481 (481) - RowsReturnedRate: 225.00 /sec Buffer pool: - AllocTime: 260.194us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=26): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 89.692ms - BuildRowsPartitioned: 639.71K (639709) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 89.226ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=88):(Total: 1s946ms, non-child: 313.292ms, % non-child: 16.09%) - ConvertRowBatchTime: 302.622ms - PeakMemoryUsage: 4.92 MB (5160960) - RowsReturned: 639.71K (639709) - RowsReturnedRate: 328.56 K/sec Buffer pool: - AllocTime: 1.100ms - CumulativeAllocationBytes: 9.16 MB (9601024) - CumulativeAllocations: 392 (392) - PeakReservation: 4.92 MB (5160960) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.92 MB (5160960) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 457.49 KB, 1.14 MB, 1.34 MB, 1.67 MB, 2.03 MB, 2.44 MB, 2.84 MB, 3.29 MB, 3.70 MB, 4.14 MB, 4.63 MB, 5.28 MB, 6.21 MB, 7.31 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.93 MB (8316217) - TotalGetBatchTime: 1s643ms - DataArrivalTimer: 1s633ms SenderSide: - DeserializeRowBatchTime: 14.891ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=87):(Total: 155.802us, non-child: 155.802us, % non-child: 100.00%) - ConvertRowBatchTime: 84.060us - PeakMemoryUsage: 176.00 KB (180224) - RowsReturned: 493 (493) - RowsReturnedRate: 3.16 M/sec Buffer pool: - AllocTime: 26.803us - CumulativeAllocationBytes: 176.00 KB (180224) - CumulativeAllocations: 12 (12) - PeakReservation: 176.00 KB (180224) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 176.00 KB (180224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 102.55 KB (105009) - TotalGetBatchTime: 20.214us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 407.550us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 28.729us - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - PeakReservation: 5.00 MB (5242880) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 5s182ms, non-child: 5s182ms, % non-child: 100.00%) - CodegenTime: 301.322ms - CompileTime: 299.475ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 178 (178) - NumInstructions: 10.72K (10716) - OptimizationTime: 4s657ms - PeakMemoryUsage: 5.23 MB (5486592) - PrepareTime: 224.865ms Instance 3f4b6afbed1991fc:3c2305570000001e (host=XXX:22001):(Total: 7s600ms, non-child: 795.358ms, % non-child: 10.46%) Fragment Instance Lifecycle Event Timeline: 7s628ms - Prepare Finished: 114.587ms (114.587ms) - Open Finished: 7s622ms (7s508ms) - First Batch Produced: 7s624ms (1.925ms) - First Batch Sent: 7s624ms (2.271us) - ExecInternal Finished: 7s628ms (3.898ms) MemoryUsage(500.000ms): 217.38 KB, 1.96 MB, 2.76 MB, 8.18 MB, 8.60 MB, 9.02 MB, 9.49 MB, 9.96 MB, 10.48 MB, 10.94 MB, 11.46 MB, 12.02 MB, 12.85 MB, 12.85 MB, 12.85 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 28.26 MB (29633484) - PeakReservation: 26.94 MB (28246016) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 399 (399) - TotalNetworkReceiveTime: 966.577ms - TotalNetworkSendTime: 1.550ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 457 (457) - TotalThreadsTotalWallClockTime: 7s590ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s092ms - TotalThreadsVoluntaryContextSwitches: 212 (212) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 5.831ms - ExecTreeExecTime: 2.669ms - OpenTime: 7s508ms - ExecTreeOpenTime: 1s415ms - PrepareTime: 86.150ms - ExecTreePrepareTime: 728.644us KrpcDataStreamSender (dst_id=90):(Total: 54.147ms, non-child: 54.147ms, % non-child: 100.00%) - BytesSent: 31.62 KB (32382) - EosSent: 3 (3) - OverallThroughput: 584.02 KB/sec - PeakMemoryUsage: 85.76 KB (87816) - RowsReturned: 399 (399) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 511.799us - UncompressedRowBatchSize: 100.05 KB (102452) AGGREGATION_NODE (id=28):(Total: 1s419ms, non-child: 3.029ms, % non-child: 0.21%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 266.076us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 5.11 MB (5360768) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 399 (399) - RowsReturnedRate: 281.00 /sec - StreamingTime: 1.134ms Buffer pool: - AllocTime: 36.260us - CumulativeAllocationBytes: 4.25 MB (4456448) - CumulativeAllocations: 17 (17) - PeakReservation: 5.00 MB (5242880) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.25 MB (4456448) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns HASH_JOIN_NODE (id=27):(Total: 1s416ms, non-child: 15.275ms, % non-child: 1.08%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 49.694ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 399 (399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 87.654us - RowsReturned: 399 (399) - RowsReturnedRate: 281.00 /sec Buffer pool: - AllocTime: 56.636us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=27): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 19.808ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 29.410ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=89):(Total: 26.890ms, non-child: 26.890ms, % non-child: 100.00%) - ConvertRowBatchTime: 26.714ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 669.39 K/sec Buffer pool: - AllocTime: 106.712us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 89.182us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.825ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=26):(Total: 1s400ms, non-child: 216.649ms, % non-child: 15.47%) ExecOption: Probe Side Codegen Enabled - BuildRows: 639.87K (639871) - BuildTime: 213.423ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 399 (399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 59.916us - RowsReturned: 399 (399) - RowsReturnedRate: 284.00 /sec Buffer pool: - AllocTime: 287.656us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=26): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 120.064ms - BuildRowsPartitioned: 639.87K (639871) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 92.710ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=88):(Total: 1s184ms, non-child: 218.956ms, % non-child: 18.49%) - ConvertRowBatchTime: 193.004ms - PeakMemoryUsage: 5.91 MB (6193152) - RowsReturned: 639.87K (639871) - RowsReturnedRate: 540.40 K/sec Buffer pool: - AllocTime: 1.123ms - CumulativeAllocationBytes: 9.16 MB (9609216) - CumulativeAllocations: 392 (392) - PeakReservation: 5.91 MB (6193152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 5.91 MB (6193152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 457.49 KB, 1.14 MB, 1.30 MB, 1.67 MB, 2.03 MB, 2.44 MB, 2.84 MB, 3.29 MB, 3.70 MB, 4.14 MB, 4.63 MB, 5.28 MB, 6.17 MB, 7.31 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.93 MB (8318323) - TotalGetBatchTime: 966.367ms - DataArrivalTimer: 965.135ms SenderSide: - DeserializeRowBatchTime: 28.347ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=87):(Total: 133.089us, non-child: 133.089us, % non-child: 100.00%) - ConvertRowBatchTime: 69.811us - PeakMemoryUsage: 160.00 KB (163840) - RowsReturned: 399 (399) - RowsReturnedRate: 3.00 M/sec Buffer pool: - AllocTime: 23.686us - CumulativeAllocationBytes: 160.00 KB (163840) - CumulativeAllocations: 10 (10) - PeakReservation: 160.00 KB (163840) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 160.00 KB (163840) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 82.91 KB (84896) - TotalGetBatchTime: 18.730us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 327.478us - NumBatchesArrived: 5 (5) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 5 (5) - NumBatchesReceived: 5 (5) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 5s331ms, non-child: 5s331ms, % non-child: 100.00%) - CodegenTime: 1s294ms - CompileTime: 285.805ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 178 (178) - NumInstructions: 10.72K (10716) - OptimizationTime: 4s623ms - PeakMemoryUsage: 5.23 MB (5486592) - PrepareTime: 421.866ms Averaged Fragment F15:(Total: 7s455ms, non-child: 106.384ms, % non-child: 1.43%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s468ms max:7s475ms mean: 7s472ms stddev:3.383ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.27 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.58 MB (7946496) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 443 (443) - TotalNetworkReceiveTime: 7s147ms - TotalNetworkSendTime: 8.243ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 162 (162) - TotalThreadsTotalWallClockTime: 9s406ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 310.666ms - TotalThreadsVoluntaryContextSwitches: 207 (207) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s388ms - ExecTreeExecTime: 1s377ms - OpenTime: 6s026ms - ExecTreeOpenTime: 3s901ms - PrepareTime: 39.692ms - ExecTreePrepareTime: 17.818ms KrpcDataStreamSender (dst_id=87):(Total: 3.574ms, non-child: 3.574ms, % non-child: 100.00%) - BytesSent: 35.81 KB (36672) - EosSent: 3 (3) - OverallThroughput: 14.32 MB/sec - PeakMemoryUsage: 91.44 KB (93634) - RowsReturned: 443 (443) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.161ms - UncompressedRowBatchSize: 92.19 KB (94399) HASH_JOIN_NODE (id=25):(Total: 5s300ms, non-child: 60.926ms, % non-child: 1.15%) - BuildRows: 45.73K (45733) - BuildTime: 86.190ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.61K (6605) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 541.294us - RowsReturned: 443 (443) - RowsReturnedRate: 83.00 /sec Buffer pool: - AllocTime: 89.472us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=25): - BuildRowsPartitionTime: 45.678ms - BuildRowsPartitioned: 45.73K (45733) - HashBuckets: 129.71K (129706) - HashCollisions: 0 (0) - HashTablesBuildTime: 38.880ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=86):(Total: 2s744ms, non-child: 2s744ms, % non-child: 100.00%) - ConvertRowBatchTime: 11.519ms - PeakMemoryUsage: 826.67 KB (846506) - RowsReturned: 45.73K (45733) - RowsReturnedRate: 16.76 K/sec Buffer pool: - AllocTime: 683.064us - CumulativeAllocationBytes: 4.48 MB (4702208) - CumulativeAllocations: 230 (230) - PeakReservation: 826.67 KB (846506) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 826.67 KB (846506) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2606800) - TotalGetBatchTime: 2s731ms - DataArrivalTimer: 2s716ms SenderSide: - DeserializeRowBatchTime: 13.570ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=85):(Total: 4s417ms, non-child: 4s417ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.090ms - PeakMemoryUsage: 1.38 MB (1449984) - RowsReturned: 6.61K (6605) - RowsReturnedRate: 1.72 K/sec Buffer pool: - AllocTime: 220.701us - CumulativeAllocationBytes: 1.72 MB (1807701) - CumulativeAllocations: 89 (89) - PeakReservation: 1.38 MB (1449984) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.38 MB (1449984) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 2s895ms - TotalBytesReceived: 1005.30 KB (1029431) - TotalGetBatchTime: 4s415ms - DataArrivalTimer: 4s415ms SenderSide: - DeserializeRowBatchTime: 3.015ms - NumBatchesArrived: 44 (44) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 44 (44) - NumBatchesReceived: 44 (44) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 2s045ms, non-child: 2s045ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 179.746ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s704ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 160.624ms Fragment F15: Instance 3f4b6afbed1991fc:3c23055700000018 (host=XXX:22000):(Total: 7s472ms, non-child: 90.136ms, % non-child: 1.21%) Fragment Instance Lifecycle Event Timeline: 7s474ms - Prepare Finished: 26.424ms (26.424ms) - Open Finished: 6s039ms (6s013ms) - First Batch Produced: 7s461ms (1s422ms) - First Batch Sent: 7s463ms (1.770ms) - ExecInternal Finished: 7s474ms (10.270ms) MemoryUsage(500.000ms): 1.30 MB, 1.30 MB, 1.30 MB, 511.02 KB, 5.35 MB, 5.35 MB, 5.35 MB, 5.35 MB, 5.35 MB, 5.35 MB, 6.12 MB, 6.12 MB, 6.69 MB, 7.56 MB, 7.60 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.40 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.69 MB (8058454) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 428 (428) - TotalNetworkReceiveTime: 8s477ms - TotalNetworkSendTime: 9.766ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 108 (108) - TotalThreadsTotalWallClockTime: 10s584ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 304.000ms - TotalThreadsVoluntaryContextSwitches: 188 (188) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s434ms - ExecTreeExecTime: 1s422ms - OpenTime: 6s013ms - ExecTreeOpenTime: 4s149ms - PrepareTime: 21.818ms - ExecTreePrepareTime: 10.296ms KrpcDataStreamSender (dst_id=87):(Total: 1.248ms, non-child: 1.248ms, % non-child: 100.00%) - BytesSent: 34.64 KB (35467) - EosSent: 3 (3) - OverallThroughput: 27.08 MB/sec - PeakMemoryUsage: 96.77 KB (99096) - RowsReturned: 428 (428) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.117ms - UncompressedRowBatchSize: 89.03 KB (91164) HASH_JOIN_NODE (id=25):(Total: 5s592ms, non-child: 66.238ms, % non-child: 1.18%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 45.89K (45894) - BuildTime: 175.372ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 7.09K (7089) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 575.776us - RowsReturned: 428 (428) - RowsReturnedRate: 76.00 /sec Buffer pool: - AllocTime: 96.775us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=25): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 102.645ms - BuildRowsPartitioned: 45.89K (45894) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 72.189ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=86):(Total: 2s961ms, non-child: 37.504ms, % non-child: 1.27%) - ConvertRowBatchTime: 7.574ms - PeakMemoryUsage: 480.00 KB (491520) - RowsReturned: 45.89K (45894) - RowsReturnedRate: 15.50 K/sec Buffer pool: - AllocTime: 701.318us - CumulativeAllocationBytes: 4.51 MB (4726784) - CumulativeAllocations: 232 (232) - PeakReservation: 480.00 KB (491520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 480.00 KB (491520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 222.10 KB, 510.83 KB, 888.40 KB, 1.24 MB, 1.61 MB, 2.00 MB, 2.36 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2615958) - TotalGetBatchTime: 2s952ms - DataArrivalTimer: 2s923ms SenderSide: - DeserializeRowBatchTime: 14.115ms - NumBatchesArrived: 116 (116) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 116 (116) - NumBatchesReceived: 116 (116) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=85):(Total: 5s526ms, non-child: 2.734ms, % non-child: 0.05%) - ConvertRowBatchTime: 1.144ms - PeakMemoryUsage: 1.48 MB (1556480) - RowsReturned: 7.09K (7089) - RowsReturnedRate: 1.28 K/sec Buffer pool: - AllocTime: 248.804us - CumulativeAllocationBytes: 1.85 MB (1941504) - CumulativeAllocations: 96 (96) - PeakReservation: 1.48 MB (1556480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.48 MB (1556480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411.06 KB, 1.03 MB, 1.05 MB - FirstBatchArrivalWaitTime: 4s003ms - TotalBytesReceived: 1.05 MB (1104844) - TotalGetBatchTime: 5s524ms - DataArrivalTimer: 5s523ms SenderSide: - DeserializeRowBatchTime: 3.222ms - NumBatchesArrived: 48 (48) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 48 (48) - NumBatchesReceived: 48 (48) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s788ms, non-child: 1s788ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 177.437ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s556ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 53.260ms Instance 3f4b6afbed1991fc:3c23055700000017 (host=XXX:22002):(Total: 7s470ms, non-child: 78.121ms, % non-child: 1.05%) Fragment Instance Lifecycle Event Timeline: 7s471ms - Prepare Finished: 14.957ms (14.957ms) - Open Finished: 6s106ms (6s091ms) - First Batch Produced: 7s460ms (1s353ms) - First Batch Sent: 7s461ms (1.310ms) - ExecInternal Finished: 7s471ms (10.452ms) MemoryUsage(500.000ms): 1.30 MB, 1.30 MB, 1.30 MB, 1.73 MB, 5.66 MB, 5.66 MB, 5.66 MB, 5.66 MB, 5.66 MB, 5.66 MB, 6.12 MB, 6.12 MB, 6.66 MB, 7.38 MB, 7.38 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.40 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.46 MB (7820886) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 405 (405) - TotalNetworkReceiveTime: 8s087ms - TotalNetworkSendTime: 9.734ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 183 (183) - TotalThreadsTotalWallClockTime: 10s296ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 304.000ms - TotalThreadsVoluntaryContextSwitches: 187 (187) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s365ms - ExecTreeExecTime: 1s353ms - OpenTime: 6s091ms - ExecTreeOpenTime: 3s953ms - PrepareTime: 13.303ms - ExecTreePrepareTime: 321.308us KrpcDataStreamSender (dst_id=87):(Total: 5.646ms, non-child: 5.646ms, % non-child: 100.00%) - BytesSent: 32.70 KB (33487) - EosSent: 3 (3) - OverallThroughput: 5.66 MB/sec - PeakMemoryUsage: 80.77 KB (82712) - RowsReturned: 405 (405) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.075ms - UncompressedRowBatchSize: 84.15 KB (86174) HASH_JOIN_NODE (id=25):(Total: 5s307ms, non-child: 18.485ms, % non-child: 0.35%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 45.73K (45734) - BuildTime: 29.705ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.12K (6120) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 534.620us - RowsReturned: 405 (405) - RowsReturnedRate: 76.00 /sec Buffer pool: - AllocTime: 75.647us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=25): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 10.112ms - BuildRowsPartitioned: 45.73K (45734) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 18.914ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=86):(Total: 2s807ms, non-child: 9.204ms, % non-child: 0.33%) - ConvertRowBatchTime: 6.862ms - PeakMemoryUsage: 800.00 KB (819200) - RowsReturned: 45.73K (45734) - RowsReturnedRate: 16.29 K/sec Buffer pool: - AllocTime: 648.484us - CumulativeAllocationBytes: 4.48 MB (4694016) - CumulativeAllocations: 230 (230) - PeakReservation: 800.00 KB (819200) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 800.00 KB (819200) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 244.31 KB, 533.04 KB, 866.19 KB, 1.24 MB, 1.61 MB, 2.00 MB, 2.34 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2606838) - TotalGetBatchTime: 2s799ms - DataArrivalTimer: 2s798ms SenderSide: - DeserializeRowBatchTime: 13.321ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=85):(Total: 5s288ms, non-child: 1.880ms, % non-child: 0.04%) - ConvertRowBatchTime: 980.669us - PeakMemoryUsage: 1.27 MB (1335296) - RowsReturned: 6.12K (6120) - RowsReturnedRate: 1.16 K/sec Buffer pool: - AllocTime: 193.644us - CumulativeAllocationBytes: 1.59 MB (1662976) - CumulativeAllocations: 82 (82) - PeakReservation: 1.27 MB (1335296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.27 MB (1335296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 388.03 KB, 912.98 KB, 912.98 KB - FirstBatchArrivalWaitTime: 3s768ms - TotalBytesReceived: 931.26 KB (953615) - TotalGetBatchTime: 5s287ms - DataArrivalTimer: 5s286ms SenderSide: - DeserializeRowBatchTime: 2.761ms - NumBatchesArrived: 41 (41) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 41 (41) - NumBatchesReceived: 41 (41) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 2s079ms, non-child: 2s079ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 195.917ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s688ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 194.355ms Instance 3f4b6afbed1991fc:3c23055700000019 (host=XXX:22001):(Total: 7s424ms, non-child: 150.895ms, % non-child: 2.03%) Fragment Instance Lifecycle Event Timeline: 7s454ms - Prepare Finished: 114.535ms (114.535ms) - Open Finished: 6s089ms (5s974ms) - First Batch Produced: 7s446ms (1s357ms) - First Batch Sent: 7s448ms (1.776ms) - ExecInternal Finished: 7s454ms (5.858ms) MemoryUsage(500.000ms): 111.02 KB, 1.30 MB, 1.30 MB, 1.73 MB, 2.19 MB, 6.05 MB, 6.05 MB, 6.05 MB, 6.05 MB, 6.05 MB, 6.12 MB, 6.12 MB, 6.72 MB, 7.47 MB, 7.50 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.59 MB (7960150) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 497 (497) - TotalNetworkReceiveTime: 4s877ms - TotalNetworkSendTime: 5.230ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 197 (197) - TotalThreadsTotalWallClockTime: 7s339ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 324.000ms - TotalThreadsVoluntaryContextSwitches: 246 (246) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s365ms - ExecTreeExecTime: 1s357ms - OpenTime: 5s974ms - ExecTreeOpenTime: 3s600ms - PrepareTime: 83.955ms - ExecTreePrepareTime: 42.836ms KrpcDataStreamSender (dst_id=87):(Total: 3.828ms, non-child: 3.828ms, % non-child: 100.00%) - BytesSent: 40.10 KB (41064) - EosSent: 3 (3) - OverallThroughput: 10.23 MB/sec - PeakMemoryUsage: 96.77 KB (99096) - RowsReturned: 497 (497) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.290ms - UncompressedRowBatchSize: 103.38 KB (105861) HASH_JOIN_NODE (id=25):(Total: 5s001ms, non-child: 98.054ms, % non-child: 1.96%) ExecOption: Probe Side Codegen Enabled - BuildRows: 45.57K (45572) - BuildTime: 53.493ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.61K (6608) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 513.486us - RowsReturned: 497 (497) - RowsReturnedRate: 99.00 /sec Buffer pool: - AllocTime: 95.995us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=25): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 24.279ms - BuildRowsPartitioned: 45.57K (45572) - HashBuckets: 126.98K (126976) - HashCollisions: 0 (0) - HashTablesBuildTime: 25.536ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=86):(Total: 2s465ms, non-child: 37.929ms, % non-child: 1.54%) - ConvertRowBatchTime: 20.121ms - PeakMemoryUsage: 1.17 MB (1228800) - RowsReturned: 45.57K (45572) - RowsReturnedRate: 18.48 K/sec Buffer pool: - AllocTime: 699.390us - CumulativeAllocationBytes: 4.47 MB (4685824) - CumulativeAllocations: 230 (230) - PeakReservation: 1.17 MB (1228800) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.17 MB (1228800) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 244.31 KB, 510.83 KB, 888.40 KB, 1.24 MB, 1.61 MB, 2.00 MB, 2.34 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.48 MB (2597604) - TotalGetBatchTime: 2s441ms - DataArrivalTimer: 2s427ms SenderSide: - DeserializeRowBatchTime: 13.275ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=85):(Total: 2s437ms, non-child: 2.057ms, % non-child: 0.08%) - ConvertRowBatchTime: 1.146ms - PeakMemoryUsage: 1.39 MB (1458176) - RowsReturned: 6.61K (6608) - RowsReturnedRate: 2.71 K/sec Buffer pool: - AllocTime: 219.656us - CumulativeAllocationBytes: 1.73 MB (1818624) - CumulativeAllocations: 90 (90) - PeakReservation: 1.39 MB (1458176) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.39 MB (1458176) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433.63 KB, 981.63 KB, 1004.48 KB - FirstBatchArrivalWaitTime: 914.372ms - TotalBytesReceived: 1005.70 KB (1029834) - TotalGetBatchTime: 2s436ms - DataArrivalTimer: 2s435ms SenderSide: - DeserializeRowBatchTime: 3.063ms - NumBatchesArrived: 45 (45) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 45 (45) - NumBatchesReceived: 45 (45) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 2s267ms, non-child: 2s267ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 165.884ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s866ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 234.257ms Averaged Fragment F10:(Total: 6s986ms, non-child: 270.873ms, % non-child: 3.88%) split sizes: min: 9.71 MB, max: 43.56 MB, avg: 32.20 MB, stddev: 15.90 MB completion times: min:6s166ms max:7s468ms mean: 7s025ms stddev:606.992ms execution rates: min:1.57 MB/sec max:5.86 MB/sec mean:4.41 MB/sec stddev:2.01 MB/sec num instances: 3 - AverageThreadTokens: 1.21 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 23.70 MB (24854615) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 6.61K (6605) - TotalNetworkReceiveTime: 2.725ms - TotalNetworkSendTime: 6.839ms - TotalStorageWaitTime: 1.006ms - TotalThreadsInvoluntaryContextSwitches: 1.06K (1060) - TotalThreadsTotalWallClockTime: 8s266ms - TotalThreadsSysTime: 6.666ms - TotalThreadsUserTime: 1s369ms - TotalThreadsVoluntaryContextSwitches: 290 (290) Buffer pool: - AllocTime: 16.079us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 518.129ms - ExecTreeExecTime: 489.601ms - OpenTime: 6s445ms - ExecTreeOpenTime: 903.524ms - PrepareTime: 22.275ms - ExecTreePrepareTime: 1.160ms KrpcDataStreamSender (dst_id=85):(Total: 12.217ms, non-child: 12.217ms, % non-child: 100.00%) - BytesSent: 390.62 KB (399994) - EosSent: 3 (3) - OverallThroughput: 10.48 MB/sec - PeakMemoryUsage: 42.06 KB (43072) - RowsReturned: 6.61K (6605) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 11.797ms - UncompressedRowBatchSize: 1005.30 KB (1029431) HASH_JOIN_NODE (id=24):(Total: 1s395ms, non-child: 28.685ms, % non-child: 2.06%) - BuildRows: 7.32K (7317) - BuildTime: 15.370ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 4.68 MB (4909994) - ProbeRows: 45.56K (45560) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.305ms - RowsReturned: 6.61K (6605) - RowsReturnedRate: 3.86 K/sec Buffer pool: - AllocTime: 40.201us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=24): - BuildRowsPartitionTime: 8.154ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.431ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=84):(Total: 5.131ms, non-child: 5.131ms, % non-child: 100.00%) - ConvertRowBatchTime: 5.037ms - PeakMemoryUsage: 520.00 KB (532480) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 3.11 M/sec Buffer pool: - AllocTime: 44.409us - CumulativeAllocationBytes: 520.00 KB (532480) - CumulativeAllocations: 16 (16) - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 427.33 KB (437590) - TotalGetBatchTime: 48.202us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.959ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=23):(Total: 1s366ms, non-child: 58.859ms, % non-child: 4.31%) - BuildRows: 47.71K (47714) - BuildTime: 40.510ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 5.72 MB (6001578) - ProbeRows: 95.23K (95229) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 7.920ms - RowsReturned: 45.56K (45560) - RowsReturnedRate: 27.07 K/sec Buffer pool: - AllocTime: 1.941ms - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=23): - BuildRowsPartitionTime: 17.278ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 21.647ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=83):(Total: 17.585ms, non-child: 17.585ms, % non-child: 100.00%) - ConvertRowBatchTime: 14.707ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 3.69 M/sec Buffer pool: - AllocTime: 269.106us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 2.641ms - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.812ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=22):(Total: 1s290ms, non-child: 45.379ms, % non-child: 3.52%) - BuildRows: 365 (365) - BuildTime: 4.578ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 218.68K (218678) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 15.470ms - RowsReturned: 95.23K (95229) - RowsReturnedRate: 60.04 K/sec Buffer pool: - AllocTime: 36.581us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=22): - BuildRowsPartitionTime: 221.127us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 3.648ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=82):(Total: 71.773us, non-child: 71.773us, % non-child: 100.00%) - ConvertRowBatchTime: 54.313us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.09 M/sec Buffer pool: - AllocTime: 6.258us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 10.481us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 27.115us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=15):(Total: 1s244ms, non-child: 1s244ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 6.80 MB (7128132) - BytesReadDataNodeCache: 0 - BytesReadLocal: 6.80 MB (7128132) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 6.80 MB (7128132) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 20.995ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 11.88 MB (12454604) - PerReadThreadRawHdfsThroughput: 1.71 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s221ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 480.52K (480516) - RowsReturned: 218.68K (218678) - RowsReturnedRate: 145.51 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 478 (478) - ScannerThreadsTotalWallClockTime: 1s276ms - MaterializeTupleTime(*): 892.963ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 448.000ms - ScannerThreadsVoluntaryContextSwitches: 2 (2) - TotalRawHdfsOpenFileTime(*): 71.090us - TotalRawHdfsReadTime(*): 3.584ms - TotalReadThroughput: 953.39 KB/sec Filter 22 (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: 267.30K (267299) - Rows rejected: 261.84K (261838) - Rows total: 480.52K (480516) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s308ms, non-child: 5s308ms, % non-child: 100.00%) - CodegenTime: 18.174ms - CompileTime: 322.235ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s800ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 180.097ms Fragment F10: Instance 3f4b6afbed1991fc:3c23055700000013 (host=XXX:22002):(Total: 7s424ms, non-child: 273.426ms, % non-child: 3.68%) Hdfs split stats (:<# splits>/): 0:1/43.56 MB Filter 22 arrival: 5s759ms Fragment Instance Lifecycle Event Timeline: 7s436ms - Prepare Finished: 20.020ms (20.020ms) - Open Finished: 5s895ms (5s875ms) - First Batch Produced: 5s936ms (41.108ms) - First Batch Sent: 5s939ms (2.966ms) - ExecInternal Finished: 7s436ms (1s496ms) MemoryUsage(500.000ms): 2.17 MB, 5.72 MB, 5.73 MB, 7.96 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 23.87 MB, 25.21 MB, 25.83 MB, 28.05 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2 - AverageThreadTokens: 1.27 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 32.92 MB (34517847) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 19.82K (19817) - TotalNetworkReceiveTime: 246.328us - TotalNetworkSendTime: 8.119ms - TotalStorageWaitTime: 49.103us - TotalThreadsInvoluntaryContextSwitches: 1.72K (1719) - TotalThreadsTotalWallClockTime: 9s089ms - TotalThreadsSysTime: 20.000ms - TotalThreadsUserTime: 1s616ms - TotalThreadsVoluntaryContextSwitches: 701 (701) Buffer pool: - AllocTime: 6.096us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s540ms - ExecTreeExecTime: 1s467ms - OpenTime: 5s875ms - ExecTreeOpenTime: 240.158ms - PrepareTime: 8.035ms - ExecTreePrepareTime: 1.903ms KrpcDataStreamSender (dst_id=85):(Total: 36.400ms, non-child: 36.400ms, % non-child: 100.00%) - BytesSent: 1.14 MB (1199982) - EosSent: 3 (3) - OverallThroughput: 31.44 MB/sec - PeakMemoryUsage: 98.06 KB (100416) - RowsReturned: 19.82K (19817) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 35.391ms - UncompressedRowBatchSize: 2.95 MB (3088293) HASH_JOIN_NODE (id=24):(Total: 1s711ms, non-child: 28.921ms, % non-child: 1.69%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 25.431ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 10.06 MB (10547456) - ProbeRows: 136.68K (136682) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 9.916ms - RowsReturned: 19.82K (19817) - RowsReturnedRate: 11.58 K/sec Buffer pool: - AllocTime: 34.858us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=24): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 14.363ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.346ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=84):(Total: 1.182ms, non-child: 1.182ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.101ms - PeakMemoryUsage: 520.00 KB (532480) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 6.19 M/sec Buffer pool: - AllocTime: 40.675us - CumulativeAllocationBytes: 520.00 KB (532480) - CumulativeAllocations: 16 (16) - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 427.33 KB (437590) - TotalGetBatchTime: 38.934us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.998ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=23):(Total: 1s682ms, non-child: 89.154ms, % non-child: 5.30%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 62.347ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 11.07 MB (11610368) - ProbeRows: 285.69K (285688) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 23.759ms - RowsReturned: 136.68K (136682) - RowsReturnedRate: 81.22 K/sec Buffer pool: - AllocTime: 118.023us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=23): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 30.781ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 31.090ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=83):(Total: 7.561ms, non-child: 7.561ms, % non-child: 100.00%) - ConvertRowBatchTime: 7.175ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 6.31 M/sec Buffer pool: - AllocTime: 248.996us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 1.25 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 178.813us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.779ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=22):(Total: 1s586ms, non-child: 83.294ms, % non-child: 5.25%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 1.142ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 656.03K (656034) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 46.409ms - RowsReturned: 285.69K (285688) - RowsReturnedRate: 180.11 K/sec Buffer pool: - AllocTime: 24.563us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=22): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 189.131us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 374.694us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=82):(Total: 70.423us, non-child: 70.423us, % non-child: 100.00%) - ConvertRowBatchTime: 56.148us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.18 M/sec Buffer pool: - AllocTime: 7.533us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 7.759us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 31.227us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=15):(Total: 1s502ms, non-child: 1s502ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/43.56 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.11 MB, 9.11 MB, 9.11 MB, 9.11 MB - FooterProcessingTime: (Avg: 285.805us ; Min: 285.805us ; Max: 285.805us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 9.11 MB (9552260) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.11 MB (9552260) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.11 MB (9552260) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 6.475ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 15.59 MB (16352261) - PerReadThreadRawHdfsThroughput: 2.13 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s474ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 656.13K (656132) - RowsReturned: 656.03K (656034) - RowsReturnedRate: 436.54 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 974 (974) - ScannerThreadsTotalWallClockTime: 1s644ms - MaterializeTupleTime(*): 731.322ms - ScannerThreadsSysTime: 12.000ms - ScannerThreadsUserTime: 600.000ms - ScannerThreadsVoluntaryContextSwitches: 0 (0) - TotalRawHdfsOpenFileTime(*): 60.269us - TotalRawHdfsReadTime(*): 4.170ms - TotalReadThroughput: 1.21 MB/sec Filter 22 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 16.48K (16482) - Rows rejected: 98 (98) - Rows total: 656.13K (656132) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s403ms, non-child: 5s403ms, % non-child: 100.00%) - CodegenTime: 7.429ms - CompileTime: 307.911ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s837ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 243.206ms Instance 3f4b6afbed1991fc:3c23055700000015 (host=XXX:22001):(Total: 7s380ms, non-child: 386.014ms, % non-child: 5.23%) Hdfs split stats (:<# splits>/): 0:1/43.32 MB Filter 22 arrival: 5s822ms Fragment Instance Lifecycle Event Timeline: 7s454ms - Prepare Finished: 117.893ms (117.893ms) - Open Finished: 7s443ms (7s325ms) - First Batch Produced: 7s443ms (247.342us) - First Batch Sent: 7s443ms (1.518us) - ExecInternal Finished: 7s454ms (10.819ms) MemoryUsage(500.000ms): 2.17 MB, 5.72 MB, 5.73 MB, 7.92 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 4.57 MB, 24.55 MB, 24.56 MB, 24.62 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2 - AverageThreadTokens: 1.27 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 24.62 MB (25819486) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 1.046ms - TotalNetworkSendTime: 10.754ms - TotalStorageWaitTime: 2.814ms - TotalThreadsInvoluntaryContextSwitches: 979 (979) - TotalThreadsTotalWallClockTime: 8s872ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s500ms - TotalThreadsVoluntaryContextSwitches: 117 (117) Buffer pool: - AllocTime: 22.879us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 11.072ms - ExecTreeExecTime: 248.153us - OpenTime: 7s325ms - ExecTreeOpenTime: 1s653ms - PrepareTime: 43.815ms - ExecTreePrepareTime: 828.548us KrpcDataStreamSender (dst_id=85):(Total: 138.675us, non-child: 138.675us, % non-child: 100.00%) - BytesSent: 0 - EosSent: 3 (3) - OverallThroughput: 0.00 /sec - PeakMemoryUsage: 14.06 KB (14400) - RowsReturned: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - UncompressedRowBatchSize: 0 HASH_JOIN_NODE (id=24):(Total: 1s655ms, non-child: 42.066ms, % non-child: 2.54%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 6.011ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 1.99 MB (2091264) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 592.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 47.503us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=24): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 2.595ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.443ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=84):(Total: 2.942ms, non-child: 2.942ms, % non-child: 100.00%) - ConvertRowBatchTime: 2.855ms - PeakMemoryUsage: 520.00 KB (532480) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 2.49 M/sec Buffer pool: - AllocTime: 47.140us - CumulativeAllocationBytes: 520.00 KB (532480) - CumulativeAllocations: 16 (16) - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 427.33 KB (437590) - TotalGetBatchTime: 47.209us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.936ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=23):(Total: 1s613ms, non-child: 31.606ms, % non-child: 1.96%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 25.427ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 3.05 MB (3197184) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 629.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 5.626ms - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=23): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 10.084ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 11.595ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=83):(Total: 15.090ms, non-child: 15.090ms, % non-child: 100.00%) - ConvertRowBatchTime: 13.884ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 3.16 M/sec Buffer pool: - AllocTime: 251.569us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 1.22 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 963.246us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.793ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=22):(Total: 1s566ms, non-child: 25.368ms, % non-child: 1.62%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 6.075ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 956.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 39.866us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=22): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 234.949us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 5.045ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=82):(Total: 72.659us, non-child: 72.659us, % non-child: 100.00%) - ConvertRowBatchTime: 51.638us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.02 M/sec Buffer pool: - AllocTime: 5.392us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 13.210us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 24.835us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=15):(Total: 1s541ms, non-child: 1s541ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/43.32 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.06 MB, 9.06 MB, 9.06 MB - FooterProcessingTime: (Avg: 1.721ms ; Min: 1.721ms ; Max: 1.721ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 9.06 MB (9499861) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.06 MB (9499861) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.06 MB (9499861) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 38.538ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 15.55 MB (16302263) - PerReadThreadRawHdfsThroughput: 2.01 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s520ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 652.17K (652171) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 418 (418) - ScannerThreadsTotalWallClockTime: 1s520ms - MaterializeTupleTime(*): 1s376ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 608.000ms - ScannerThreadsVoluntaryContextSwitches: 5 (5) - TotalRawHdfsOpenFileTime(*): 58.784us - TotalRawHdfsReadTime(*): 4.400ms - TotalReadThroughput: 1.21 MB/sec Filter 22 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 652.17K (652171) - Rows rejected: 652.17K (652171) - Rows total: 652.17K (652171) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s338ms, non-child: 5s338ms, % non-child: 100.00%) - CodegenTime: 45.432ms - CompileTime: 274.524ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s852ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 211.064ms Instance 3f4b6afbed1991fc:3c23055700000014 (host=XXX:22000):(Total: 6s154ms, non-child: 153.178ms, % non-child: 2.49%) Hdfs split stats (:<# splits>/): 0:1/9.71 MB Filter 22 arrival: 5s450ms Fragment Instance Lifecycle Event Timeline: 6s163ms - Prepare Finished: 25.311ms (25.311ms) - Open Finished: 6s160ms (6s135ms) - First Batch Produced: 6s161ms (608.236us) - First Batch Sent: 6s161ms (4.414us) - ExecInternal Finished: 6s163ms (1.725ms) MemoryUsage(500.000ms): 5.72 MB, 5.72 MB, 5.73 MB, 7.92 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 4.51 MB, 13.52 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2 - AverageThreadTokens: 1.08 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 13.57 MB (14226512) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 6.882ms - TotalNetworkSendTime: 1.643ms - TotalStorageWaitTime: 154.922us - TotalThreadsInvoluntaryContextSwitches: 483 (483) - TotalThreadsTotalWallClockTime: 6s836ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 992.000ms - TotalThreadsVoluntaryContextSwitches: 52 (52) Buffer pool: - AllocTime: 19.264us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 2.343ms - ExecTreeExecTime: 609.033us - OpenTime: 6s135ms - ExecTreeOpenTime: 816.874ms - PrepareTime: 14.975ms - ExecTreePrepareTime: 749.998us KrpcDataStreamSender (dst_id=85):(Total: 113.553us, non-child: 113.553us, % non-child: 100.00%) - BytesSent: 0 - EosSent: 3 (3) - OverallThroughput: 0.00 /sec - PeakMemoryUsage: 14.06 KB (14400) - RowsReturned: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - UncompressedRowBatchSize: 0 HASH_JOIN_NODE (id=24):(Total: 818.908ms, non-child: 15.068ms, % non-child: 1.84%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 14.667ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 1.99 MB (2091264) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 591.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 38.242us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=24): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 7.503ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.504ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=84):(Total: 11.271ms, non-child: 11.271ms, % non-child: 100.00%) - ConvertRowBatchTime: 11.155ms - PeakMemoryUsage: 520.00 KB (532480) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 649.17 K/sec Buffer pool: - AllocTime: 45.414us - CumulativeAllocationBytes: 520.00 KB (532480) - CumulativeAllocations: 16 (16) - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 427.33 KB (437590) - TotalGetBatchTime: 58.463us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.943ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=23):(Total: 803.859ms, non-child: 55.815ms, % non-child: 6.94%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 33.755ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 3.05 MB (3197184) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 636.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 78.868us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=23): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 10.970ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 22.255ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=83):(Total: 30.104ms, non-child: 30.104ms, % non-child: 100.00%) - ConvertRowBatchTime: 23.061ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 1.58 M/sec Buffer pool: - AllocTime: 306.755us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 1.22 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 6.782ms - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.864ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=22):(Total: 717.939ms, non-child: 27.475ms, % non-child: 3.83%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 6.515ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 674.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 45.315us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=22): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 239.303us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 5.525ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=82):(Total: 72.237us, non-child: 72.237us, % non-child: 100.00%) - ConvertRowBatchTime: 55.153us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.05 M/sec Buffer pool: - AllocTime: 5.851us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 10.475us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 25.284us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=15):(Total: 690.391ms, non-child: 690.391ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/9.71 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.22 MB - FooterProcessingTime: (Avg: 408.294us ; Min: 408.294us ; Max: 408.294us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 2.22 MB (2332276) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.22 MB (2332276) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.22 MB (2332276) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 17.973ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 4.49 MB (4709289) - PerReadThreadRawHdfsThroughput: 1018.72 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 669.629ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 133.25K (133245) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 42 (42) - ScannerThreadsTotalWallClockTime: 663.086ms - MaterializeTupleTime(*): 571.225ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 136.000ms - ScannerThreadsVoluntaryContextSwitches: 1 (1) - TotalRawHdfsOpenFileTime(*): 94.218us - TotalRawHdfsReadTime(*): 2.183ms - TotalReadThroughput: 379.60 KB/sec Filter 22 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 133.25K (133245) - Rows rejected: 133.25K (133245) - Rows total: 133.25K (133245) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s182ms, non-child: 5s182ms, % non-child: 100.00%) - CodegenTime: 1.660ms - CompileTime: 384.269ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s711ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 86.021ms Averaged Fragment F11:(Total: 1s076ms, non-child: 77.161ms, % non-child: 7.17%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:1s235ms max:1s235ms mean: 1s235ms stddev:0.000ns execution rates: min:1.74 MB/sec max:1.74 MB/sec mean:1.74 MB/sec stddev:0.68 B/sec num instances: 1 - AverageThreadTokens: 1.50 - BloomFilterBytes: 0 - PeakMemoryUsage: 900.98 KB (922601) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 202.98 MB (212839249) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 4.632ms - TotalStorageWaitTime: 6.816ms - TotalThreadsInvoluntaryContextSwitches: 34 (34) - TotalThreadsTotalWallClockTime: 1s350ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 64.000ms - TotalThreadsVoluntaryContextSwitches: 105 (105) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 416.631ms - ExecTreeExecTime: 411.717ms - OpenTime: 623.809ms - ExecTreeOpenTime: 111.334us - PrepareTime: 36.283ms - ExecTreePrepareTime: 173.440us KrpcDataStreamSender (dst_id=82):(Total: 13.156ms, non-child: 13.156ms, % non-child: 100.00%) - BytesSent: 2.86 KB (2932) - EosSent: 3 (3) - OverallThroughput: 217.64 KB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 127.882us - UncompressedRowBatchSize: 6.06 KB (6205) HDFS_SCAN_NODE (id=20):(Total: 412.222ms, non-child: 412.222ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 465.32 KB (476485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 465.32 KB (476485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 465.32 KB (476485) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 25.043ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 849.29 KB (869668) - PerReadThreadRawHdfsThroughput: 601.06 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 260.578ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 73.05K (73049) - RowsReturned: 365 (365) - RowsReturnedRate: 885.00 /sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 9 (9) - ScannerThreadsTotalWallClockTime: 309.724ms - MaterializeTupleTime(*): 50.861ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 39 (39) - TotalRawHdfsOpenFileTime(*): 33.821us - TotalRawHdfsReadTime(*): 756.018us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 574.253ms, non-child: 574.253ms, % non-child: 100.00%) - CodegenTime: 28.440ms - CompileTime: 114.341ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 20 (20) - NumInstructions: 319 (319) - OptimizationTime: 263.637ms - PeakMemoryUsage: 159.50 KB (163328) - PrepareTime: 195.718ms Fragment F11: Instance 3f4b6afbed1991fc:3c23055700000010 (host=XXX:22001):(Total: 1s076ms, non-child: 77.161ms, % non-child: 7.17%) Hdfs split stats (:<# splits>/): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 1s159ms - Prepare Finished: 118.889ms (118.889ms) - Open Finished: 742.708ms (623.819ms) - First Batch Produced: 1s097ms (355.213ms) - First Batch Sent: 1s098ms (201.465us) - ExecInternal Finished: 1s159ms (61.212ms) MemoryUsage(500.000ms): 50.66 KB, 55.69 KB ThreadUsage(500.000ms): 1, 2 - AverageThreadTokens: 1.50 - BloomFilterBytes: 0 - PeakMemoryUsage: 900.98 KB (922601) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 202.98 MB (212839249) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 4.632ms - TotalStorageWaitTime: 6.816ms - TotalThreadsInvoluntaryContextSwitches: 34 (34) - TotalThreadsTotalWallClockTime: 1s350ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 64.000ms - TotalThreadsVoluntaryContextSwitches: 105 (105) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 416.631ms - ExecTreeExecTime: 411.717ms - OpenTime: 623.809ms - ExecTreeOpenTime: 111.334us - PrepareTime: 36.283ms - ExecTreePrepareTime: 173.440us KrpcDataStreamSender (dst_id=82):(Total: 13.156ms, non-child: 13.156ms, % non-child: 100.00%) - BytesSent: 2.86 KB (2932) - EosSent: 3 (3) - OverallThroughput: 217.64 KB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 127.882us - UncompressedRowBatchSize: 6.06 KB (6205) HDFS_SCAN_NODE (id=20):(Total: 412.222ms, non-child: 412.222ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0 - FooterProcessingTime: (Avg: 252.643us ; Min: 252.643us ; Max: 252.643us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 465.32 KB (476485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 465.32 KB (476485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 465.32 KB (476485) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 25.043ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 849.29 KB (869668) - PerReadThreadRawHdfsThroughput: 601.06 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 260.578ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 73.05K (73049) - RowsReturned: 365 (365) - RowsReturnedRate: 885.00 /sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 9 (9) - ScannerThreadsTotalWallClockTime: 309.724ms - MaterializeTupleTime(*): 50.861ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 39 (39) - TotalRawHdfsOpenFileTime(*): 33.821us - TotalRawHdfsReadTime(*): 756.018us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 574.253ms, non-child: 574.253ms, % non-child: 100.00%) - CodegenTime: 28.440ms - CompileTime: 114.341ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 20 (20) - NumInstructions: 319 (319) - OptimizationTime: 263.637ms - PeakMemoryUsage: 159.50 KB (163328) - PrepareTime: 195.718ms Averaged Fragment F12:(Total: 1s712ms, non-child: 239.191ms, % non-child: 13.97%) split sizes: min: 5.48 MB, max: 5.48 MB, avg: 5.48 MB, stddev: 0 completion times: min:1s840ms max:1s840ms mean: 1s840ms stddev:0.000ns execution rates: min:2.98 MB/sec max:2.98 MB/sec mean:2.98 MB/sec stddev:0.94 B/sec num instances: 1 - AverageThreadTokens: 1.25 - BloomFilterBytes: 0 - PeakMemoryUsage: 4.06 MB (4262458) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 277.53 MB (291008137) - RowsProduced: 47.71K (47714) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 229.728ms - TotalStorageWaitTime: 12.229ms - TotalThreadsInvoluntaryContextSwitches: 98 (98) - TotalThreadsTotalWallClockTime: 2s306ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 172.000ms - TotalThreadsVoluntaryContextSwitches: 173 (173) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 1.00 MB (1048576) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 825.391ms - ExecTreeExecTime: 566.467ms - OpenTime: 883.185ms - ExecTreeOpenTime: 246.217us - PrepareTime: 3.590ms - ExecTreePrepareTime: 170.768us KrpcDataStreamSender (dst_id=83):(Total: 25.251ms, non-child: 25.251ms, % non-child: 100.00%) - BytesSent: 916.45 KB (938440) - EosSent: 3 (3) - OverallThroughput: 35.44 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 47.71K (47714) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.092ms - UncompressedRowBatchSize: 1.32 MB (1383706) HDFS_SCAN_NODE (id=18):(Total: 567.011ms, non-child: 567.011ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.50 - BytesRead: 1.53 MB (1599321) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.53 MB (1599321) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.53 MB (1599321) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 39.074ms - MaxCompressedTextFileLength: 0 - NumColumns: 5 (5) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 3.00 MB (3141418) - PerReadThreadRawHdfsThroughput: 908.42 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 354.543ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 100.00K (100000) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 84.15 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 39 (39) - ScannerThreadsTotalWallClockTime: 598.422ms - MaterializeTupleTime(*): 308.872ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 56.000ms - ScannerThreadsVoluntaryContextSwitches: 28 (28) - TotalRawHdfsOpenFileTime(*): 37.644us - TotalRawHdfsReadTime(*): 1.678ms - TotalReadThroughput: 780.92 KB/sec 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: 0 (0) - Rows rejected: 0 (0) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 880.774ms, non-child: 880.774ms, % non-child: 100.00%) - CodegenTime: 34.968ms - CompileTime: 93.992ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 54 (54) - NumInstructions: 884 (884) - OptimizationTime: 407.200ms - PeakMemoryUsage: 442.00 KB (452608) - PrepareTime: 379.082ms Fragment F12: Instance 3f4b6afbed1991fc:3c23055700000011 (host=XXX:22001):(Total: 1s712ms, non-child: 239.191ms, % non-child: 13.97%) Hdfs split stats (:<# splits>/): 0:1/5.48 MB Fragment Instance Lifecycle Event Timeline: 1s826ms - Prepare Finished: 118.266ms (118.266ms) - Open Finished: 1s001ms (883.196ms) - First Batch Produced: 1s439ms (438.316ms) - First Batch Sent: 1s440ms (460.690us) - ExecInternal Finished: 1s826ms (386.609ms) MemoryUsage(500.000ms): 1.03 MB, 1.46 MB, 2.88 MB, 1.24 MB ThreadUsage(500.000ms): 1, 1, 2, 1 - AverageThreadTokens: 1.25 - BloomFilterBytes: 0 - PeakMemoryUsage: 4.06 MB (4262458) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 277.53 MB (291008137) - RowsProduced: 47.71K (47714) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 229.728ms - TotalStorageWaitTime: 12.229ms - TotalThreadsInvoluntaryContextSwitches: 98 (98) - TotalThreadsTotalWallClockTime: 2s306ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 172.000ms - TotalThreadsVoluntaryContextSwitches: 173 (173) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 1.00 MB (1048576) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 825.391ms - ExecTreeExecTime: 566.467ms - OpenTime: 883.185ms - ExecTreeOpenTime: 246.217us - PrepareTime: 3.590ms - ExecTreePrepareTime: 170.768us KrpcDataStreamSender (dst_id=83):(Total: 25.251ms, non-child: 25.251ms, % non-child: 100.00%) - BytesSent: 916.45 KB (938440) - EosSent: 3 (3) - OverallThroughput: 35.44 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 47.71K (47714) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 25.092ms - UncompressedRowBatchSize: 1.32 MB (1383706) HDFS_SCAN_NODE (id=18):(Total: 567.011ms, non-child: 567.011ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/5.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [18]), waited for 120ms Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 1.53 MB, 1.53 MB - FooterProcessingTime: (Avg: 179.523us ; Min: 179.523us ; Max: 179.523us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.50 - BytesRead: 1.53 MB (1599321) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.53 MB (1599321) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.53 MB (1599321) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 39.074ms - MaxCompressedTextFileLength: 0 - NumColumns: 5 (5) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 3.00 MB (3141418) - PerReadThreadRawHdfsThroughput: 908.42 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 354.543ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 100.00K (100000) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 84.15 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 39 (39) - ScannerThreadsTotalWallClockTime: 598.422ms - MaterializeTupleTime(*): 308.872ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 56.000ms - ScannerThreadsVoluntaryContextSwitches: 28 (28) - TotalRawHdfsOpenFileTime(*): 37.644us - TotalRawHdfsReadTime(*): 1.678ms - TotalReadThroughput: 780.92 KB/sec 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: 0 (0) - Rows rejected: 0 (0) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 880.774ms, non-child: 880.774ms, % non-child: 100.00%) - CodegenTime: 34.968ms - CompileTime: 93.992ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 54 (54) - NumInstructions: 884 (884) - OptimizationTime: 407.200ms - PeakMemoryUsage: 442.00 KB (452608) - PrepareTime: 379.082ms Averaged Fragment F13:(Total: 1s345ms, non-child: 24.846ms, % non-child: 1.85%) split sizes: min: 1.16 MB, max: 1.16 MB, avg: 1.16 MB, stddev: 0 completion times: min:1s485ms max:1s485ms mean: 1s485ms stddev:0.000ns execution rates: min:800.70 KB/sec max:800.70 KB/sec mean:800.70 KB/sec stddev:0.87 B/sec num instances: 1 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.37 MB (1432235) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 254.63 MB (266998715) - RowsProduced: 7.32K (7317) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 9.140ms - TotalStorageWaitTime: 2.696ms - TotalThreadsInvoluntaryContextSwitches: 70 (70) - TotalThreadsTotalWallClockTime: 1s625ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 120.000ms - TotalThreadsVoluntaryContextSwitches: 105 (105) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 470.001ms - ExecTreeExecTime: 454.614ms - OpenTime: 863.619ms - ExecTreeOpenTime: 102.453us - PrepareTime: 12.128ms - ExecTreePrepareTime: 181.336us KrpcDataStreamSender (dst_id=84):(Total: 5.849ms, non-child: 5.849ms, % non-child: 100.00%) - BytesSent: 169.05 KB (173112) - EosSent: 3 (3) - OverallThroughput: 28.22 MB/sec - PeakMemoryUsage: 10.36 KB (10608) - RowsReturned: 7.32K (7317) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 5.699ms - UncompressedRowBatchSize: 427.33 KB (437590) HDFS_SCAN_NODE (id=19):(Total: 455.112ms, non-child: 455.112ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 415.80 KB (425783) - BytesReadDataNodeCache: 0 - BytesReadLocal: 415.80 KB (425783) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 415.80 KB (425783) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 79.729us - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.17 MB (1222080) - PerReadThreadRawHdfsThroughput: 724.36 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 255.483ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 50.00K (50000) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 16.08 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 17 (17) - ScannerThreadsTotalWallClockTime: 291.683ms - MaterializeTupleTime(*): 159.851ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 16.000ms - ScannerThreadsVoluntaryContextSwitches: 27 (27) - TotalRawHdfsOpenFileTime(*): 28.054us - TotalRawHdfsReadTime(*): 560.577us - TotalReadThroughput: 277.20 KB/sec CodeGen:(Total: 860.021ms, non-child: 860.021ms, % non-child: 100.00%) - CodegenTime: 1.927ms - CompileTime: 136.560ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 45 (45) - NumInstructions: 682 (682) - OptimizationTime: 529.488ms - PeakMemoryUsage: 341.00 KB (349184) - PrepareTime: 193.434ms Fragment F13: Instance 3f4b6afbed1991fc:3c23055700000012 (host=XXX:22001):(Total: 1s345ms, non-child: 24.846ms, % non-child: 1.85%) Hdfs split stats (:<# splits>/): 0:1/1.16 MB Fragment Instance Lifecycle Event Timeline: 1s472ms - Prepare Finished: 138.526ms (138.526ms) - Open Finished: 1s002ms (863.634ms) - First Batch Produced: 1s354ms (351.891ms) - First Batch Sent: 1s354ms (905.929us) - ExecInternal Finished: 1s472ms (117.193ms) MemoryUsage(500.000ms): 18.36 KB, 359.36 KB, 1008.73 KB ThreadUsage(500.000ms): 1, 1, 2 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.37 MB (1432235) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 254.63 MB (266998715) - RowsProduced: 7.32K (7317) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 9.140ms - TotalStorageWaitTime: 2.696ms - TotalThreadsInvoluntaryContextSwitches: 70 (70) - TotalThreadsTotalWallClockTime: 1s625ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 120.000ms - TotalThreadsVoluntaryContextSwitches: 105 (105) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 470.001ms - ExecTreeExecTime: 454.614ms - OpenTime: 863.619ms - ExecTreeOpenTime: 102.453us - PrepareTime: 12.128ms - ExecTreePrepareTime: 181.336us KrpcDataStreamSender (dst_id=84):(Total: 5.849ms, non-child: 5.849ms, % non-child: 100.00%) - BytesSent: 169.05 KB (173112) - EosSent: 3 (3) - OverallThroughput: 28.22 MB/sec - PeakMemoryUsage: 10.36 KB (10608) - RowsReturned: 7.32K (7317) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 5.699ms - UncompressedRowBatchSize: 427.33 KB (437590) HDFS_SCAN_NODE (id=19):(Total: 455.112ms, non-child: 455.112ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/1.16 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 415.80 KB - FooterProcessingTime: (Avg: 27.666ms ; Min: 27.666ms ; Max: 27.666ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 415.80 KB (425783) - BytesReadDataNodeCache: 0 - BytesReadLocal: 415.80 KB (425783) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 415.80 KB (425783) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 79.729us - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.17 MB (1222080) - PerReadThreadRawHdfsThroughput: 724.36 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 255.483ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 50.00K (50000) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 16.08 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 17 (17) - ScannerThreadsTotalWallClockTime: 291.683ms - MaterializeTupleTime(*): 159.851ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 16.000ms - ScannerThreadsVoluntaryContextSwitches: 27 (27) - TotalRawHdfsOpenFileTime(*): 28.054us - TotalRawHdfsReadTime(*): 560.577us - TotalReadThroughput: 277.20 KB/sec CodeGen:(Total: 860.021ms, non-child: 860.021ms, % non-child: 100.00%) - CodegenTime: 1.927ms - CompileTime: 136.560ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 45 (45) - NumInstructions: 682 (682) - OptimizationTime: 529.488ms - PeakMemoryUsage: 341.00 KB (349184) - PrepareTime: 193.434ms Averaged Fragment F14:(Total: 4s843ms, non-child: 326.067ms, % non-child: 6.73%) split sizes: min: 7.48 MB, max: 7.48 MB, avg: 7.48 MB, stddev: 0 completion times: min:4s992ms max:4s992ms mean: 4s992ms stddev:0.000ns execution rates: min:1.50 MB/sec max:1.50 MB/sec mean:1.50 MB/sec stddev:0.01 B/sec num instances: 1 - AverageThreadTokens: 1.80 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.89 MB (10371925) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 137.20K (137200) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 109.589ms - TotalStorageWaitTime: 15.894ms - TotalThreadsInvoluntaryContextSwitches: 286 (286) - TotalThreadsTotalWallClockTime: 8s532ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 856.000ms - TotalThreadsVoluntaryContextSwitches: 233 (233) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 3s961ms - ExecTreeExecTime: 3s570ms - OpenTime: 814.373ms - ExecTreeOpenTime: 121.959us - PrepareTime: 67.384ms - ExecTreePrepareTime: 167.333us KrpcDataStreamSender (dst_id=86):(Total: 135.899ms, non-child: 135.899ms, % non-child: 100.00%) - BytesSent: 2.90 MB (3043464) - EosSent: 3 (3) - OverallThroughput: 21.36 MB/sec - PeakMemoryUsage: 93.35 KB (95592) - RowsReturned: 137.20K (137200) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 135.660ms - UncompressedRowBatchSize: 7.46 MB (7820400) HDFS_SCAN_NODE (id=16):(Total: 3s570ms, non-child: 3s570ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.54 MB (7903345) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.54 MB (7903345) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.54 MB (7903345) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 2.002ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.53 MB (9988456) - PerReadThreadRawHdfsThroughput: 525.05 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 3s372ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 1.92M (1920800) - RowsReturned: 137.20K (137200) - RowsReturnedRate: 38.43 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 197 (197) - ScannerThreadsTotalWallClockTime: 3s756ms - MaterializeTupleTime(*): 3s603ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 544.000ms - ScannerThreadsVoluntaryContextSwitches: 27 (27) - TotalRawHdfsOpenFileTime(*): 21.761us - TotalRawHdfsReadTime(*): 14.355ms - TotalReadThroughput: 1.51 MB/sec CodeGen:(Total: 811.332ms, non-child: 811.332ms, % non-child: 100.00%) - CodegenTime: 1.892ms - CompileTime: 26.167ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 44 (44) - NumInstructions: 769 (769) - OptimizationTime: 492.879ms - PeakMemoryUsage: 384.50 KB (393728) - PrepareTime: 261.902ms Fragment F14: Instance 3f4b6afbed1991fc:3c23055700000016 (host=XXX:22001):(Total: 4s843ms, non-child: 326.067ms, % non-child: 6.73%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB Fragment Instance Lifecycle Event Timeline: 4s979ms - Prepare Finished: 203.050ms (203.050ms) - Open Finished: 1s017ms (814.381ms) - First Batch Produced: 1s347ms (330.463ms) - First Batch Sent: 1s348ms (866.787us) - ExecInternal Finished: 4s979ms (3s630ms) MemoryUsage(500.000ms): 17.35 KB, 401.85 KB, 8.25 MB, 8.94 MB, 8.79 MB, 8.91 MB, 8.58 MB, 8.95 MB, 8.84 MB, 9.00 MB ThreadUsage(500.000ms): 1, 1, 2, 2, 2, 2, 2, 2, 2, 2 - AverageThreadTokens: 1.80 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.89 MB (10371925) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 137.20K (137200) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 109.589ms - TotalStorageWaitTime: 15.894ms - TotalThreadsInvoluntaryContextSwitches: 286 (286) - TotalThreadsTotalWallClockTime: 8s532ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 856.000ms - TotalThreadsVoluntaryContextSwitches: 233 (233) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 3s961ms - ExecTreeExecTime: 3s570ms - OpenTime: 814.373ms - ExecTreeOpenTime: 121.959us - PrepareTime: 67.384ms - ExecTreePrepareTime: 167.333us KrpcDataStreamSender (dst_id=86):(Total: 135.899ms, non-child: 135.899ms, % non-child: 100.00%) - BytesSent: 2.90 MB (3043464) - EosSent: 3 (3) - OverallThroughput: 21.36 MB/sec - PeakMemoryUsage: 93.35 KB (95592) - RowsReturned: 137.20K (137200) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 135.660ms - UncompressedRowBatchSize: 7.46 MB (7820400) HDFS_SCAN_NODE (id=16):(Total: 3s570ms, non-child: 3s570ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB - FooterProcessingTime: (Avg: 108.653us ; Min: 108.653us ; Max: 108.653us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.54 MB (7903345) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.54 MB (7903345) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.54 MB (7903345) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 2.002ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.53 MB (9988456) - PerReadThreadRawHdfsThroughput: 525.05 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 3s372ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 1.92M (1920800) - RowsReturned: 137.20K (137200) - RowsReturnedRate: 38.43 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 197 (197) - ScannerThreadsTotalWallClockTime: 3s756ms - MaterializeTupleTime(*): 3s603ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 544.000ms - ScannerThreadsVoluntaryContextSwitches: 27 (27) - TotalRawHdfsOpenFileTime(*): 21.761us - TotalRawHdfsReadTime(*): 14.355ms - TotalReadThroughput: 1.51 MB/sec CodeGen:(Total: 811.332ms, non-child: 811.332ms, % non-child: 100.00%) - CodegenTime: 1.892ms - CompileTime: 26.167ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 44 (44) - NumInstructions: 769 (769) - OptimizationTime: 492.879ms - PeakMemoryUsage: 384.50 KB (393728) - PrepareTime: 261.902ms Averaged Fragment F16:(Total: 7s388ms, non-child: 2s397ms, % non-child: 32.44%) split sizes: min: 7.48 MB, max: 7.48 MB, avg: 7.48 MB, stddev: 0 completion times: min:7s545ms max:7s545ms mean: 7s545ms stddev:0.000ns execution rates: min:1015.47 KB/sec max:1015.47 KB/sec mean:1015.47 KB/sec stddev:0.03 B/sec num instances: 1 - AverageThreadTokens: 1.93 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.17 MB (9616839) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1.92M (1920800) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 78.024ms - TotalStorageWaitTime: 2.578ms - TotalThreadsInvoluntaryContextSwitches: 1.97K (1966) - TotalThreadsTotalWallClockTime: 14s492ms - TotalThreadsSysTime: 28.000ms - TotalThreadsUserTime: 1s712ms - TotalThreadsVoluntaryContextSwitches: 1.81K (1807) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 7s210ms - ExecTreeExecTime: 3s337ms - OpenTime: 164.337ms - ExecTreeOpenTime: 93.573us - PrepareTime: 14.466ms - ExecTreePrepareTime: 142.730us KrpcDataStreamSender (dst_id=88):(Total: 1s499ms, non-child: 1s499ms, % non-child: 100.00%) - BytesSent: 14.67 MB (15378251) - EosSent: 3 (3) - OverallThroughput: 9.78 MB/sec - PeakMemoryUsage: 160.78 KB (164640) - RowsReturned: 1.92M (1920800) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1s499ms - UncompressedRowBatchSize: 23.81 MB (24970400) HDFS_SCAN_NODE (id=17):(Total: 3s328ms, non-child: 3s328ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.51 MB (7871794) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.51 MB (7871794) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.51 MB (7871794) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 1.650ms - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9443592) - PerReadThreadRawHdfsThroughput: 3.22 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 65.248ms - RowBatchQueuePutWaitTime: 6s777ms - RowsRead: 1.92M (1920800) - RowsReturned: 1.92M (1920800) - RowsReturnedRate: 577.10 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 34 (34) - ScannerThreadsTotalWallClockTime: 7s117ms - MaterializeTupleTime(*): 237.313ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 152.000ms - ScannerThreadsVoluntaryContextSwitches: 1.76K (1759) - TotalRawHdfsOpenFileTime(*): 23.911us - TotalRawHdfsReadTime(*): 2.273ms - TotalReadThroughput: 1.00 MB/sec CodeGen:(Total: 163.779ms, non-child: 163.779ms, % non-child: 100.00%) - CodegenTime: 595.553us - CompileTime: 1.727ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 119.829ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 41.716ms Fragment F16: Instance 3f4b6afbed1991fc:3c2305570000001a (host=XXX:22001):(Total: 7s388ms, non-child: 2s397ms, % non-child: 32.44%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB Fragment Instance Lifecycle Event Timeline: 7s531ms - Prepare Finished: 157.009ms (157.009ms) - Open Finished: 321.354ms (164.345ms) - First Batch Produced: 406.539ms (85.184ms) - First Batch Sent: 406.972ms (433.638us) - ExecInternal Finished: 7s531ms (7s124ms) MemoryUsage(500.000ms): 137.28 KB, 9.16 MB, 9.16 MB, 9.12 MB, 9.14 MB, 9.17 MB, 9.17 MB, 9.15 MB, 9.17 MB, 9.16 MB, 9.15 MB, 9.16 MB, 9.11 MB, 9.12 MB, 9.16 MB ThreadUsage(500.000ms): 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 - AverageThreadTokens: 1.93 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.17 MB (9616839) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1.92M (1920800) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 78.024ms - TotalStorageWaitTime: 2.578ms - TotalThreadsInvoluntaryContextSwitches: 1.97K (1966) - TotalThreadsTotalWallClockTime: 14s492ms - TotalThreadsSysTime: 28.000ms - TotalThreadsUserTime: 1s712ms - TotalThreadsVoluntaryContextSwitches: 1.81K (1807) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 7s210ms - ExecTreeExecTime: 3s337ms - OpenTime: 164.337ms - ExecTreeOpenTime: 93.573us - PrepareTime: 14.466ms - ExecTreePrepareTime: 142.730us KrpcDataStreamSender (dst_id=88):(Total: 1s499ms, non-child: 1s499ms, % non-child: 100.00%) - BytesSent: 14.67 MB (15378251) - EosSent: 3 (3) - OverallThroughput: 9.78 MB/sec - PeakMemoryUsage: 160.78 KB (164640) - RowsReturned: 1.92M (1920800) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1s499ms - UncompressedRowBatchSize: 23.81 MB (24970400) HDFS_SCAN_NODE (id=17):(Total: 3s328ms, non-child: 3s328ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB - FooterProcessingTime: (Avg: 5.647ms ; Min: 5.647ms ; Max: 5.647ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.51 MB (7871794) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.51 MB (7871794) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.51 MB (7871794) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 1.650ms - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9443592) - PerReadThreadRawHdfsThroughput: 3.22 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 65.248ms - RowBatchQueuePutWaitTime: 6s777ms - RowsRead: 1.92M (1920800) - RowsReturned: 1.92M (1920800) - RowsReturnedRate: 577.10 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 34 (34) - ScannerThreadsTotalWallClockTime: 7s117ms - MaterializeTupleTime(*): 237.313ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 152.000ms - ScannerThreadsVoluntaryContextSwitches: 1.76K (1759) - TotalRawHdfsOpenFileTime(*): 23.911us - TotalRawHdfsReadTime(*): 2.273ms - TotalReadThroughput: 1.00 MB/sec CodeGen:(Total: 163.779ms, non-child: 163.779ms, % non-child: 100.00%) - CodegenTime: 595.553us - CompileTime: 1.727ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 119.829ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 41.716ms Averaged Fragment F18:(Total: 448.943ms, non-child: 34.808ms, % non-child: 7.75%) split sizes: min: 1.73 MB, max: 1.73 MB, avg: 1.73 MB, stddev: 0 completion times: min:596.686ms max:596.686ms mean: 596.686ms stddev:0.000ns execution rates: min:2.90 MB/sec max:2.90 MB/sec mean:2.90 MB/sec stddev:0.12 B/sec num instances: 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 885.41 KB (906663) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 167.99 MB (176146313) - RowsProduced: 18.00K (18000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 57.723us - TotalStorageWaitTime: 9.888us - TotalThreadsInvoluntaryContextSwitches: 72 (72) - TotalThreadsTotalWallClockTime: 424.454ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 36.000ms - TotalThreadsVoluntaryContextSwitches: 69 (69) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 165.932ms - ExecTreeExecTime: 145.611ms - OpenTime: 258.531ms - ExecTreeOpenTime: 91.759us - PrepareTime: 24.398ms - ExecTreePrepareTime: 147.453us KrpcDataStreamSender (dst_id=89):(Total: 10.176ms, non-child: 10.176ms, % non-child: 100.00%) - BytesSent: 263.99 KB (270323) - EosSent: 3 (3) - OverallThroughput: 25.33 MB/sec - PeakMemoryUsage: 15.35 KB (15720) - RowsReturned: 18.00K (18000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.025ms - UncompressedRowBatchSize: 861.33 KB (882000) HDFS_SCAN_NODE (id=21):(Total: 145.994ms, non-child: 145.994ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 277.86 KB (284524) - BytesReadDataNodeCache: 0 - BytesReadLocal: 277.86 KB (284524) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 277.86 KB (284524) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 47.990us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 861.66 KB (882336) - PerReadThreadRawHdfsThroughput: 418.60 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 74.828ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 18.00K (18000) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 123.29 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 0 (0) - ScannerThreadsTotalWallClockTime: 0.000ns - MaterializeTupleTime(*): 3.555ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 0.000ns - ScannerThreadsVoluntaryContextSwitches: 0 (0) - TotalRawHdfsOpenFileTime(*): 24.157us - TotalRawHdfsReadTime(*): 648.223us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 257.963ms, non-child: 257.963ms, % non-child: 100.00%) - CodegenTime: 639.848us - CompileTime: 27.744ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 87.691ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 141.983ms Fragment F18: Instance 3f4b6afbed1991fc:3c2305570000001b (host=XXX:22001):(Total: 448.943ms, non-child: 34.808ms, % non-child: 7.75%) Hdfs split stats (:<# splits>/): 0:1/1.73 MB Fragment Instance Lifecycle Event Timeline: 583.414ms - Prepare Finished: 158.945ms (158.945ms) - Open Finished: 417.486ms (258.540ms) - First Batch Produced: 482.031ms (64.545ms) - First Batch Sent: 482.712ms (680.539us) - ExecInternal Finished: 583.414ms (100.702ms) MemoryUsage(500.000ms): 23.35 KB ThreadUsage(500.000ms): 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 885.41 KB (906663) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 167.99 MB (176146313) - RowsProduced: 18.00K (18000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 57.723us - TotalStorageWaitTime: 9.888us - TotalThreadsInvoluntaryContextSwitches: 72 (72) - TotalThreadsTotalWallClockTime: 424.454ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 36.000ms - TotalThreadsVoluntaryContextSwitches: 69 (69) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 165.932ms - ExecTreeExecTime: 145.611ms - OpenTime: 258.531ms - ExecTreeOpenTime: 91.759us - PrepareTime: 24.398ms - ExecTreePrepareTime: 147.453us KrpcDataStreamSender (dst_id=89):(Total: 10.176ms, non-child: 10.176ms, % non-child: 100.00%) - BytesSent: 263.99 KB (270323) - EosSent: 3 (3) - OverallThroughput: 25.33 MB/sec - PeakMemoryUsage: 15.35 KB (15720) - RowsReturned: 18.00K (18000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.025ms - UncompressedRowBatchSize: 861.33 KB (882000) HDFS_SCAN_NODE (id=21):(Total: 145.994ms, non-child: 145.994ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/1.73 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0 - FooterProcessingTime: (Avg: 228.297us ; Min: 228.297us ; Max: 228.297us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 277.86 KB (284524) - BytesReadDataNodeCache: 0 - BytesReadLocal: 277.86 KB (284524) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 277.86 KB (284524) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 47.990us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 861.66 KB (882336) - PerReadThreadRawHdfsThroughput: 418.60 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 74.828ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 18.00K (18000) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 123.29 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 0 (0) - ScannerThreadsTotalWallClockTime: 0.000ns - MaterializeTupleTime(*): 3.555ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 0.000ns - ScannerThreadsVoluntaryContextSwitches: 0 (0) - TotalRawHdfsOpenFileTime(*): 24.157us - TotalRawHdfsReadTime(*): 648.223us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 257.963ms, non-child: 257.963ms, % non-child: 100.00%) - CodegenTime: 639.848us - CompileTime: 27.744ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 87.691ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 141.983ms Averaged Fragment F27:(Total: 7s740ms, non-child: 487.394ms, % non-child: 6.30%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s790ms max:7s836ms mean: 7s808ms stddev:20.057ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.04 - BloomFilterBytes: 0 - PeakMemoryUsage: 26.05 MB (27312412) - PeakReservation: 23.94 MB (25100288) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 421 (421) - TotalNetworkReceiveTime: 1s886ms - TotalNetworkSendTime: 1.957ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 385 (385) - TotalThreadsTotalWallClockTime: 7s736ms - TotalThreadsSysTime: 1.333ms - TotalThreadsUserTime: 1s040ms - TotalThreadsVoluntaryContextSwitches: 190 (190) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 5.817ms - ExecTreeExecTime: 2.699ms - OpenTime: 7s678ms - ExecTreeOpenTime: 2s314ms - PrepareTime: 55.560ms - ExecTreePrepareTime: 16.207ms KrpcDataStreamSender (dst_id=100):(Total: 7.017ms, non-child: 7.017ms, % non-child: 100.00%) - BytesSent: 28.49 KB (29170) - EosSent: 3 (3) - OverallThroughput: 36.46 MB/sec - PeakMemoryUsage: 85.90 KB (87960) - RowsReturned: 421 (421) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 456.521us - UncompressedRowBatchSize: 98.23 KB (100588) AGGREGATION_NODE (id=42):(Total: 2s332ms, non-child: 0.000ns, % non-child: 0.00%) - GetResultsTime: 270.328us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.10 MB (2197632) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 421 (421) - RowsReturnedRate: 180.00 /sec - StreamingTime: 1.013ms HASH_JOIN_NODE (id=41):(Total: 2s345ms, non-child: 35.565ms, % non-child: 1.52%) - BuildRows: 18.00K (18000) - BuildTime: 41.964ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 439 (439) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 95.987us - RowsReturned: 439 (439) - RowsReturnedRate: 187.00 /sec Hash Join Builder (join_node_id=41): - BuildRowsPartitionTime: 12.959ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 28.513ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=99):(Total: 10.003ms, non-child: 10.003ms, % non-child: 100.00%) - ConvertRowBatchTime: 9.832ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 3.02 M/sec Buffer pool: - AllocTime: 101.075us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 86.760us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.572ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=40):(Total: 2s309ms, non-child: 201.996ms, % non-child: 8.75%) - BuildRows: 640.27K (640266) - BuildTime: 172.683ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 443 (443) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 181.105us - RowsReturned: 439 (439) - RowsReturnedRate: 190.00 /sec Hash Join Builder (join_node_id=40): - BuildRowsPartitionTime: 81.889ms - BuildRowsPartitioned: 640.27K (640266) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 90.087ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=98):(Total: 2s107ms, non-child: 2s107ms, % non-child: 100.00%) - ConvertRowBatchTime: 219.677ms - PeakMemoryUsage: 3.70 MB (3883008) - RowsReturned: 640.27K (640266) - RowsReturnedRate: 307.92 K/sec Buffer pool: - AllocTime: 1.064ms - CumulativeAllocationBytes: 9.17 MB (9614677) - CumulativeAllocations: 392 (392) - PeakReservation: 3.70 MB (3883008) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.70 MB (3883008) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.94 MB (8323466) - TotalGetBatchTime: 1s886ms - DataArrivalTimer: 1s885ms SenderSide: - DeserializeRowBatchTime: 14.724ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=97):(Total: 142.793us, non-child: 142.793us, % non-child: 100.00%) - ConvertRowBatchTime: 71.573us - PeakMemoryUsage: 168.00 KB (172032) - RowsReturned: 443 (443) - RowsReturnedRate: 3.26 M/sec Buffer pool: - AllocTime: 26.368us - CumulativeAllocationBytes: 168.00 KB (172032) - CumulativeAllocations: 11 (11) - PeakReservation: 168.00 KB (172032) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 168.00 KB (172032) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 92.19 KB (94399) - TotalGetBatchTime: 20.991us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 355.033us - NumBatchesArrived: 5 (5) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 5 (5) - NumBatchesReceived: 5 (5) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 1.863ms - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 58.585us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 29.601us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 4s913ms, non-child: 4s913ms, % non-child: 100.00%) - CodegenTime: 489.372ms - CompileTime: 277.955ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 175 (175) - NumInstructions: 10.58K (10583) - OptimizationTime: 4s425ms - PeakMemoryUsage: 5.17 MB (5418496) - PrepareTime: 207.578ms Fragment F27: Instance 3f4b6afbed1991fc:3c2305570000002c (host=XXX:22000):(Total: 7s831ms, non-child: 346.945ms, % non-child: 4.43%) Fragment Instance Lifecycle Event Timeline: 7s834ms - Prepare Finished: 24.976ms (24.976ms) - Open Finished: 7s830ms (7s805ms) - First Batch Produced: 7s831ms (937.596us) - First Batch Sent: 7s831ms (1.399us) - ExecInternal Finished: 7s834ms (2.863ms) MemoryUsage(500.000ms): 200.52 KB, 5.36 MB, 6.74 MB, 7.11 MB, 7.49 MB, 7.86 MB, 8.29 MB, 8.75 MB, 9.18 MB, 9.69 MB, 4.95 MB, 10.53 MB, 10.53 MB, 10.53 MB, 10.70 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 25.95 MB (27214108) - PeakReservation: 23.94 MB (25100288) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 428 (428) - TotalNetworkReceiveTime: 1s971ms - TotalNetworkSendTime: 1.355ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 585 (585) - TotalThreadsTotalWallClockTime: 7s855ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s048ms - TotalThreadsVoluntaryContextSwitches: 168 (168) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 3.805ms - ExecTreeExecTime: 1.576ms - OpenTime: 7s805ms - ExecTreeOpenTime: 2s432ms - PrepareTime: 20.278ms - ExecTreePrepareTime: 613.772us KrpcDataStreamSender (dst_id=100):(Total: 439.110us, non-child: 439.110us, % non-child: 100.00%) - BytesSent: 28.58 KB (29270) - EosSent: 3 (3) - OverallThroughput: 63.57 MB/sec - PeakMemoryUsage: 85.90 KB (87960) - RowsReturned: 428 (428) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 331.997us - UncompressedRowBatchSize: 99.89 KB (102292) AGGREGATION_NODE (id=42):(Total: 2s434ms, non-child: 1.646ms, % non-child: 0.07%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 205.225us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 9 (9) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.10 MB (2197632) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 428 (428) - RowsReturnedRate: 175.00 /sec - StreamingTime: 615.272us HASH_JOIN_NODE (id=41):(Total: 2s432ms, non-child: 28.065ms, % non-child: 1.15%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 35.840ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 438 (438) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 69.274us - RowsReturned: 438 (438) - RowsReturnedRate: 180.00 /sec Hash Join Builder (join_node_id=41): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 13.481ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 21.886ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=99):(Total: 9.523ms, non-child: 9.523ms, % non-child: 100.00%) - ConvertRowBatchTime: 9.355ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 1.89 M/sec Buffer pool: - AllocTime: 97.584us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 82.623us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.581ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=40):(Total: 2s404ms, non-child: 180.315ms, % non-child: 7.50%) ExecOption: Probe Side Codegen Enabled - BuildRows: 641.22K (641220) - BuildTime: 177.253ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 438 (438) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 42.948us - RowsReturned: 438 (438) - RowsReturnedRate: 182.00 /sec Hash Join Builder (join_node_id=40): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 59.250ms - BuildRowsPartitioned: 641.22K (641220) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 117.289ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=98):(Total: 2s224ms, non-child: 254.834ms, % non-child: 11.46%) - ConvertRowBatchTime: 252.217ms - PeakMemoryUsage: 3.61 MB (3784704) - RowsReturned: 641.22K (641220) - RowsReturnedRate: 288.27 K/sec Buffer pool: - AllocTime: 1.079ms - CumulativeAllocationBytes: 9.19 MB (9633792) - CumulativeAllocations: 392 (392) - PeakReservation: 3.61 MB (3784704) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.61 MB (3784704) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 124.77 KB, 457.49 KB, 790.21 KB, 1.10 MB, 1.46 MB, 1.87 MB, 2.23 MB, 2.68 MB, 3.05 MB, 3.53 MB, 4.14 MB, 5.28 MB, 6.42 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.95 MB (8335860) - TotalGetBatchTime: 1s970ms - DataArrivalTimer: 1s969ms SenderSide: - DeserializeRowBatchTime: 14.480ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=97):(Total: 100.668us, non-child: 100.668us, % non-child: 100.00%) - ConvertRowBatchTime: 47.394us - PeakMemoryUsage: 168.00 KB (172032) - RowsReturned: 438 (438) - RowsReturnedRate: 4.35 M/sec Buffer pool: - AllocTime: 27.337us - CumulativeAllocationBytes: 168.00 KB (172032) - CumulativeAllocations: 12 (12) - PeakReservation: 168.00 KB (172032) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 168.00 KB (172032) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91.11 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 91.11 KB (93294) - TotalGetBatchTime: 15.284us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 354.003us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 5.363ms - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 79.635us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 20.407us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 5s049ms, non-child: 5s049ms, % non-child: 100.00%) - CodegenTime: 312.262ms - CompileTime: 314.936ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 175 (175) - NumInstructions: 10.58K (10583) - OptimizationTime: 4s649ms - PeakMemoryUsage: 5.17 MB (5418496) - PrepareTime: 84.205ms Instance 3f4b6afbed1991fc:3c2305570000002b (host=XXX:22002):(Total: 7s782ms, non-child: 268.311ms, % non-child: 3.45%) Fragment Instance Lifecycle Event Timeline: 7s788ms - Prepare Finished: 17.438ms (17.438ms) - Open Finished: 7s779ms (7s762ms) - First Batch Produced: 7s782ms (2.539ms) - First Batch Sent: 7s782ms (4.257us) - ExecInternal Finished: 7s788ms (5.845ms) MemoryUsage(500.000ms): 200.52 KB, 5.36 MB, 6.74 MB, 7.11 MB, 7.49 MB, 7.86 MB, 8.29 MB, 8.71 MB, 9.18 MB, 9.64 MB, 11.59 MB, 10.34 MB, 10.34 MB, 10.34 MB, 10.52 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1 - AverageThreadTokens: 1.07 - BloomFilterBytes: 0 - PeakMemoryUsage: 25.77 MB (27025692) - PeakReservation: 23.94 MB (25100288) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 449 (449) - TotalNetworkReceiveTime: 2s126ms - TotalNetworkSendTime: 3.272ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 216 (216) - TotalThreadsTotalWallClockTime: 7s833ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s036ms - TotalThreadsVoluntaryContextSwitches: 185 (185) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 8.392ms - ExecTreeExecTime: 3.723ms - OpenTime: 7s762ms - ExecTreeOpenTime: 2s524ms - PrepareTime: 11.860ms - ExecTreePrepareTime: 1.472ms KrpcDataStreamSender (dst_id=100):(Total: 671.282us, non-child: 671.282us, % non-child: 100.00%) - BytesSent: 30.61 KB (31348) - EosSent: 3 (3) - OverallThroughput: 44.54 MB/sec - PeakMemoryUsage: 85.90 KB (87960) - RowsReturned: 449 (449) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 558.379us - UncompressedRowBatchSize: 104.80 KB (107311) AGGREGATION_NODE (id=42):(Total: 2s529ms, non-child: 4.813ms, % non-child: 0.19%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 306.034us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.10 MB (2197632) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 449 (449) - RowsReturnedRate: 177.00 /sec - StreamingTime: 1.289ms HASH_JOIN_NODE (id=41):(Total: 2s524ms, non-child: 31.308ms, % non-child: 1.24%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 59.323ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 481 (481) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 125.054us - RowsReturned: 481 (481) - RowsReturnedRate: 190.00 /sec Buffer pool: - AllocTime: 49.712us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=41): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 22.318ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 36.457ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=99):(Total: 2.929ms, non-child: 2.929ms, % non-child: 100.00%) - ConvertRowBatchTime: 2.741ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 6.14 M/sec Buffer pool: - AllocTime: 104.177us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 95.989us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.595ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=40):(Total: 2s493ms, non-child: 175.340ms, % non-child: 7.03%) ExecOption: Probe Side Codegen Enabled - BuildRows: 639.71K (639709) - BuildTime: 171.833ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 493 (493) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 443.549us - RowsReturned: 481 (481) - RowsReturnedRate: 192.00 /sec Buffer pool: - AllocTime: 133.659us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=40): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 97.738ms - BuildRowsPartitioned: 639.71K (639709) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 73.432ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=98):(Total: 2s318ms, non-child: 193.263ms, % non-child: 8.34%) - ConvertRowBatchTime: 190.802ms - PeakMemoryUsage: 3.42 MB (3588096) - RowsReturned: 639.71K (639709) - RowsReturnedRate: 275.97 K/sec Buffer pool: - AllocTime: 1.054ms - CumulativeAllocationBytes: 9.16 MB (9601024) - CumulativeAllocations: 392 (392) - PeakReservation: 3.42 MB (3588096) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.42 MB (3588096) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 124.77 KB, 457.49 KB, 790.21 KB, 1.10 MB, 1.46 MB, 1.83 MB, 2.23 MB, 2.64 MB, 3.05 MB, 3.53 MB, 4.14 MB, 5.28 MB, 6.42 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.93 MB (8316217) - TotalGetBatchTime: 2s126ms - DataArrivalTimer: 2s124ms SenderSide: - DeserializeRowBatchTime: 14.579ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=97):(Total: 177.134us, non-child: 177.134us, % non-child: 100.00%) - ConvertRowBatchTime: 91.890us - PeakMemoryUsage: 176.00 KB (180224) - RowsReturned: 493 (493) - RowsReturnedRate: 2.78 M/sec Buffer pool: - AllocTime: 27.871us - CumulativeAllocationBytes: 176.00 KB (180224) - CumulativeAllocations: 12 (12) - PeakReservation: 176.00 KB (180224) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 176.00 KB (180224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102.55 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 102.55 KB (105009) - TotalGetBatchTime: 24.150us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 401.919us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 33.376us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 4s983ms, non-child: 4s983ms, % non-child: 100.00%) - CodegenTime: 340.560ms - CompileTime: 301.431ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 175 (175) - NumInstructions: 10.58K (10583) - OptimizationTime: 4s378ms - PeakMemoryUsage: 5.17 MB (5418496) - PrepareTime: 303.268ms Instance 3f4b6afbed1991fc:3c2305570000002d (host=XXX:22001):(Total: 7s608ms, non-child: 846.925ms, % non-child: 11.13%) Fragment Instance Lifecycle Event Timeline: 7s784ms - Prepare Finished: 310.489ms (310.489ms) - Open Finished: 7s778ms (7s468ms) - First Batch Produced: 7s780ms (1.742ms) - First Batch Sent: 7s780ms (2.450us) - ExecInternal Finished: 7s784ms (3.506ms) MemoryUsage(500.000ms): 200.52 KB, 200.52 KB, 1.57 MB, 7.11 MB, 7.49 MB, 7.86 MB, 8.29 MB, 8.75 MB, 9.18 MB, 9.64 MB, 10.11 MB, 5.55 MB, 11.00 MB, 11.00 MB, 11.16 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1 - AverageThreadTokens: 1.07 - BloomFilterBytes: 0 - PeakMemoryUsage: 26.41 MB (27697436) - PeakReservation: 23.94 MB (25100288) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 386 (386) - TotalNetworkReceiveTime: 1s562ms - TotalNetworkSendTime: 1.245ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 354 (354) - TotalThreadsTotalWallClockTime: 7s522ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 1s036ms - TotalThreadsVoluntaryContextSwitches: 217 (217) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 5.255ms - ExecTreeExecTime: 2.797ms - OpenTime: 7s468ms - ExecTreeOpenTime: 1s985ms - PrepareTime: 134.541ms - ExecTreePrepareTime: 46.537ms KrpcDataStreamSender (dst_id=100):(Total: 19.943ms, non-child: 19.943ms, % non-child: 100.00%) - BytesSent: 26.26 KB (26892) - EosSent: 3 (3) - OverallThroughput: 1.29 MB/sec - PeakMemoryUsage: 85.90 KB (87960) - RowsReturned: 386 (386) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 479.187us - UncompressedRowBatchSize: 90.00 KB (92163) AGGREGATION_NODE (id=42):(Total: 2s034ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 299.725us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.10 MB (2197632) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 386 (386) - RowsReturnedRate: 189.00 /sec - StreamingTime: 1.137ms HASH_JOIN_NODE (id=41):(Total: 2s077ms, non-child: 47.322ms, % non-child: 2.28%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 30.728ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 399 (399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 93.633us - RowsReturned: 399 (399) - RowsReturnedRate: 192.00 /sec Buffer pool: - AllocTime: 46.409us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=41): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.077ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 27.196ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=99):(Total: 17.556ms, non-child: 17.556ms, % non-child: 100.00%) - ConvertRowBatchTime: 17.399ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 1.03 M/sec Buffer pool: - AllocTime: 101.465us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 81.669us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.540ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=40):(Total: 2s030ms, non-child: 250.334ms, % non-child: 12.33%) ExecOption: Probe Side Codegen Enabled - BuildRows: 639.87K (639871) - BuildTime: 168.964ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 399 (399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 56.818us - RowsReturned: 399 (399) - RowsReturnedRate: 196.00 /sec Buffer pool: - AllocTime: 94.736us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=40): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 88.680ms - BuildRowsPartitioned: 639.87K (639871) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 79.541ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=98):(Total: 1s779ms, non-child: 218.370ms, % non-child: 12.27%) - ConvertRowBatchTime: 216.012ms - PeakMemoryUsage: 4.08 MB (4276224) - RowsReturned: 639.87K (639871) - RowsReturnedRate: 359.53 K/sec Buffer pool: - AllocTime: 1.060ms - CumulativeAllocationBytes: 9.16 MB (9609216) - CumulativeAllocations: 392 (392) - PeakReservation: 4.08 MB (4276224) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.08 MB (4276224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 124.77 KB, 457.49 KB, 790.21 KB, 1.10 MB, 1.46 MB, 1.87 MB, 2.23 MB, 2.64 MB, 3.05 MB, 3.53 MB, 4.14 MB, 5.28 MB, 6.38 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.93 MB (8318323) - TotalGetBatchTime: 1s562ms - DataArrivalTimer: 1s561ms SenderSide: - DeserializeRowBatchTime: 15.114ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=97):(Total: 150.579us, non-child: 150.579us, % non-child: 100.00%) - ConvertRowBatchTime: 75.436us - PeakMemoryUsage: 160.00 KB (163840) - RowsReturned: 399 (399) - RowsReturnedRate: 2.65 M/sec Buffer pool: - AllocTime: 23.898us - CumulativeAllocationBytes: 160.00 KB (163840) - CumulativeAllocations: 10 (10) - PeakReservation: 160.00 KB (163840) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 160.00 KB (163840) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82.91 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 82.91 KB (84896) - TotalGetBatchTime: 23.541us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 309.178us - NumBatchesArrived: 5 (5) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 5 (5) - NumBatchesReceived: 5 (5) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 35.022us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 4s706ms, non-child: 4s706ms, % non-child: 100.00%) - CodegenTime: 815.293ms - CompileTime: 217.496ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 175 (175) - NumInstructions: 10.58K (10583) - OptimizationTime: 4s248ms - PeakMemoryUsage: 5.17 MB (5418496) - PrepareTime: 235.261ms Averaged Fragment F25:(Total: 7s239ms, non-child: 88.853ms, % non-child: 1.23%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s306ms max:7s310ms mean: 7s308ms stddev:1.766ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.31 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.58 MB (7946496) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 443 (443) - TotalNetworkReceiveTime: 7s418ms - TotalNetworkSendTime: 4.969ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 145 (145) - TotalThreadsTotalWallClockTime: 9s494ms - TotalThreadsSysTime: 1.333ms - TotalThreadsUserTime: 306.666ms - TotalThreadsVoluntaryContextSwitches: 195 (195) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s559ms - ExecTreeExecTime: 1s552ms - OpenTime: 5s631ms - ExecTreeOpenTime: 3s659ms - PrepareTime: 41.882ms - ExecTreePrepareTime: 10.009ms KrpcDataStreamSender (dst_id=97):(Total: 7.484ms, non-child: 7.484ms, % non-child: 100.00%) - BytesSent: 35.81 KB (36672) - EosSent: 3 (3) - OverallThroughput: 18.92 MB/sec - PeakMemoryUsage: 91.44 KB (93634) - RowsReturned: 443 (443) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.150ms - UncompressedRowBatchSize: 92.19 KB (94399) HASH_JOIN_NODE (id=39):(Total: 5s224ms, non-child: 50.639ms, % non-child: 0.97%) - BuildRows: 45.73K (45733) - BuildTime: 71.967ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.61K (6605) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.332ms - RowsReturned: 443 (443) - RowsReturnedRate: 85.00 /sec Buffer pool: - AllocTime: 90.047us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=39): - BuildRowsPartitionTime: 30.237ms - BuildRowsPartitioned: 45.73K (45733) - HashBuckets: 129.71K (129706) - HashCollisions: 0 (0) - HashTablesBuildTime: 41.159ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=96):(Total: 3s096ms, non-child: 3s096ms, % non-child: 100.00%) - ConvertRowBatchTime: 6.974ms - PeakMemoryUsage: 765.33 KB (783701) - RowsReturned: 45.73K (45733) - RowsReturnedRate: 15.15 K/sec Buffer pool: - AllocTime: 696.524us - CumulativeAllocationBytes: 4.48 MB (4702208) - CumulativeAllocations: 230 (230) - PeakReservation: 765.33 KB (783701) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 765.33 KB (783701) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2606800) - TotalGetBatchTime: 3s088ms - DataArrivalTimer: 3s071ms SenderSide: - DeserializeRowBatchTime: 13.048ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=95):(Total: 4s331ms, non-child: 4s331ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.056ms - PeakMemoryUsage: 1.38 MB (1449984) - RowsReturned: 6.61K (6605) - RowsReturnedRate: 1.89 K/sec Buffer pool: - AllocTime: 237.455us - CumulativeAllocationBytes: 1.72 MB (1807701) - CumulativeAllocations: 89 (89) - PeakReservation: 1.38 MB (1449984) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.38 MB (1449984) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 2s606ms - TotalBytesReceived: 1005.30 KB (1029431) - TotalGetBatchTime: 4s330ms - DataArrivalTimer: 4s329ms SenderSide: - DeserializeRowBatchTime: 3.037ms - NumBatchesArrived: 44 (44) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 44 (44) - NumBatchesReceived: 44 (44) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s918ms, non-child: 1s918ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 172.040ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s634ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 111.913ms Fragment F25: Instance 3f4b6afbed1991fc:3c23055700000027 (host=XXX:22000):(Total: 7s302ms, non-child: 21.342ms, % non-child: 0.29%) Fragment Instance Lifecycle Event Timeline: 7s308ms - Prepare Finished: 9.719ms (9.719ms) - Open Finished: 5s696ms (5s686ms) - First Batch Produced: 7s299ms (1s602ms) - First Batch Sent: 7s300ms (1.634ms) - ExecInternal Finished: 7s308ms (7.975ms) MemoryUsage(500.000ms): 1.30 MB, 1.30 MB, 111.02 KB, 5.01 MB, 5.01 MB, 5.02 MB, 5.05 MB, 5.05 MB, 5.05 MB, 5.05 MB, 6.12 MB, 6.47 MB, 7.23 MB, 7.56 MB ThreadUsage(500.000ms): 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1 - AverageThreadTokens: 1.50 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.69 MB (8058454) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 428 (428) - TotalNetworkReceiveTime: 9s601ms - TotalNetworkSendTime: 7.472ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 200 (200) - TotalThreadsTotalWallClockTime: 11s149ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 308.000ms - TotalThreadsVoluntaryContextSwitches: 188 (188) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s612ms - ExecTreeExecTime: 1s602ms - OpenTime: 5s686ms - ExecTreeOpenTime: 4s275ms - PrepareTime: 3.598ms - ExecTreePrepareTime: 301.368us KrpcDataStreamSender (dst_id=97):(Total: 1.228ms, non-child: 1.228ms, % non-child: 100.00%) - BytesSent: 34.64 KB (35467) - EosSent: 3 (3) - OverallThroughput: 27.54 MB/sec - PeakMemoryUsage: 96.77 KB (99096) - RowsReturned: 428 (428) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.113ms - UncompressedRowBatchSize: 89.03 KB (91164) HASH_JOIN_NODE (id=39):(Total: 5s878ms, non-child: 13.048ms, % non-child: 0.22%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 45.89K (45894) - BuildTime: 104.343ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 7.09K (7089) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 536.221us - RowsReturned: 428 (428) - RowsReturnedRate: 72.00 /sec Buffer pool: - AllocTime: 83.462us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=39): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 46.717ms - BuildRowsPartitioned: 45.89K (45894) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 56.998ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=96):(Total: 3s745ms, non-child: 55.005ms, % non-child: 1.47%) - ConvertRowBatchTime: 6.897ms - PeakMemoryUsage: 176.00 KB (180224) - RowsReturned: 45.89K (45894) - RowsReturnedRate: 12.25 K/sec Buffer pool: - AllocTime: 682.831us - CumulativeAllocationBytes: 4.51 MB (4726784) - CumulativeAllocations: 232 (232) - PeakReservation: 176.00 KB (180224) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 176.00 KB (180224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 222.10 KB, 533.04 KB, 843.98 KB, 1.15 MB, 1.47 MB, 1.80 MB, 2.21 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2615958) - TotalGetBatchTime: 3s737ms - DataArrivalTimer: 3s690ms SenderSide: - DeserializeRowBatchTime: 13.072ms - NumBatchesArrived: 116 (116) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 116 (116) - NumBatchesReceived: 116 (116) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=95):(Total: 5s866ms, non-child: 2.475ms, % non-child: 0.04%) - ConvertRowBatchTime: 1.123ms - PeakMemoryUsage: 1.48 MB (1556480) - RowsReturned: 7.09K (7089) - RowsReturnedRate: 1.21 K/sec Buffer pool: - AllocTime: 262.500us - CumulativeAllocationBytes: 1.85 MB (1941504) - CumulativeAllocations: 96 (96) - PeakReservation: 1.48 MB (1556480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.48 MB (1556480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251.27 KB, 799.17 KB, 1.03 MB - FirstBatchArrivalWaitTime: 4s141ms - TotalBytesReceived: 1.05 MB (1104844) - TotalGetBatchTime: 5s864ms - DataArrivalTimer: 5s863ms SenderSide: - DeserializeRowBatchTime: 3.267ms - NumBatchesArrived: 48 (48) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 48 (48) - NumBatchesReceived: 48 (48) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s401ms, non-child: 1s401ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 178.804ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s192ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 28.859ms Instance 3f4b6afbed1991fc:3c23055700000026 (host=XXX:22002):(Total: 7s298ms, non-child: 109.801ms, % non-child: 1.50%) Fragment Instance Lifecycle Event Timeline: 7s304ms - Prepare Finished: 6.595ms (6.595ms) - Open Finished: 5s773ms (5s766ms) - First Batch Produced: 7s299ms (1s526ms) - First Batch Sent: 7s300ms (1.278ms) - ExecInternal Finished: 7s304ms (3.986ms) MemoryUsage(500.000ms): 111.02 KB, 1.30 MB, 1.30 MB, 1.73 MB, 5.66 MB, 5.66 MB, 5.66 MB, 5.66 MB, 5.66 MB, 5.66 MB, 6.12 MB, 6.44 MB, 7.10 MB, 7.38 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1 - AverageThreadTokens: 1.43 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.46 MB (7820886) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 405 (405) - TotalNetworkReceiveTime: 8s102ms - TotalNetworkSendTime: 3.307ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 82 (82) - TotalThreadsTotalWallClockTime: 10s357ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 300.000ms - TotalThreadsVoluntaryContextSwitches: 189 (189) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s531ms - ExecTreeExecTime: 1s526ms - OpenTime: 5s766ms - ExecTreeOpenTime: 3s598ms - PrepareTime: 947.125us - ExecTreePrepareTime: 320.600us KrpcDataStreamSender (dst_id=97):(Total: 1.171ms, non-child: 1.171ms, % non-child: 100.00%) - BytesSent: 32.70 KB (33487) - EosSent: 3 (3) - OverallThroughput: 27.25 MB/sec - PeakMemoryUsage: 80.77 KB (82712) - RowsReturned: 405 (405) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.046ms - UncompressedRowBatchSize: 84.15 KB (86174) HASH_JOIN_NODE (id=39):(Total: 5s125ms, non-child: 28.745ms, % non-child: 0.56%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 45.73K (45734) - BuildTime: 43.419ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.12K (6120) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 512.222us - RowsReturned: 405 (405) - RowsReturnedRate: 79.00 /sec Buffer pool: - AllocTime: 92.369us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=39): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 10.861ms - BuildRowsPartitioned: 45.73K (45734) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 32.000ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=96):(Total: 3s015ms, non-child: 9.370ms, % non-child: 0.31%) - ConvertRowBatchTime: 7.059ms - PeakMemoryUsage: 800.00 KB (819200) - RowsReturned: 45.73K (45734) - RowsReturnedRate: 15.17 K/sec Buffer pool: - AllocTime: 696.565us - CumulativeAllocationBytes: 4.48 MB (4694016) - CumulativeAllocations: 230 (230) - PeakReservation: 800.00 KB (819200) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 800.00 KB (819200) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 244.31 KB, 533.04 KB, 843.98 KB, 1.15 MB, 1.47 MB, 1.82 MB, 2.21 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2606838) - TotalGetBatchTime: 3s007ms - DataArrivalTimer: 3s006ms SenderSide: - DeserializeRowBatchTime: 12.997ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=95):(Total: 5s096ms, non-child: 1.740ms, % non-child: 0.03%) - ConvertRowBatchTime: 969.727us - PeakMemoryUsage: 1.27 MB (1335296) - RowsReturned: 6.12K (6120) - RowsReturnedRate: 1.20 K/sec Buffer pool: - AllocTime: 206.481us - CumulativeAllocationBytes: 1.59 MB (1662976) - CumulativeAllocations: 82 (82) - PeakReservation: 1.27 MB (1335296) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.27 MB (1335296) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228.07 KB, 707.55 KB, 912.98 KB - FirstBatchArrivalWaitTime: 3s372ms - TotalBytesReceived: 931.26 KB (953615) - TotalGetBatchTime: 5s095ms - DataArrivalTimer: 5s095ms SenderSide: - DeserializeRowBatchTime: 2.755ms - NumBatchesArrived: 41 (41) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 41 (41) - NumBatchesReceived: 41 (41) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 2s062ms, non-child: 2s062ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 173.953ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s696ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 191.667ms Instance 3f4b6afbed1991fc:3c23055700000028 (host=XXX:22001):(Total: 7s117ms, non-child: 135.417ms, % non-child: 1.90%) Fragment Instance Lifecycle Event Timeline: 7s293ms - Prepare Finished: 315.214ms (315.214ms) - Open Finished: 5s757ms (5s442ms) - First Batch Produced: 7s286ms (1s528ms) - First Batch Sent: 7s288ms (1.773ms) - ExecInternal Finished: 7s293ms (4.797ms) MemoryUsage(500.000ms): 111.02 KB, 1.30 MB, 1.30 MB, 1.73 MB, 2.23 MB, 6.17 MB, 6.17 MB, 6.17 MB, 6.17 MB, 6.17 MB, 6.12 MB, 6.50 MB, 7.19 MB, 7.47 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.59 MB (7960150) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 497 (497) - TotalNetworkReceiveTime: 4s550ms - TotalNetworkSendTime: 4.128ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 153 (153) - TotalThreadsTotalWallClockTime: 6s977ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 312.000ms - TotalThreadsVoluntaryContextSwitches: 209 (209) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s535ms - ExecTreeExecTime: 1s528ms - OpenTime: 5s442ms - ExecTreeOpenTime: 3s102ms - PrepareTime: 121.102ms - ExecTreePrepareTime: 29.405ms KrpcDataStreamSender (dst_id=97):(Total: 20.054ms, non-child: 20.054ms, % non-child: 100.00%) - BytesSent: 40.10 KB (41064) - EosSent: 3 (3) - OverallThroughput: 1.95 MB/sec - PeakMemoryUsage: 96.77 KB (99096) - RowsReturned: 497 (497) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.291ms - UncompressedRowBatchSize: 103.38 KB (105861) HASH_JOIN_NODE (id=39):(Total: 4s669ms, non-child: 110.125ms, % non-child: 2.36%) ExecOption: Probe Side Codegen Enabled - BuildRows: 45.57K (45572) - BuildTime: 68.140ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.61K (6608) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 2.948ms - RowsReturned: 497 (497) - RowsReturnedRate: 106.00 /sec Buffer pool: - AllocTime: 94.311us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=39): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 33.133ms - BuildRowsPartitioned: 45.57K (45572) - HashBuckets: 126.98K (126976) - HashCollisions: 0 (0) - HashTablesBuildTime: 34.478ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=96):(Total: 2s527ms, non-child: 9.638ms, % non-child: 0.38%) - ConvertRowBatchTime: 6.965ms - PeakMemoryUsage: 1.29 MB (1351680) - RowsReturned: 45.57K (45572) - RowsReturnedRate: 18.03 K/sec Buffer pool: - AllocTime: 710.177us - CumulativeAllocationBytes: 4.47 MB (4685824) - CumulativeAllocations: 230 (230) - PeakReservation: 1.29 MB (1351680) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.29 MB (1351680) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 244.31 KB, 533.04 KB, 843.98 KB, 1.15 MB, 1.47 MB, 1.80 MB, 2.19 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.48 MB (2597604) - TotalGetBatchTime: 2s519ms - DataArrivalTimer: 2s517ms SenderSide: - DeserializeRowBatchTime: 13.075ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=95):(Total: 2s032ms, non-child: 1.985ms, % non-child: 0.10%) - ConvertRowBatchTime: 1.077ms - PeakMemoryUsage: 1.39 MB (1458176) - RowsReturned: 6.61K (6608) - RowsReturnedRate: 3.25 K/sec Buffer pool: - AllocTime: 243.385us - CumulativeAllocationBytes: 1.73 MB (1818624) - CumulativeAllocations: 90 (90) - PeakReservation: 1.39 MB (1458176) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.39 MB (1458176) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273.81 KB, 776.08 KB, 981.63 KB - FirstBatchArrivalWaitTime: 306.502ms - TotalBytesReceived: 1005.70 KB (1029834) - TotalGetBatchTime: 2s030ms - DataArrivalTimer: 2s030ms SenderSide: - DeserializeRowBatchTime: 3.091ms - NumBatchesArrived: 45 (45) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 45 (45) - NumBatchesReceived: 45 (45) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 2s292ms, non-child: 2s292ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 163.364ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 2s013ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 115.214ms Averaged Fragment F20:(Total: 6s775ms, non-child: 296.289ms, % non-child: 4.37%) split sizes: min: 9.71 MB, max: 43.56 MB, avg: 32.20 MB, stddev: 15.90 MB completion times: min:6s010ms max:7s305ms mean: 6s861ms stddev:602.131ms execution rates: min:1.62 MB/sec max:5.96 MB/sec mean:4.51 MB/sec stddev:2.05 MB/sec num instances: 3 - AverageThreadTokens: 1.20 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 23.74 MB (24888748) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 6.61K (6605) - TotalNetworkReceiveTime: 3.587ms - TotalNetworkSendTime: 17.842ms - TotalStorageWaitTime: 1.500ms - TotalThreadsInvoluntaryContextSwitches: 589 (589) - TotalThreadsTotalWallClockTime: 8s093ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 1s346ms - TotalThreadsVoluntaryContextSwitches: 274 (274) Buffer pool: - AllocTime: 4.585us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 592.474ms - ExecTreeExecTime: 552.130ms - OpenTime: 6s146ms - ExecTreeOpenTime: 851.000ms - PrepareTime: 35.987ms - ExecTreePrepareTime: 1.912ms KrpcDataStreamSender (dst_id=95):(Total: 13.717ms, non-child: 13.717ms, % non-child: 100.00%) - BytesSent: 390.62 KB (399994) - EosSent: 3 (3) - OverallThroughput: 10.11 MB/sec - PeakMemoryUsage: 42.06 KB (43072) - RowsReturned: 6.61K (6605) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.531ms - UncompressedRowBatchSize: 1005.30 KB (1029431) HASH_JOIN_NODE (id=38):(Total: 1s406ms, non-child: 24.433ms, % non-child: 1.74%) - BuildRows: 7.32K (7317) - BuildTime: 13.185ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 4.68 MB (4909994) - ProbeRows: 45.56K (45560) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.019ms - RowsReturned: 6.61K (6605) - RowsReturnedRate: 3.38 K/sec Buffer pool: - AllocTime: 66.251us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=38): - BuildRowsPartitionTime: 3.675ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 6.002ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=94):(Total: 5.583ms, non-child: 5.583ms, % non-child: 100.00%) - ConvertRowBatchTime: 5.500ms - PeakMemoryUsage: 520.00 KB (532480) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 4.35 M/sec Buffer pool: - AllocTime: 46.017us - CumulativeAllocationBytes: 520.00 KB (532480) - CumulativeAllocations: 16 (16) - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 427.33 KB (437590) - TotalGetBatchTime: 43.295us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 2.002ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=37):(Total: 1s382ms, non-child: 41.333ms, % non-child: 2.99%) - BuildRows: 47.71K (47714) - BuildTime: 32.949ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 5.72 MB (6001578) - ProbeRows: 95.23K (95229) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 6.698ms - RowsReturned: 45.56K (45560) - RowsReturnedRate: 23.78 K/sec Buffer pool: - AllocTime: 1.556ms - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=37): - BuildRowsPartitionTime: 3.046ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 29.421ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=93):(Total: 23.075ms, non-child: 23.075ms, % non-child: 100.00%) - ConvertRowBatchTime: 19.312ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 3.15 M/sec Buffer pool: - AllocTime: 236.505us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 3.511ms - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.738ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=36):(Total: 1s318ms, non-child: 33.260ms, % non-child: 2.52%) - BuildRows: 365 (365) - BuildTime: 2.517ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 218.68K (218678) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 14.264ms - RowsReturned: 95.23K (95229) - RowsReturnedRate: 52.59 K/sec Buffer pool: - AllocTime: 716.353us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=36): - BuildRowsPartitionTime: 1.283ms - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 434.983us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=92):(Total: 72.010us, non-child: 72.010us, % non-child: 100.00%) - ConvertRowBatchTime: 55.473us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.10 M/sec Buffer pool: - AllocTime: 6.048us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 9.955us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 25.811us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=29):(Total: 1s284ms, non-child: 1s284ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 6.80 MB (7128132) - BytesReadDataNodeCache: 0 - BytesReadLocal: 6.80 MB (7128132) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 6.80 MB (7128132) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 14.999ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 11.91 MB (12491369) - PerReadThreadRawHdfsThroughput: 1.69 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s263ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 480.52K (480516) - RowsReturned: 218.68K (218678) - RowsReturnedRate: 125.77 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 247 (247) - ScannerThreadsTotalWallClockTime: 1s331ms - MaterializeTupleTime(*): 1s163ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 442.666ms - ScannerThreadsVoluntaryContextSwitches: 2 (2) - TotalRawHdfsOpenFileTime(*): 59.362us - TotalRawHdfsReadTime(*): 3.623ms - TotalReadThroughput: 1012.45 KB/sec Filter 34 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 267.30K (267299) - Rows rejected: 261.84K (261838) - Rows total: 480.52K (480516) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s058ms, non-child: 5s058ms, % non-child: 100.00%) - CodegenTime: 4.395ms - CompileTime: 295.781ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s618ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 139.599ms Fragment F20: Instance 3f4b6afbed1991fc:3c23055700000022 (host=XXX:22002):(Total: 7s295ms, non-child: 330.682ms, % non-child: 4.53%) Hdfs split stats (:<# splits>/): 0:1/43.56 MB Filter 34 arrival: 5s348ms Fragment Instance Lifecycle Event Timeline: 7s302ms - Prepare Finished: 17.458ms (17.458ms) - Open Finished: 5s529ms (5s511ms) - First Batch Produced: 5s570ms (40.766ms) - First Batch Sent: 5s575ms (5.633ms) - ExecInternal Finished: 7s302ms (1s726ms) MemoryUsage(500.000ms): 2.17 MB, 5.72 MB, 5.73 MB, 6.63 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.12 MB, 25.14 MB, 24.96 MB, 30.55 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2 - AverageThreadTokens: 1.21 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 33.02 MB (34620247) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 19.82K (19817) - TotalNetworkReceiveTime: 627.415us - TotalNetworkSendTime: 49.589ms - TotalStorageWaitTime: 2.399ms - TotalThreadsInvoluntaryContextSwitches: 677 (677) - TotalThreadsTotalWallClockTime: 9s232ms - TotalThreadsSysTime: 12.000ms - TotalThreadsUserTime: 1s588ms - TotalThreadsVoluntaryContextSwitches: 680 (680) Buffer pool: - AllocTime: 4.875us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s772ms - ExecTreeExecTime: 1s655ms - OpenTime: 5s511ms - ExecTreeOpenTime: 294.832ms - PrepareTime: 11.014ms - ExecTreePrepareTime: 729.758us KrpcDataStreamSender (dst_id=95):(Total: 37.736ms, non-child: 37.736ms, % non-child: 100.00%) - BytesSent: 1.14 MB (1199982) - EosSent: 3 (3) - OverallThroughput: 30.33 MB/sec - PeakMemoryUsage: 98.06 KB (100416) - RowsReturned: 19.82K (19817) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 37.594ms - UncompressedRowBatchSize: 2.95 MB (3088293) HASH_JOIN_NODE (id=38):(Total: 1s952ms, non-child: 35.890ms, % non-child: 1.84%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 16.429ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 10.06 MB (10547456) - ProbeRows: 136.68K (136682) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 9.057ms - RowsReturned: 19.82K (19817) - RowsReturnedRate: 10.15 K/sec Buffer pool: - AllocTime: 37.915us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=38): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 2.442ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 13.021ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=94):(Total: 14.415ms, non-child: 14.415ms, % non-child: 100.00%) - ConvertRowBatchTime: 14.329ms - PeakMemoryUsage: 520.00 KB (532480) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 507.56 K/sec Buffer pool: - AllocTime: 48.223us - CumulativeAllocationBytes: 520.00 KB (532480) - CumulativeAllocations: 16 (16) - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 427.33 KB (437590) - TotalGetBatchTime: 43.871us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 2.072ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=37):(Total: 1s916ms, non-child: 72.981ms, % non-child: 3.81%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 50.143ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 11.07 MB (11610368) - ProbeRows: 285.69K (285688) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 20.093ms - RowsReturned: 136.68K (136682) - RowsReturnedRate: 71.33 K/sec Buffer pool: - AllocTime: 67.538us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=37): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.103ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 46.596ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=93):(Total: 32.455ms, non-child: 32.455ms, % non-child: 100.00%) - ConvertRowBatchTime: 31.644ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 1.47 M/sec Buffer pool: - AllocTime: 235.239us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 290.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 550.612us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.747ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=36):(Total: 1s810ms, non-child: 72.042ms, % non-child: 3.98%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 1.944ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 656.03K (656034) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 42.793ms - RowsReturned: 285.69K (285688) - RowsReturnedRate: 157.77 K/sec Buffer pool: - AllocTime: 38.004us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=36): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 222.637us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 484.558us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=92):(Total: 74.018us, non-child: 74.018us, % non-child: 100.00%) - ConvertRowBatchTime: 55.349us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 4.93 M/sec Buffer pool: - AllocTime: 7.089us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 11.405us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 29.912us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=29):(Total: 1s738ms, non-child: 1s738ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/43.56 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.11 MB, 9.11 MB, 9.11 MB - FooterProcessingTime: (Avg: 1.627ms ; Min: 1.627ms ; Max: 1.627ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 9.11 MB (9552260) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.11 MB (9552260) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.11 MB (9552260) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 22.591ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 15.70 MB (16462556) - PerReadThreadRawHdfsThroughput: 2.11 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s711ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 656.13K (656132) - RowsReturned: 656.03K (656034) - RowsReturnedRate: 377.31 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 418 (418) - ScannerThreadsTotalWallClockTime: 1s915ms - MaterializeTupleTime(*): 1s607ms - ScannerThreadsSysTime: 12.000ms - ScannerThreadsUserTime: 588.000ms - ScannerThreadsVoluntaryContextSwitches: 3 (3) - TotalRawHdfsOpenFileTime(*): 64.176us - TotalRawHdfsReadTime(*): 4.213ms - TotalReadThroughput: 1.30 MB/sec Filter 34 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 16.48K (16482) - Rows rejected: 98 (98) - Rows total: 656.13K (656132) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 4s975ms, non-child: 4s975ms, % non-child: 100.00%) - CodegenTime: 1.606ms - CompileTime: 304.658ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s481ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 188.688ms Instance 3f4b6afbed1991fc:3c23055700000024 (host=XXX:22001):(Total: 7s031ms, non-child: 500.983ms, % non-child: 7.12%) Hdfs split stats (:<# splits>/): 0:1/43.32 MB Filter 34 arrival: 5s590ms Fragment Instance Lifecycle Event Timeline: 7s255ms - Prepare Finished: 315.192ms (315.192ms) - Open Finished: 7s254ms (6s938ms) - First Batch Produced: 7s254ms (230.802us) - First Batch Sent: 7s254ms (5.430us) - ExecInternal Finished: 7s255ms (1.196ms) MemoryUsage(500.000ms): 2.17 MB, 2.17 MB, 5.73 MB, 6.59 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.45 MB, 24.55 MB, 24.59 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2 - AverageThreadTokens: 1.21 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 24.62 MB (25819486) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 246.964us - TotalNetworkSendTime: 1.118ms - TotalStorageWaitTime: 1.947ms - TotalThreadsInvoluntaryContextSwitches: 581 (581) - TotalThreadsTotalWallClockTime: 8s369ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s456ms - TotalThreadsVoluntaryContextSwitches: 112 (112) Buffer pool: - AllocTime: 4.259us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1.437ms - ExecTreeExecTime: 231.602us - OpenTime: 6s938ms - ExecTreeOpenTime: 1s465ms - PrepareTime: 91.218ms - ExecTreePrepareTime: 4.248ms KrpcDataStreamSender (dst_id=95):(Total: 3.281ms, non-child: 3.281ms, % non-child: 100.00%) - BytesSent: 0 - EosSent: 3 (3) - OverallThroughput: 0.00 /sec - PeakMemoryUsage: 14.06 KB (14400) - RowsReturned: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - UncompressedRowBatchSize: 0 HASH_JOIN_NODE (id=38):(Total: 1s474ms, non-child: 14.694ms, % non-child: 1.00%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 17.181ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 1.99 MB (2091264) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 590.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 125.495us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=38): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 6.085ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.527ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=94):(Total: 1.158ms, non-child: 1.158ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.076ms - PeakMemoryUsage: 520.00 KB (532480) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 6.32 M/sec Buffer pool: - AllocTime: 42.659us - CumulativeAllocationBytes: 520.00 KB (532480) - CumulativeAllocations: 16 (16) - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 427.33 KB (437590) - TotalGetBatchTime: 42.029us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 2.002ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=37):(Total: 1s459ms, non-child: 19.949ms, % non-child: 1.37%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 18.823ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 3.05 MB (3197184) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 649.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 4.501ms - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=37): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.015ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 15.286ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=93):(Total: 7.515ms, non-child: 7.515ms, % non-child: 100.00%) - ConvertRowBatchTime: 7.124ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 6.35 M/sec Buffer pool: - AllocTime: 226.814us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 261.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 176.255us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.706ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=36):(Total: 1s432ms, non-child: 5.229ms, % non-child: 0.37%) ExecOption: Probe Side Codegen Enabled - BuildRows: 365 (365) - BuildTime: 4.448ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 661.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 2.091ms - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=36): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 3.439ms - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 443.384us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=92):(Total: 64.375us, non-child: 64.375us, % non-child: 100.00%) - ConvertRowBatchTime: 52.318us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.67 M/sec Buffer pool: - AllocTime: 5.668us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 6.374us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 23.447us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=29):(Total: 1s426ms, non-child: 1s426ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/43.32 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.06 MB, 9.06 MB - FooterProcessingTime: (Avg: 562.311us ; Min: 562.311us ; Max: 562.311us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 9.06 MB (9499861) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.06 MB (9499861) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.06 MB (9499861) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 21.558ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 15.55 MB (16302263) - PerReadThreadRawHdfsThroughput: 2.00 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s409ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 652.17K (652171) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 254 (254) - ScannerThreadsTotalWallClockTime: 1s410ms - MaterializeTupleTime(*): 1s299ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 604.000ms - ScannerThreadsVoluntaryContextSwitches: 3 (3) - TotalRawHdfsOpenFileTime(*): 59.375us - TotalRawHdfsReadTime(*): 4.422ms - TotalReadThroughput: 1.29 MB/sec Filter 34 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 652.17K (652171) - Rows rejected: 652.17K (652171) - Rows total: 652.17K (652171) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s053ms, non-child: 5s053ms, % non-child: 100.00%) - CodegenTime: 10.064ms - CompileTime: 246.766ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s630ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 162.301ms Instance 3f4b6afbed1991fc:3c23055700000023 (host=XXX:22000):(Total: 5s997ms, non-child: 57.204ms, % non-child: 0.95%) Hdfs split stats (:<# splits>/): 0:1/9.71 MB Filter 34 arrival: 5s304ms Fragment Instance Lifecycle Event Timeline: 6s007ms - Prepare Finished: 15.668ms (15.668ms) - Open Finished: 6s004ms (5s988ms) - First Batch Produced: 6s004ms (286.080us) - First Batch Sent: 6s004ms (3.540us) - ExecInternal Finished: 6s007ms (2.902ms) MemoryUsage(500.000ms): 5.72 MB, 5.72 MB, 5.73 MB, 6.59 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 8.06 MB, 9.08 MB, 13.55 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2 - AverageThreadTokens: 1.17 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 13.57 MB (14226512) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 9.887ms - TotalNetworkSendTime: 2.818ms - TotalStorageWaitTime: 153.553us - TotalThreadsInvoluntaryContextSwitches: 510 (510) - TotalThreadsTotalWallClockTime: 6s679ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 996.000ms - TotalThreadsVoluntaryContextSwitches: 31 (31) Buffer pool: - AllocTime: 4.623us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 3.197ms - ExecTreeExecTime: 285.778us - OpenTime: 5s988ms - ExecTreeOpenTime: 792.531ms - PrepareTime: 5.728ms - ExecTreePrepareTime: 759.196us KrpcDataStreamSender (dst_id=95):(Total: 134.108us, non-child: 134.108us, % non-child: 100.00%) - BytesSent: 0 - EosSent: 3 (3) - OverallThroughput: 0.00 /sec - PeakMemoryUsage: 14.06 KB (14400) - RowsReturned: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - UncompressedRowBatchSize: 0 HASH_JOIN_NODE (id=38):(Total: 794.262ms, non-child: 22.714ms, % non-child: 2.86%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 5.946ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 1.99 MB (2091264) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.100us - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 35.344us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=38): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 2.498ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.459ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=94):(Total: 1.177ms, non-child: 1.177ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.095ms - PeakMemoryUsage: 520.00 KB (532480) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 6.22 M/sec Buffer pool: - AllocTime: 47.170us - CumulativeAllocationBytes: 520.00 KB (532480) - CumulativeAllocations: 16 (16) - PeakReservation: 520.00 KB (532480) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 520.00 KB (532480) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB, 427.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 427.33 KB (437590) - TotalGetBatchTime: 43.985us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.931ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=37):(Total: 771.562ms, non-child: 31.070ms, % non-child: 4.03%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 29.880ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 3.05 MB (3197184) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 837.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 99.704us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=37): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.020ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 26.380ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=93):(Total: 29.255ms, non-child: 29.255ms, % non-child: 100.00%) - ConvertRowBatchTime: 19.169ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 1.63 M/sec Buffer pool: - AllocTime: 247.462us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 261.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 9.806ms - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.762ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=36):(Total: 711.236ms, non-child: 22.509ms, % non-child: 3.16%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 1.160ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 782.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 19.727us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=36): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 188.333us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 377.007us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=92):(Total: 77.637us, non-child: 77.637us, % non-child: 100.00%) - ConvertRowBatchTime: 58.752us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 4.70 M/sec Buffer pool: - AllocTime: 5.388us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 12.088us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 24.076us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=29):(Total: 688.731ms, non-child: 688.731ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/9.71 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.22 MB - FooterProcessingTime: (Avg: 398.615us ; Min: 398.615us ; Max: 398.615us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 2.22 MB (2332276) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.22 MB (2332276) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.22 MB (2332276) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 848.829us - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 4.49 MB (4709289) - PerReadThreadRawHdfsThroughput: 995.48 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 670.109ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 133.25K (133245) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 69 (69) - ScannerThreadsTotalWallClockTime: 670.371ms - MaterializeTupleTime(*): 582.962ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 136.000ms - ScannerThreadsVoluntaryContextSwitches: 2 (2) - TotalRawHdfsOpenFileTime(*): 54.535us - TotalRawHdfsReadTime(*): 2.234ms - TotalReadThroughput: 379.60 KB/sec Filter 34 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 133.25K (133245) - Rows rejected: 133.25K (133245) - Rows total: 133.25K (133245) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s146ms, non-child: 5s146ms, % non-child: 100.00%) - CodegenTime: 1.516ms - CompileTime: 335.918ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s742ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 67.807ms Averaged Fragment F21:(Total: 915.540ms, non-child: 56.775ms, % non-child: 6.20%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:1s235ms max:1s235ms mean: 1s235ms stddev:0.000ns execution rates: min:1.74 MB/sec max:1.74 MB/sec mean:1.74 MB/sec stddev:0.57 B/sec num instances: 1 - AverageThreadTokens: 1.50 - BloomFilterBytes: 0 - PeakMemoryUsage: 900.98 KB (922601) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 202.98 MB (212839249) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 19.177ms - TotalStorageWaitTime: 1.093ms - TotalThreadsInvoluntaryContextSwitches: 38 (38) - TotalThreadsTotalWallClockTime: 1s182ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 60.000ms - TotalThreadsVoluntaryContextSwitches: 90 (90) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 421.484ms - ExecTreeExecTime: 402.060ms - OpenTime: 369.218ms - ExecTreeOpenTime: 116.745us - PrepareTime: 124.770ms - ExecTreePrepareTime: 44.241ms KrpcDataStreamSender (dst_id=92):(Total: 297.056us, non-child: 297.056us, % non-child: 100.00%) - BytesSent: 2.86 KB (2932) - EosSent: 3 (3) - OverallThroughput: 9.41 MB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 123.733us - UncompressedRowBatchSize: 6.06 KB (6205) HDFS_SCAN_NODE (id=34):(Total: 490.691ms, non-child: 490.691ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 465.32 KB (476485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 465.32 KB (476485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 465.32 KB (476485) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 69.358ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 849.29 KB (869668) - PerReadThreadRawHdfsThroughput: 495.95 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 391.866ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 73.05K (73049) - RowsReturned: 365 (365) - RowsReturnedRate: 743.00 /sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 5 (5) - ScannerThreadsTotalWallClockTime: 392.231ms - MaterializeTupleTime(*): 56.560ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 43 (43) - TotalRawHdfsOpenFileTime(*): 39.278us - TotalRawHdfsReadTime(*): 916.242us - TotalReadThroughput: 100.00 KB/sec CodeGen:(Total: 367.776ms, non-child: 367.776ms, % non-child: 100.00%) - CodegenTime: 1.029ms - CompileTime: 18.239ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 20 (20) - NumInstructions: 319 (319) - OptimizationTime: 278.116ms - PeakMemoryUsage: 159.50 KB (163328) - PrepareTime: 69.785ms Fragment F21: Instance 3f4b6afbed1991fc:3c2305570000001f (host=XXX:22001):(Total: 915.540ms, non-child: 56.775ms, % non-child: 6.20%) Hdfs split stats (:<# splits>/): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 1s159ms - Prepare Finished: 368.460ms (368.460ms) - Open Finished: 737.685ms (369.225ms) - First Batch Produced: 1s139ms (402.008ms) - First Batch Sent: 1s139ms (177.481us) - ExecInternal Finished: 1s159ms (19.294ms) MemoryUsage(500.000ms): 0, 187.69 KB ThreadUsage(500.000ms): 1, 2 - AverageThreadTokens: 1.50 - BloomFilterBytes: 0 - PeakMemoryUsage: 900.98 KB (922601) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 202.98 MB (212839249) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 19.177ms - TotalStorageWaitTime: 1.093ms - TotalThreadsInvoluntaryContextSwitches: 38 (38) - TotalThreadsTotalWallClockTime: 1s182ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 60.000ms - TotalThreadsVoluntaryContextSwitches: 90 (90) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 421.484ms - ExecTreeExecTime: 402.060ms - OpenTime: 369.218ms - ExecTreeOpenTime: 116.745us - PrepareTime: 124.770ms - ExecTreePrepareTime: 44.241ms KrpcDataStreamSender (dst_id=92):(Total: 297.056us, non-child: 297.056us, % non-child: 100.00%) - BytesSent: 2.86 KB (2932) - EosSent: 3 (3) - OverallThroughput: 9.41 MB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 123.733us - UncompressedRowBatchSize: 6.06 KB (6205) HDFS_SCAN_NODE (id=34):(Total: 490.691ms, non-child: 490.691ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 100.00 KB - FooterProcessingTime: (Avg: 42.042ms ; Min: 42.042ms ; Max: 42.042ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 465.32 KB (476485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 465.32 KB (476485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 465.32 KB (476485) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 69.358ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 849.29 KB (869668) - PerReadThreadRawHdfsThroughput: 495.95 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 391.866ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 73.05K (73049) - RowsReturned: 365 (365) - RowsReturnedRate: 743.00 /sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 5 (5) - ScannerThreadsTotalWallClockTime: 392.231ms - MaterializeTupleTime(*): 56.560ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 43 (43) - TotalRawHdfsOpenFileTime(*): 39.278us - TotalRawHdfsReadTime(*): 916.242us - TotalReadThroughput: 100.00 KB/sec CodeGen:(Total: 367.776ms, non-child: 367.776ms, % non-child: 100.00%) - CodegenTime: 1.029ms - CompileTime: 18.239ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 20 (20) - NumInstructions: 319 (319) - OptimizationTime: 278.116ms - PeakMemoryUsage: 159.50 KB (163328) - PrepareTime: 69.785ms Averaged Fragment F22:(Total: 1s823ms, non-child: 309.693ms, % non-child: 16.98%) split sizes: min: 5.48 MB, max: 5.48 MB, avg: 5.48 MB, stddev: 0 completion times: min:2s096ms max:2s096ms mean: 2s096ms stddev:0.000ns execution rates: min:2.62 MB/sec max:2.62 MB/sec mean:2.62 MB/sec stddev:0.63 B/sec num instances: 1 - AverageThreadTokens: 1.25 - BloomFilterBytes: 0 - PeakMemoryUsage: 3.99 MB (4179284) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 292.47 MB (306681054) - RowsProduced: 47.71K (47714) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 64.819ms - TotalStorageWaitTime: 61.546ms - TotalThreadsInvoluntaryContextSwitches: 73 (73) - TotalThreadsTotalWallClockTime: 2s054ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 176.000ms - TotalThreadsVoluntaryContextSwitches: 118 (118) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 1.00 MB (1048576) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 591.563ms - ExecTreeExecTime: 504.077ms - OpenTime: 960.670ms - ExecTreeOpenTime: 123.480us - PrepareTime: 271.381ms - ExecTreePrepareTime: 7.847ms KrpcDataStreamSender (dst_id=93):(Total: 27.993ms, non-child: 27.993ms, % non-child: 100.00%) - BytesSent: 916.45 KB (938440) - EosSent: 3 (3) - OverallThroughput: 31.97 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 47.71K (47714) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 19.365ms - UncompressedRowBatchSize: 1.32 MB (1383706) HDFS_SCAN_NODE (id=32):(Total: 527.514ms, non-child: 527.514ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 1.53 MB (1599321) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.53 MB (1599321) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.53 MB (1599321) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 51.523ms - MaxCompressedTextFileLength: 0 - NumColumns: 5 (5) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.92 MB (3058244) - PerReadThreadRawHdfsThroughput: 1017.01 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 405.460ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 100.00K (100000) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 90.45 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 17 (17) - ScannerThreadsTotalWallClockTime: 502.229ms - MaterializeTupleTime(*): 324.992ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 56.000ms - ScannerThreadsVoluntaryContextSwitches: 11 (11) - TotalRawHdfsOpenFileTime(*): 47.587us - TotalRawHdfsReadTime(*): 1.499ms - TotalReadThroughput: 1.02 MB/sec Filter 30 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 958.496ms, non-child: 958.496ms, % non-child: 100.00%) - CodegenTime: 22.831ms - CompileTime: 84.295ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 54 (54) - NumInstructions: 884 (884) - OptimizationTime: 758.910ms - PeakMemoryUsage: 442.00 KB (452608) - PrepareTime: 114.754ms Fragment F22: Instance 3f4b6afbed1991fc:3c23055700000020 (host=XXX:22001):(Total: 1s823ms, non-child: 309.693ms, % non-child: 16.98%) Hdfs split stats (:<# splits>/): 0:1/5.48 MB Fragment Instance Lifecycle Event Timeline: 2s082ms - Prepare Finished: 530.517ms (530.517ms) - Open Finished: 1s491ms (960.680ms) - First Batch Produced: 1s758ms (267.233ms) - First Batch Sent: 1s758ms (471.958us) - ExecInternal Finished: 2s082ms (323.853ms) MemoryUsage(500.000ms): 1.00 MB, 1.46 MB, 1.46 MB, 3.78 MB ThreadUsage(500.000ms): 1, 1, 1, 2 - AverageThreadTokens: 1.25 - BloomFilterBytes: 0 - PeakMemoryUsage: 3.99 MB (4179284) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 292.47 MB (306681054) - RowsProduced: 47.71K (47714) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 64.819ms - TotalStorageWaitTime: 61.546ms - TotalThreadsInvoluntaryContextSwitches: 73 (73) - TotalThreadsTotalWallClockTime: 2s054ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 176.000ms - TotalThreadsVoluntaryContextSwitches: 118 (118) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 1.00 MB (1048576) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 591.563ms - ExecTreeExecTime: 504.077ms - OpenTime: 960.670ms - ExecTreeOpenTime: 123.480us - PrepareTime: 271.381ms - ExecTreePrepareTime: 7.847ms KrpcDataStreamSender (dst_id=93):(Total: 27.993ms, non-child: 27.993ms, % non-child: 100.00%) - BytesSent: 916.45 KB (938440) - EosSent: 3 (3) - OverallThroughput: 31.97 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 47.71K (47714) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 19.365ms - UncompressedRowBatchSize: 1.32 MB (1383706) HDFS_SCAN_NODE (id=32):(Total: 527.514ms, non-child: 527.514ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/5.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [30]), waited for 21ms Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 1.53 MB - FooterProcessingTime: (Avg: 184.000us ; Min: 184.000us ; Max: 184.000us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 1.53 MB (1599321) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.53 MB (1599321) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.53 MB (1599321) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 51.523ms - MaxCompressedTextFileLength: 0 - NumColumns: 5 (5) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.92 MB (3058244) - PerReadThreadRawHdfsThroughput: 1017.01 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 405.460ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 100.00K (100000) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 90.45 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 17 (17) - ScannerThreadsTotalWallClockTime: 502.229ms - MaterializeTupleTime(*): 324.992ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 56.000ms - ScannerThreadsVoluntaryContextSwitches: 11 (11) - TotalRawHdfsOpenFileTime(*): 47.587us - TotalRawHdfsReadTime(*): 1.499ms - TotalReadThroughput: 1.02 MB/sec Filter 30 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 958.496ms, non-child: 958.496ms, % non-child: 100.00%) - CodegenTime: 22.831ms - CompileTime: 84.295ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 54 (54) - NumInstructions: 884 (884) - OptimizationTime: 758.910ms - PeakMemoryUsage: 442.00 KB (452608) - PrepareTime: 114.754ms Averaged Fragment F23:(Total: 1s169ms, non-child: 15.987ms, % non-child: 1.37%) split sizes: min: 1.16 MB, max: 1.16 MB, avg: 1.16 MB, stddev: 0 completion times: min:1s501ms max:1s501ms mean: 1s501ms stddev:0.000ns execution rates: min:792.47 KB/sec max:792.47 KB/sec mean:792.47 KB/sec stddev:0.50 B/sec num instances: 1 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.27 MB (1336046) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 256.10 MB (268538592) - RowsProduced: 7.32K (7317) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.463ms - TotalStorageWaitTime: 24.018ms - TotalThreadsInvoluntaryContextSwitches: 67 (67) - TotalThreadsTotalWallClockTime: 1s385ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 112.000ms - TotalThreadsVoluntaryContextSwitches: 95 (95) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 432.930ms - ExecTreeExecTime: 422.971ms - OpenTime: 681.993ms - ExecTreeOpenTime: 123.101us - PrepareTime: 54.701ms - ExecTreePrepareTime: 30.196ms KrpcDataStreamSender (dst_id=94):(Total: 5.678ms, non-child: 5.678ms, % non-child: 100.00%) - BytesSent: 169.05 KB (173112) - EosSent: 3 (3) - OverallThroughput: 29.07 MB/sec - PeakMemoryUsage: 10.36 KB (10608) - RowsReturned: 7.32K (7317) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 5.479ms - UncompressedRowBatchSize: 427.33 KB (437590) HDFS_SCAN_NODE (id=33):(Total: 483.533ms, non-child: 483.533ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 415.80 KB (425783) - BytesReadDataNodeCache: 0 - BytesReadLocal: 415.80 KB (425783) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 415.80 KB (425783) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 84.411us - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.23 MB (1285635) - PerReadThreadRawHdfsThroughput: 67.47 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 264.793ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 50.00K (50000) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 15.13 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 11 (11) - ScannerThreadsTotalWallClockTime: 270.871ms - MaterializeTupleTime(*): 140.753ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 16.000ms - ScannerThreadsVoluntaryContextSwitches: 21 (21) - TotalRawHdfsOpenFileTime(*): 37.467us - TotalRawHdfsReadTime(*): 6.018ms - TotalReadThroughput: 92.64 KB/sec CodeGen:(Total: 664.494ms, non-child: 664.494ms, % non-child: 100.00%) - CodegenTime: 37.874ms - CompileTime: 17.741ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 45 (45) - NumInstructions: 682 (682) - OptimizationTime: 511.013ms - PeakMemoryUsage: 341.00 KB (349184) - PrepareTime: 135.186ms Fragment F23: Instance 3f4b6afbed1991fc:3c23055700000021 (host=XXX:22001):(Total: 1s169ms, non-child: 15.987ms, % non-child: 1.37%) Hdfs split stats (:<# splits>/): 0:1/1.16 MB Fragment Instance Lifecycle Event Timeline: 1s487ms - Prepare Finished: 372.887ms (372.887ms) - Open Finished: 1s054ms (682.001ms) - First Batch Produced: 1s343ms (289.069ms) - First Batch Sent: 1s344ms (870.267us) - ExecInternal Finished: 1s487ms (142.987ms) MemoryUsage(500.000ms): 0, 359.36 KB, 104.23 KB ThreadUsage(500.000ms): 1, 1, 2 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.27 MB (1336046) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 256.10 MB (268538592) - RowsProduced: 7.32K (7317) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.463ms - TotalStorageWaitTime: 24.018ms - TotalThreadsInvoluntaryContextSwitches: 67 (67) - TotalThreadsTotalWallClockTime: 1s385ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 112.000ms - TotalThreadsVoluntaryContextSwitches: 95 (95) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 432.930ms - ExecTreeExecTime: 422.971ms - OpenTime: 681.993ms - ExecTreeOpenTime: 123.101us - PrepareTime: 54.701ms - ExecTreePrepareTime: 30.196ms KrpcDataStreamSender (dst_id=94):(Total: 5.678ms, non-child: 5.678ms, % non-child: 100.00%) - BytesSent: 169.05 KB (173112) - EosSent: 3 (3) - OverallThroughput: 29.07 MB/sec - PeakMemoryUsage: 10.36 KB (10608) - RowsReturned: 7.32K (7317) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 5.479ms - UncompressedRowBatchSize: 427.33 KB (437590) HDFS_SCAN_NODE (id=33):(Total: 483.533ms, non-child: 483.533ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/1.16 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 138.95 KB - FooterProcessingTime: (Avg: 41.961ms ; Min: 41.961ms ; Max: 41.961ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 415.80 KB (425783) - BytesReadDataNodeCache: 0 - BytesReadLocal: 415.80 KB (425783) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 415.80 KB (425783) - CachedFileHandlesHitCount: 4 (4) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 84.411us - MaxCompressedTextFileLength: 0 - NumColumns: 3 (3) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.23 MB (1285635) - PerReadThreadRawHdfsThroughput: 67.47 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 264.793ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 50.00K (50000) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 15.13 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 11 (11) - ScannerThreadsTotalWallClockTime: 270.871ms - MaterializeTupleTime(*): 140.753ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 16.000ms - ScannerThreadsVoluntaryContextSwitches: 21 (21) - TotalRawHdfsOpenFileTime(*): 37.467us - TotalRawHdfsReadTime(*): 6.018ms - TotalReadThroughput: 92.64 KB/sec CodeGen:(Total: 664.494ms, non-child: 664.494ms, % non-child: 100.00%) - CodegenTime: 37.874ms - CompileTime: 17.741ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 45 (45) - NumInstructions: 682 (682) - OptimizationTime: 511.013ms - PeakMemoryUsage: 341.00 KB (349184) - PrepareTime: 135.186ms Averaged Fragment F24:(Total: 4s901ms, non-child: 249.656ms, % non-child: 5.09%) split sizes: min: 7.48 MB, max: 7.48 MB, avg: 7.48 MB, stddev: 0 completion times: min:5s235ms max:5s235ms mean: 5s235ms stddev:0.000ns execution rates: min:1.43 MB/sec max:1.43 MB/sec mean:1.43 MB/sec stddev:0.02 B/sec num instances: 1 - AverageThreadTokens: 1.89 - BloomFilterBytes: 0 - PeakMemoryUsage: 10.13 MB (10623829) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 137.20K (137200) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 70.727ms - TotalStorageWaitTime: 13.348ms - TotalThreadsInvoluntaryContextSwitches: 409 (409) - TotalThreadsTotalWallClockTime: 8s877ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 856.000ms - TotalThreadsVoluntaryContextSwitches: 239 (239) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 4s101ms - ExecTreeExecTime: 3s765ms - OpenTime: 780.487ms - ExecTreeOpenTime: 130.311us - PrepareTime: 19.490ms - ExecTreePrepareTime: 5.639ms KrpcDataStreamSender (dst_id=96):(Total: 101.149ms, non-child: 101.149ms, % non-child: 100.00%) - BytesSent: 2.90 MB (3043464) - EosSent: 3 (3) - OverallThroughput: 28.69 MB/sec - PeakMemoryUsage: 93.35 KB (95592) - RowsReturned: 137.20K (137200) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 100.872ms - UncompressedRowBatchSize: 7.46 MB (7820400) HDFS_SCAN_NODE (id=30):(Total: 3s776ms, non-child: 3s776ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.54 MB (7903345) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.54 MB (7903345) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.54 MB (7903345) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 14.707ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.49 MB (9946472) - PerReadThreadRawHdfsThroughput: 2.87 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 3s671ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 1.92M (1920800) - RowsReturned: 137.20K (137200) - RowsReturnedRate: 36.33 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 342 (342) - ScannerThreadsTotalWallClockTime: 3s995ms - MaterializeTupleTime(*): 2s102ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 544.000ms - ScannerThreadsVoluntaryContextSwitches: 24 (24) - TotalRawHdfsOpenFileTime(*): 38.357us - TotalRawHdfsReadTime(*): 2.567ms - TotalReadThroughput: 1.67 MB/sec CodeGen:(Total: 773.800ms, non-child: 773.800ms, % non-child: 100.00%) - CodegenTime: 1.693ms - CompileTime: 158.572ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 44 (44) - NumInstructions: 769 (769) - OptimizationTime: 452.367ms - PeakMemoryUsage: 384.50 KB (393728) - PrepareTime: 162.351ms Fragment F24: Instance 3f4b6afbed1991fc:3c23055700000025 (host=XXX:22001):(Total: 4s901ms, non-child: 249.656ms, % non-child: 5.09%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB Fragment Instance Lifecycle Event Timeline: 5s222ms - Prepare Finished: 341.089ms (341.089ms) - Open Finished: 1s121ms (780.496ms) - First Batch Produced: 1s344ms (223.267ms) - First Batch Sent: 1s345ms (849.879us) - ExecInternal Finished: 5s222ms (3s876ms) MemoryUsage(500.000ms): 401.85 KB, 8.25 MB, 8.66 MB, 8.53 MB, 8.46 MB, 9.06 MB, 8.95 MB, 9.07 MB, 8.93 MB ThreadUsage(500.000ms): 1, 2, 2, 2, 2, 2, 2, 2, 2 - AverageThreadTokens: 1.89 - BloomFilterBytes: 0 - PeakMemoryUsage: 10.13 MB (10623829) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 137.20K (137200) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 70.727ms - TotalStorageWaitTime: 13.348ms - TotalThreadsInvoluntaryContextSwitches: 409 (409) - TotalThreadsTotalWallClockTime: 8s877ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 856.000ms - TotalThreadsVoluntaryContextSwitches: 239 (239) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 4s101ms - ExecTreeExecTime: 3s765ms - OpenTime: 780.487ms - ExecTreeOpenTime: 130.311us - PrepareTime: 19.490ms - ExecTreePrepareTime: 5.639ms KrpcDataStreamSender (dst_id=96):(Total: 101.149ms, non-child: 101.149ms, % non-child: 100.00%) - BytesSent: 2.90 MB (3043464) - EosSent: 3 (3) - OverallThroughput: 28.69 MB/sec - PeakMemoryUsage: 93.35 KB (95592) - RowsReturned: 137.20K (137200) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 100.872ms - UncompressedRowBatchSize: 7.46 MB (7820400) HDFS_SCAN_NODE (id=30):(Total: 3s776ms, non-child: 3s776ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB - FooterProcessingTime: (Avg: 10.775ms ; Min: 10.775ms ; Max: 10.775ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.54 MB (7903345) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.54 MB (7903345) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.54 MB (7903345) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 14.707ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.49 MB (9946472) - PerReadThreadRawHdfsThroughput: 2.87 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 3s671ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 1.92M (1920800) - RowsReturned: 137.20K (137200) - RowsReturnedRate: 36.33 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 342 (342) - ScannerThreadsTotalWallClockTime: 3s995ms - MaterializeTupleTime(*): 2s102ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 544.000ms - ScannerThreadsVoluntaryContextSwitches: 24 (24) - TotalRawHdfsOpenFileTime(*): 38.357us - TotalRawHdfsReadTime(*): 2.567ms - TotalReadThroughput: 1.67 MB/sec CodeGen:(Total: 773.800ms, non-child: 773.800ms, % non-child: 100.00%) - CodegenTime: 1.693ms - CompileTime: 158.572ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 44 (44) - NumInstructions: 769 (769) - OptimizationTime: 452.367ms - PeakMemoryUsage: 384.50 KB (393728) - PrepareTime: 162.351ms Averaged Fragment F26:(Total: 7s369ms, non-child: 2s159ms, % non-child: 29.30%) split sizes: min: 7.48 MB, max: 7.48 MB, avg: 7.48 MB, stddev: 0 completion times: min:7s711ms max:7s711ms mean: 7s711ms stddev:0.000ns execution rates: min:993.56 KB/sec max:993.56 KB/sec mean:993.56 KB/sec stddev:0.84 B/sec num instances: 1 - AverageThreadTokens: 2.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.17 MB (9616839) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1.92M (1920800) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 9.607ms - TotalStorageWaitTime: 3.619ms - TotalThreadsInvoluntaryContextSwitches: 2.85K (2849) - TotalThreadsTotalWallClockTime: 14s116ms - TotalThreadsSysTime: 24.000ms - TotalThreadsUserTime: 1s696ms - TotalThreadsVoluntaryContextSwitches: 1.84K (1841) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 6s960ms - ExecTreeExecTime: 3s295ms - OpenTime: 274.883ms - ExecTreeOpenTime: 75.186us - PrepareTime: 134.844ms - ExecTreePrepareTime: 50.672ms KrpcDataStreamSender (dst_id=98):(Total: 1s528ms, non-child: 1s528ms, % non-child: 100.00%) - BytesSent: 14.67 MB (15378251) - EosSent: 3 (3) - OverallThroughput: 9.59 MB/sec - PeakMemoryUsage: 160.78 KB (164640) - RowsReturned: 1.92M (1920800) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1s490ms - UncompressedRowBatchSize: 23.81 MB (24970400) HDFS_SCAN_NODE (id=31):(Total: 3s407ms, non-child: 3s407ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.51 MB (7871794) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.51 MB (7871794) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.51 MB (7871794) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 1.596ms - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9443592) - PerReadThreadRawHdfsThroughput: 3.03 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 121.269ms - RowBatchQueuePutWaitTime: 6s449ms - RowsRead: 1.92M (1920800) - RowsReturned: 1.92M (1920800) - RowsReturnedRate: 563.77 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 24 (24) - ScannerThreadsTotalWallClockTime: 6s881ms - MaterializeTupleTime(*): 202.791ms - ScannerThreadsSysTime: 8.000ms - ScannerThreadsUserTime: 148.000ms - ScannerThreadsVoluntaryContextSwitches: 1.77K (1770) - TotalRawHdfsOpenFileTime(*): 13.097us - TotalRawHdfsReadTime(*): 2.416ms - TotalReadThroughput: 1.07 MB/sec CodeGen:(Total: 274.372ms, non-child: 274.372ms, % non-child: 100.00%) - CodegenTime: 602.587us - CompileTime: 16.277ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 199.035ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 58.545ms Fragment F26: Instance 3f4b6afbed1991fc:3c23055700000029 (host=XXX:22001):(Total: 7s369ms, non-child: 2s159ms, % non-child: 29.30%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB Fragment Instance Lifecycle Event Timeline: 7s697ms - Prepare Finished: 462.829ms (462.829ms) - Open Finished: 737.718ms (274.889ms) - First Batch Produced: 875.815ms (138.096ms) - First Batch Sent: 876.262ms (447.230us) - ExecInternal Finished: 7s697ms (6s821ms) MemoryUsage(500.000ms): 8.24 MB, 9.16 MB, 9.11 MB, 9.10 MB, 9.17 MB, 9.17 MB, 9.12 MB, 9.17 MB, 9.16 MB, 9.12 MB, 9.16 MB, 9.12 MB, 9.16 MB, 9.15 MB ThreadUsage(500.000ms): 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 - AverageThreadTokens: 2.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.17 MB (9616839) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1.92M (1920800) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 9.607ms - TotalStorageWaitTime: 3.619ms - TotalThreadsInvoluntaryContextSwitches: 2.85K (2849) - TotalThreadsTotalWallClockTime: 14s116ms - TotalThreadsSysTime: 24.000ms - TotalThreadsUserTime: 1s696ms - TotalThreadsVoluntaryContextSwitches: 1.84K (1841) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 6s960ms - ExecTreeExecTime: 3s295ms - OpenTime: 274.883ms - ExecTreeOpenTime: 75.186us - PrepareTime: 134.844ms - ExecTreePrepareTime: 50.672ms KrpcDataStreamSender (dst_id=98):(Total: 1s528ms, non-child: 1s528ms, % non-child: 100.00%) - BytesSent: 14.67 MB (15378251) - EosSent: 3 (3) - OverallThroughput: 9.59 MB/sec - PeakMemoryUsage: 160.78 KB (164640) - RowsReturned: 1.92M (1920800) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1s490ms - UncompressedRowBatchSize: 23.81 MB (24970400) HDFS_SCAN_NODE (id=31):(Total: 3s407ms, non-child: 3s407ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB - FooterProcessingTime: (Avg: 32.048ms ; Min: 32.048ms ; Max: 32.048ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.51 MB (7871794) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.51 MB (7871794) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.51 MB (7871794) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 1.596ms - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9443592) - PerReadThreadRawHdfsThroughput: 3.03 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 121.269ms - RowBatchQueuePutWaitTime: 6s449ms - RowsRead: 1.92M (1920800) - RowsReturned: 1.92M (1920800) - RowsReturnedRate: 563.77 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 24 (24) - ScannerThreadsTotalWallClockTime: 6s881ms - MaterializeTupleTime(*): 202.791ms - ScannerThreadsSysTime: 8.000ms - ScannerThreadsUserTime: 148.000ms - ScannerThreadsVoluntaryContextSwitches: 1.77K (1770) - TotalRawHdfsOpenFileTime(*): 13.097us - TotalRawHdfsReadTime(*): 2.416ms - TotalReadThroughput: 1.07 MB/sec CodeGen:(Total: 274.372ms, non-child: 274.372ms, % non-child: 100.00%) - CodegenTime: 602.587us - CompileTime: 16.277ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 199.035ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 58.545ms Averaged Fragment F28:(Total: 809.807ms, non-child: 135.395ms, % non-child: 16.72%) split sizes: min: 1.73 MB, max: 1.73 MB, avg: 1.73 MB, stddev: 0 completion times: min:1s236ms max:1s236ms mean: 1s236ms stddev:0.000ns execution rates: min:1.40 MB/sec max:1.40 MB/sec mean:1.40 MB/sec stddev:0.79 B/sec num instances: 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.27 MB (1330787) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 202.98 MB (212839249) - RowsProduced: 18.00K (18000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 30.076ms - TotalStorageWaitTime: 1.348ms - TotalThreadsInvoluntaryContextSwitches: 79 (79) - TotalThreadsTotalWallClockTime: 862.122ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 40.000ms - TotalThreadsVoluntaryContextSwitches: 62 (62) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 321.710ms - ExecTreeExecTime: 221.423ms - OpenTime: 355.314ms - ExecTreeOpenTime: 92.856us - PrepareTime: 132.703ms - ExecTreePrepareTime: 142.844us KrpcDataStreamSender (dst_id=99):(Total: 97.866ms, non-child: 97.866ms, % non-child: 100.00%) - BytesSent: 263.99 KB (270323) - EosSent: 3 (3) - OverallThroughput: 2.63 MB/sec - PeakMemoryUsage: 15.35 KB (15720) - RowsReturned: 18.00K (18000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.545ms - UncompressedRowBatchSize: 861.33 KB (882000) HDFS_SCAN_NODE (id=35):(Total: 221.792ms, non-child: 221.792ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 277.86 KB (284524) - BytesReadDataNodeCache: 0 - BytesReadLocal: 277.86 KB (284524) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 277.86 KB (284524) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 47.517us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.25 MB (1306460) - PerReadThreadRawHdfsThroughput: 329.93 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 149.018ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 18.00K (18000) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 81.16 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 8 (8) - ScannerThreadsTotalWallClockTime: 185.108ms - MaterializeTupleTime(*): 23.139ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 0.000ns - ScannerThreadsVoluntaryContextSwitches: 16 (16) - TotalRawHdfsOpenFileTime(*): 30.377us - TotalRawHdfsReadTime(*): 822.423us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 354.752ms, non-child: 354.752ms, % non-child: 100.00%) - CodegenTime: 596.307us - CompileTime: 33.907ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 298.803ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 21.504ms Fragment F28: Instance 3f4b6afbed1991fc:3c2305570000002a (host=XXX:22001):(Total: 809.807ms, non-child: 135.395ms, % non-child: 16.72%) Hdfs split stats (:<# splits>/): 0:1/1.73 MB Fragment Instance Lifecycle Event Timeline: 1s160ms - Prepare Finished: 483.925ms (483.925ms) - Open Finished: 839.249ms (355.323ms) - First Batch Produced: 1s045ms (206.172ms) - First Batch Sent: 1s046ms (700.493us) - ExecInternal Finished: 1s160ms (114.833ms) MemoryUsage(500.000ms): 23.35 KB ThreadUsage(500.000ms): 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.27 MB (1330787) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 202.98 MB (212839249) - RowsProduced: 18.00K (18000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 30.076ms - TotalStorageWaitTime: 1.348ms - TotalThreadsInvoluntaryContextSwitches: 79 (79) - TotalThreadsTotalWallClockTime: 862.122ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 40.000ms - TotalThreadsVoluntaryContextSwitches: 62 (62) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 321.710ms - ExecTreeExecTime: 221.423ms - OpenTime: 355.314ms - ExecTreeOpenTime: 92.856us - PrepareTime: 132.703ms - ExecTreePrepareTime: 142.844us KrpcDataStreamSender (dst_id=99):(Total: 97.866ms, non-child: 97.866ms, % non-child: 100.00%) - BytesSent: 263.99 KB (270323) - EosSent: 3 (3) - OverallThroughput: 2.63 MB/sec - PeakMemoryUsage: 15.35 KB (15720) - RowsReturned: 18.00K (18000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 12.545ms - UncompressedRowBatchSize: 861.33 KB (882000) HDFS_SCAN_NODE (id=35):(Total: 221.792ms, non-child: 221.792ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/1.73 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0 - FooterProcessingTime: (Avg: 63.561ms ; Min: 63.561ms ; Max: 63.561ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 277.86 KB (284524) - BytesReadDataNodeCache: 0 - BytesReadLocal: 277.86 KB (284524) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 277.86 KB (284524) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 47.517us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.25 MB (1306460) - PerReadThreadRawHdfsThroughput: 329.93 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 149.018ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 18.00K (18000) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 81.16 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 8 (8) - ScannerThreadsTotalWallClockTime: 185.108ms - MaterializeTupleTime(*): 23.139ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 0.000ns - ScannerThreadsVoluntaryContextSwitches: 16 (16) - TotalRawHdfsOpenFileTime(*): 30.377us - TotalRawHdfsReadTime(*): 822.423us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 354.752ms, non-child: 354.752ms, % non-child: 100.00%) - CodegenTime: 596.307us - CompileTime: 33.907ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 298.803ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 21.504ms Averaged Fragment F37:(Total: 7s657ms, non-child: 417.296ms, % non-child: 5.45%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s793ms max:7s812ms mean: 7s802ms stddev:7.718ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 25.63 MB (26875572) - PeakReservation: 23.94 MB (25100288) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 421 (421) - TotalNetworkReceiveTime: 2s049ms - TotalNetworkSendTime: 1.312ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 453 (453) - TotalThreadsTotalWallClockTime: 7s646ms - TotalThreadsSysTime: 2.666ms - TotalThreadsUserTime: 1s016ms - TotalThreadsVoluntaryContextSwitches: 176 (176) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 4.331ms - ExecTreeExecTime: 2.136ms - OpenTime: 7s585ms - ExecTreeOpenTime: 2s508ms - PrepareTime: 68.166ms - ExecTreePrepareTime: 14.470ms KrpcDataStreamSender (dst_id=110):(Total: 10.874ms, non-child: 10.874ms, % non-child: 100.00%) - BytesSent: 24.67 KB (25258) - EosSent: 3 (3) - OverallThroughput: 18.43 MB/sec - PeakMemoryUsage: 86.06 KB (88128) - RowsReturned: 421 (421) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 353.439us - UncompressedRowBatchSize: 85.93 KB (87989) AGGREGATION_NODE (id=56):(Total: 2s525ms, non-child: 11.720ms, % non-child: 0.46%) - GetResultsTime: 207.731us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.08 MB (2180224) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 421 (421) - RowsReturnedRate: 169.00 /sec - StreamingTime: 955.370us HASH_JOIN_NODE (id=55):(Total: 2s513ms, non-child: 18.227ms, % non-child: 0.73%) - BuildRows: 18.00K (18000) - BuildTime: 47.233ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 439 (439) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 85.187us - RowsReturned: 439 (439) - RowsReturnedRate: 177.00 /sec Buffer pool: - AllocTime: 59.996us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=55): - BuildRowsPartitionTime: 9.398ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 36.003ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=109):(Total: 9.305ms, non-child: 9.305ms, % non-child: 100.00%) - ConvertRowBatchTime: 9.141ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 3.17 M/sec Buffer pool: - AllocTime: 91.140us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 86.469us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.492ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=54):(Total: 2s495ms, non-child: 191.679ms, % non-child: 7.68%) - BuildRows: 640.27K (640266) - BuildTime: 188.373ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 443 (443) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 54.531us - RowsReturned: 439 (439) - RowsReturnedRate: 178.00 /sec Buffer pool: - AllocTime: 221.920us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=54): - BuildRowsPartitionTime: 104.664ms - BuildRowsPartitioned: 640.27K (640266) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 83.021ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=108):(Total: 2s303ms, non-child: 2s303ms, % non-child: 100.00%) - ConvertRowBatchTime: 250.550ms - PeakMemoryUsage: 3.31 MB (3473408) - RowsReturned: 640.27K (640266) - RowsReturnedRate: 286.33 K/sec Buffer pool: - AllocTime: 1.055ms - CumulativeAllocationBytes: 9.17 MB (9614677) - CumulativeAllocations: 392 (392) - PeakReservation: 3.31 MB (3473408) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.31 MB (3473408) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.94 MB (8323466) - TotalGetBatchTime: 2s049ms - DataArrivalTimer: 2s046ms SenderSide: - DeserializeRowBatchTime: 14.516ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=107):(Total: 116.592us, non-child: 116.592us, % non-child: 100.00%) - ConvertRowBatchTime: 55.493us - PeakMemoryUsage: 160.00 KB (163840) - RowsReturned: 443 (443) - RowsReturnedRate: 3.98 M/sec Buffer pool: - AllocTime: 32.246us - CumulativeAllocationBytes: 160.00 KB (163840) - CumulativeAllocations: 11 (11) - PeakReservation: 160.00 KB (163840) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 160.00 KB (163840) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 79.66 KB (81573) - TotalGetBatchTime: 18.594us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 325.415us - NumBatchesArrived: 5 (5) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 5 (5) - NumBatchesReceived: 5 (5) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 30.070us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 4s704ms, non-child: 4s704ms, % non-child: 100.00%) - CodegenTime: 443.815ms - CompileTime: 296.121ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 172 (172) - NumInstructions: 10.45K (10450) - OptimizationTime: 4s250ms - PeakMemoryUsage: 5.10 MB (5350400) - PrepareTime: 146.181ms Fragment F37: Instance 3f4b6afbed1991fc:3c2305570000003b (host=XXX:22000):(Total: 7s784ms, non-child: 226.388ms, % non-child: 2.91%) Fragment Instance Lifecycle Event Timeline: 7s799ms - Prepare Finished: 43.770ms (43.770ms) - Open Finished: 7s795ms (7s752ms) - First Batch Produced: 7s797ms (1.409ms) - First Batch Sent: 7s797ms (1.731us) - ExecInternal Finished: 7s799ms (2.629ms) MemoryUsage(500.000ms): 183.69 KB, 5.28 MB, 5.28 MB, 6.80 MB, 7.13 MB, 7.55 MB, 7.97 MB, 8.44 MB, 8.86 MB, 4.23 MB, 9.86 MB, 9.86 MB, 9.86 MB, 9.86 MB, 9.86 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 25.28 MB (26506932) - PeakReservation: 23.94 MB (25100288) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 428 (428) - TotalNetworkReceiveTime: 2s356ms - TotalNetworkSendTime: 1.261ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 584 (584) - TotalThreadsTotalWallClockTime: 7s818ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s036ms - TotalThreadsVoluntaryContextSwitches: 171 (171) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 4.044ms - ExecTreeExecTime: 2.043ms - OpenTime: 7s752ms - ExecTreeOpenTime: 2s869ms - PrepareTime: 28.482ms - ExecTreePrepareTime: 630.116us KrpcDataStreamSender (dst_id=110):(Total: 9.288ms, non-child: 9.288ms, % non-child: 100.00%) - BytesSent: 24.88 KB (25475) - EosSent: 3 (3) - OverallThroughput: 2.62 MB/sec - PeakMemoryUsage: 86.06 KB (88128) - RowsReturned: 428 (428) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 331.030us - UncompressedRowBatchSize: 87.36 KB (89452) AGGREGATION_NODE (id=56):(Total: 2s872ms, non-child: 2.244ms, % non-child: 0.08%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 177.590us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 8 (8) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.08 MB (2180224) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 428 (428) - RowsReturnedRate: 149.00 /sec - StreamingTime: 1.004ms HASH_JOIN_NODE (id=55):(Total: 2s870ms, non-child: 32.558ms, % non-child: 1.13%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 59.514ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 438 (438) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 94.261us - RowsReturned: 438 (438) - RowsReturnedRate: 152.00 /sec Buffer pool: - AllocTime: 45.984us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=55): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 18.937ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 40.100ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=109):(Total: 2.876ms, non-child: 2.876ms, % non-child: 100.00%) - ConvertRowBatchTime: 2.712ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 6.26 M/sec Buffer pool: - AllocTime: 87.894us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 86.480us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.457ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=54):(Total: 2s837ms, non-child: 217.135ms, % non-child: 7.65%) ExecOption: Probe Side Codegen Enabled - BuildRows: 641.22K (641220) - BuildTime: 213.868ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 438 (438) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 45.156us - RowsReturned: 438 (438) - RowsReturnedRate: 154.00 /sec Buffer pool: - AllocTime: 183.225us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=54): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 134.160ms - BuildRowsPartitioned: 641.22K (641220) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 79.022ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=108):(Total: 2s620ms, non-child: 268.192ms, % non-child: 10.24%) - ConvertRowBatchTime: 262.995ms - PeakMemoryUsage: 2.95 MB (3096576) - RowsReturned: 641.22K (641220) - RowsReturnedRate: 244.71 K/sec Buffer pool: - AllocTime: 1.057ms - CumulativeAllocationBytes: 9.19 MB (9633792) - CumulativeAllocations: 392 (392) - PeakReservation: 2.95 MB (3096576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.95 MB (3096576) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 249.54 KB, 540.67 KB, 914.98 KB, 1.26 MB, 1.67 MB, 2.03 MB, 2.44 MB, 2.88 MB, 3.41 MB, 3.98 MB, 5.04 MB, 6.34 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.95 MB (8335860) - TotalGetBatchTime: 2s355ms - DataArrivalTimer: 2s352ms SenderSide: - DeserializeRowBatchTime: 14.342ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=107):(Total: 99.779us, non-child: 99.779us, % non-child: 100.00%) - ConvertRowBatchTime: 45.392us - PeakMemoryUsage: 168.00 KB (172032) - RowsReturned: 438 (438) - RowsReturnedRate: 4.39 M/sec Buffer pool: - AllocTime: 28.729us - CumulativeAllocationBytes: 168.00 KB (172032) - CumulativeAllocations: 12 (12) - PeakReservation: 168.00 KB (172032) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 168.00 KB (172032) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 78.70 KB (80592) - TotalGetBatchTime: 17.255us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 335.906us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 31.258us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 4s676ms, non-child: 4s676ms, % non-child: 100.00%) - CodegenTime: 246.195ms - CompileTime: 364.772ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 172 (172) - NumInstructions: 10.45K (10450) - OptimizationTime: 4s266ms - PeakMemoryUsage: 5.10 MB (5350400) - PrepareTime: 34.403ms Instance 3f4b6afbed1991fc:3c2305570000003a (host=XXX:22002):(Total: 7s778ms, non-child: 221.863ms, % non-child: 2.85%) Fragment Instance Lifecycle Event Timeline: 7s790ms - Prepare Finished: 97.412ms (97.412ms) - Open Finished: 7s784ms (7s687ms) - First Batch Produced: 7s786ms (1.946ms) - First Batch Sent: 7s786ms (1.978us) - ExecInternal Finished: 7s790ms (3.929ms) MemoryUsage(500.000ms): 183.69 KB, 5.28 MB, 5.28 MB, 6.80 MB, 7.13 MB, 7.55 MB, 7.97 MB, 8.39 MB, 8.86 MB, 4.23 MB, 10.00 MB, 10.00 MB, 10.00 MB, 10.00 MB, 10.00 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 25.43 MB (26662580) - PeakReservation: 23.94 MB (25100288) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 449 (449) - TotalNetworkReceiveTime: 2s228ms - TotalNetworkSendTime: 1.666ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 282 (282) - TotalThreadsTotalWallClockTime: 7s757ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 1s008ms - TotalThreadsVoluntaryContextSwitches: 156 (156) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 5.882ms - ExecTreeExecTime: 2.953ms - OpenTime: 7s687ms - ExecTreeOpenTime: 2s684ms - PrepareTime: 85.395ms - ExecTreePrepareTime: 42.110ms KrpcDataStreamSender (dst_id=110):(Total: 22.903ms, non-child: 22.903ms, % non-child: 100.00%) - BytesSent: 26.38 KB (27017) - EosSent: 3 (3) - OverallThroughput: 1.12 MB/sec - PeakMemoryUsage: 86.06 KB (88128) - RowsReturned: 449 (449) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 456.909us - UncompressedRowBatchSize: 91.64 KB (93841) AGGREGATION_NODE (id=56):(Total: 2s730ms, non-child: 31.449ms, % non-child: 1.15%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 286.503us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.08 MB (2180224) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 449 (449) - RowsReturnedRate: 164.00 /sec - StreamingTime: 1.325ms HASH_JOIN_NODE (id=55):(Total: 2s698ms, non-child: 19.128ms, % non-child: 0.71%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 46.991ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 481 (481) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 98.139us - RowsReturned: 481 (481) - RowsReturnedRate: 178.00 /sec Hash Join Builder (join_node_id=55): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 2.943ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 43.552ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=109):(Total: 16.749ms, non-child: 16.749ms, % non-child: 100.00%) - ConvertRowBatchTime: 16.587ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 1.07 M/sec Buffer pool: - AllocTime: 91.550us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 86.294us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.527ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=54):(Total: 2s679ms, non-child: 167.303ms, % non-child: 6.24%) ExecOption: Probe Side Codegen Enabled - BuildRows: 639.71K (639709) - BuildTime: 163.602ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 493 (493) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 68.945us - RowsReturned: 481 (481) - RowsReturnedRate: 179.00 /sec Hash Join Builder (join_node_id=54): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 84.266ms - BuildRowsPartitioned: 639.71K (639709) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 78.672ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=108):(Total: 2s512ms, non-child: 285.330ms, % non-child: 11.36%) - ConvertRowBatchTime: 282.696ms - PeakMemoryUsage: 3.09 MB (3244032) - RowsReturned: 639.71K (639709) - RowsReturnedRate: 254.66 K/sec Buffer pool: - AllocTime: 1.027ms - CumulativeAllocationBytes: 9.16 MB (9601024) - CumulativeAllocations: 392 (392) - PeakReservation: 3.09 MB (3244032) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.09 MB (3244032) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 249.54 KB, 540.67 KB, 914.98 KB, 1.26 MB, 1.62 MB, 2.03 MB, 2.44 MB, 2.88 MB, 3.37 MB, 3.98 MB, 5.04 MB, 6.34 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.93 MB (8316217) - TotalGetBatchTime: 2s228ms - DataArrivalTimer: 2s226ms SenderSide: - DeserializeRowBatchTime: 14.562ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=107):(Total: 160.714us, non-child: 160.714us, % non-child: 100.00%) - ConvertRowBatchTime: 79.732us - PeakMemoryUsage: 176.00 KB (180224) - RowsReturned: 493 (493) - RowsReturnedRate: 3.07 M/sec Buffer pool: - AllocTime: 26.697us - CumulativeAllocationBytes: 176.00 KB (180224) - CumulativeAllocations: 12 (12) - PeakReservation: 176.00 KB (180224) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 176.00 KB (180224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 88.59 KB (90712) - TotalGetBatchTime: 23.753us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 338.342us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 257.553us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 52.482us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 38.971us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 4s803ms, non-child: 4s803ms, % non-child: 100.00%) - CodegenTime: 312.860ms - CompileTime: 308.629ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 172 (172) - NumInstructions: 10.45K (10450) - OptimizationTime: 4s182ms - PeakMemoryUsage: 5.10 MB (5350400) - PrepareTime: 289.026ms Instance 3f4b6afbed1991fc:3c2305570000003c (host=XXX:22001):(Total: 7s410ms, non-child: 803.637ms, % non-child: 10.84%) Fragment Instance Lifecycle Event Timeline: 7s798ms - Prepare Finished: 478.774ms (478.774ms) - Open Finished: 7s795ms (7s316ms) - First Batch Produced: 7s796ms (892.618us) - First Batch Sent: 7s796ms (1.559us) - ExecInternal Finished: 7s798ms (2.168ms) MemoryUsage(500.000ms): 183.69 KB, 183.69 KB, 6.80 MB, 7.17 MB, 7.55 MB, 7.97 MB, 8.39 MB, 8.86 MB, 9.33 MB, 9.84 MB, 5.30 MB, 10.79 MB, 10.79 MB, 10.79 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 26.19 MB (27457204) - PeakReservation: 23.94 MB (25100288) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 386 (386) - TotalNetworkReceiveTime: 1s563ms - TotalNetworkSendTime: 1.010ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 493 (493) - TotalThreadsTotalWallClockTime: 7s363ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 1s004ms - TotalThreadsVoluntaryContextSwitches: 202 (202) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 3.066ms - ExecTreeExecTime: 1.413ms - OpenTime: 7s316ms - ExecTreeOpenTime: 1s972ms - PrepareTime: 90.621ms - ExecTreePrepareTime: 671.160us KrpcDataStreamSender (dst_id=110):(Total: 430.618us, non-child: 430.618us, % non-child: 100.00%) - BytesSent: 22.74 KB (23282) - EosSent: 3 (3) - OverallThroughput: 51.56 MB/sec - PeakMemoryUsage: 86.06 KB (88128) - RowsReturned: 386 (386) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 272.378us - UncompressedRowBatchSize: 78.78 KB (80674) AGGREGATION_NODE (id=56):(Total: 1s974ms, non-child: 1.467ms, % non-child: 0.07%) ExecOption: Streaming Preaggregation, Codegen Enabled - GetResultsTime: 159.100us - HTResizeTime: 0.000ns - HashBuckets: 16.38K (16384) - LargestPartitionPercent: 7 (7) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 2.08 MB (2180224) - ReductionFactorEstimate: 0.00 - ReductionFactorThresholdToExpand: 0.00 - RowsPassedThrough: 0 (0) - RowsReturned: 386 (386) - RowsReturnedRate: 195.00 /sec - StreamingTime: 536.594us HASH_JOIN_NODE (id=55):(Total: 1s972ms, non-child: 2.996ms, % non-child: 0.15%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 35.193ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 399 (399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 63.163us - RowsReturned: 399 (399) - RowsReturnedRate: 202.00 /sec Hash Join Builder (join_node_id=55): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 6.312ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 24.356ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=109):(Total: 8.290ms, non-child: 8.290ms, % non-child: 100.00%) - ConvertRowBatchTime: 8.123ms - PeakMemoryUsage: 1.23 MB (1294336) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 2.17 M/sec Buffer pool: - AllocTime: 93.976us - CumulativeAllocationBytes: 1.23 MB (1294336) - CumulativeAllocations: 36 (36) - PeakReservation: 1.23 MB (1294336) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.23 MB (1294336) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB, 861.33 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 861.33 KB (882000) - TotalGetBatchTime: 86.635us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 3.491ms - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=54):(Total: 1s969ms, non-child: 190.601ms, % non-child: 9.68%) ExecOption: Probe Side Codegen Enabled - BuildRows: 639.87K (639871) - BuildTime: 187.651ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 399 (399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 49.492us - RowsReturned: 399 (399) - RowsReturnedRate: 202.00 /sec Hash Join Builder (join_node_id=54): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 95.567ms - BuildRowsPartitioned: 639.87K (639871) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 91.369ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=108):(Total: 1s779ms, non-child: 217.185ms, % non-child: 12.21%) - ConvertRowBatchTime: 205.958ms - PeakMemoryUsage: 3.89 MB (4079616) - RowsReturned: 639.87K (639871) - RowsReturnedRate: 359.63 K/sec Buffer pool: - AllocTime: 1.082ms - CumulativeAllocationBytes: 9.16 MB (9609216) - CumulativeAllocations: 392 (392) - PeakReservation: 3.89 MB (4079616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.89 MB (4079616) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 249.54 KB, 582.26 KB, 914.98 KB, 1.26 MB, 1.62 MB, 2.03 MB, 2.44 MB, 2.88 MB, 3.37 MB, 3.94 MB, 5.04 MB, 6.30 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.93 MB (8318323) - TotalGetBatchTime: 1s563ms - DataArrivalTimer: 1s562ms SenderSide: - DeserializeRowBatchTime: 14.645ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=107):(Total: 89.285us, non-child: 89.285us, % non-child: 100.00%) - ConvertRowBatchTime: 41.357us - PeakMemoryUsage: 136.00 KB (139264) - RowsReturned: 399 (399) - RowsReturnedRate: 4.47 M/sec Buffer pool: - AllocTime: 41.313us - CumulativeAllocationBytes: 136.00 KB (139264) - CumulativeAllocations: 10 (10) - PeakReservation: 136.00 KB (139264) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 136.00 KB (139264) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 71.70 KB (73416) - TotalGetBatchTime: 14.775us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 301.997us - NumBatchesArrived: 5 (5) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 5 (5) - NumBatchesReceived: 5 (5) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) Buffer pool: - AllocTime: 224.983us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 81.523us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 19.982us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 4s631ms, non-child: 4s631ms, % non-child: 100.00%) - CodegenTime: 772.391ms - CompileTime: 214.962ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 172 (172) - NumInstructions: 10.45K (10450) - OptimizationTime: 4s301ms - PeakMemoryUsage: 5.10 MB (5350400) - PrepareTime: 115.113ms Averaged Fragment F35:(Total: 7s453ms, non-child: 80.273ms, % non-child: 1.08%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s615ms max:7s618ms mean: 7s617ms stddev:1.712ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.27 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.37 MB (7732334) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 443 (443) - TotalNetworkReceiveTime: 7s252ms - TotalNetworkSendTime: 4.374ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 161 (161) - TotalThreadsTotalWallClockTime: 9s493ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 309.333ms - TotalThreadsVoluntaryContextSwitches: 190 (190) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s512ms - ExecTreeExecTime: 1s506ms - OpenTime: 5s899ms - ExecTreeOpenTime: 3s770ms - PrepareTime: 40.979ms - ExecTreePrepareTime: 318.160us KrpcDataStreamSender (dst_id=107):(Total: 18.376ms, non-child: 18.376ms, % non-child: 100.00%) - BytesSent: 32.25 KB (33022) - EosSent: 3 (3) - OverallThroughput: 13.70 MB/sec - PeakMemoryUsage: 92.96 KB (95194) - RowsReturned: 443 (443) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.114ms - UncompressedRowBatchSize: 79.66 KB (81573) HASH_JOIN_NODE (id=53):(Total: 5s277ms, non-child: 32.067ms, % non-child: 0.61%) - BuildRows: 45.73K (45733) - BuildTime: 76.468ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.61K (6605) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 499.250us - RowsReturned: 443 (443) - RowsReturnedRate: 84.00 /sec Buffer pool: - AllocTime: 79.037us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=53): - BuildRowsPartitionTime: 52.814ms - BuildRowsPartitioned: 45.73K (45733) - HashBuckets: 129.71K (129706) - HashCollisions: 0 (0) - HashTablesBuildTime: 18.117ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=106):(Total: 2s835ms, non-child: 2s835ms, % non-child: 100.00%) - ConvertRowBatchTime: 8.606ms - PeakMemoryUsage: 528.00 KB (540672) - RowsReturned: 45.73K (45733) - RowsReturnedRate: 16.29 K/sec Buffer pool: - AllocTime: 713.793us - CumulativeAllocationBytes: 4.48 MB (4702208) - CumulativeAllocations: 230 (230) - PeakReservation: 528.00 KB (540672) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 528.00 KB (540672) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2606800) - TotalGetBatchTime: 2s825ms - DataArrivalTimer: 2s815ms SenderSide: - DeserializeRowBatchTime: 13.367ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=105):(Total: 4s428ms, non-child: 4s428ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.059ms - PeakMemoryUsage: 1.18 MB (1234261) - RowsReturned: 6.61K (6605) - RowsReturnedRate: 1.74 K/sec Buffer pool: - AllocTime: 2.233ms - CumulativeAllocationBytes: 1.47 MB (1537365) - CumulativeAllocations: 76 (76) - PeakReservation: 1.18 MB (1234261) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.18 MB (1234261) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 2s774ms - TotalBytesReceived: 819.26 KB (838919) - TotalGetBatchTime: 4s426ms - DataArrivalTimer: 4s426ms SenderSide: - DeserializeRowBatchTime: 7.101ms - NumBatchesArrived: 38 (38) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 38 (38) - NumBatchesReceived: 38 (38) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 2s077ms, non-child: 2s077ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 158.237ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s774ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 141.415ms Fragment F35: Instance 3f4b6afbed1991fc:3c23055700000035 (host=XXX:22002):(Total: 7s593ms, non-child: 77.714ms, % non-child: 1.02%) Fragment Instance Lifecycle Event Timeline: 7s616ms - Prepare Finished: 98.707ms (98.707ms) - Open Finished: 6s126ms (6s027ms) - First Batch Produced: 7s609ms (1s483ms) - First Batch Sent: 7s610ms (1.384ms) - ExecInternal Finished: 7s616ms (5.704ms) MemoryUsage(500.000ms): 112.55 KB, 1.30 MB, 1.30 MB, 1.30 MB, 5.07 MB, 5.07 MB, 5.07 MB, 5.07 MB, 5.07 MB, 5.07 MB, 6.12 MB, 6.12 MB, 6.57 MB, 7.19 MB, 7.19 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.40 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.27 MB (7625838) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 405 (405) - TotalNetworkReceiveTime: 8s543ms - TotalNetworkSendTime: 5.107ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 82 (82) - TotalThreadsTotalWallClockTime: 10s642ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 296.000ms - TotalThreadsVoluntaryContextSwitches: 180 (180) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s490ms - ExecTreeExecTime: 1s483ms - OpenTime: 6s027ms - ExecTreeOpenTime: 4s013ms - PrepareTime: 75.491ms - ExecTreePrepareTime: 285.358us KrpcDataStreamSender (dst_id=107):(Total: 51.678ms, non-child: 51.678ms, % non-child: 100.00%) - BytesSent: 29.46 KB (30167) - EosSent: 3 (3) - OverallThroughput: 570.06 KB/sec - PeakMemoryUsage: 82.30 KB (84272) - RowsReturned: 405 (405) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.090ms - UncompressedRowBatchSize: 72.77 KB (74520) HASH_JOIN_NODE (id=53):(Total: 5s496ms, non-child: 31.106ms, % non-child: 0.57%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 45.73K (45734) - BuildTime: 38.077ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.12K (6120) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 472.767us - RowsReturned: 405 (405) - RowsReturnedRate: 73.00 /sec Buffer pool: - AllocTime: 105.361us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=53): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 11.898ms - BuildRowsPartitioned: 45.73K (45734) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 25.605ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=106):(Total: 3s086ms, non-child: 9.252ms, % non-child: 0.30%) - ConvertRowBatchTime: 6.797ms - PeakMemoryUsage: 200.00 KB (204800) - RowsReturned: 45.73K (45734) - RowsReturnedRate: 14.82 K/sec Buffer pool: - AllocTime: 688.885us - CumulativeAllocationBytes: 4.48 MB (4694016) - CumulativeAllocations: 230 (230) - PeakReservation: 200.00 KB (204800) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 200.00 KB (204800) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 288.73 KB, 666.30 KB, 1021.66 KB, 1.41 MB, 1.82 MB, 2.17 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2606838) - TotalGetBatchTime: 3s078ms - DataArrivalTimer: 3s077ms SenderSide: - DeserializeRowBatchTime: 13.053ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=105):(Total: 5s465ms, non-child: 1.633ms, % non-child: 0.03%) - ConvertRowBatchTime: 974.775us - PeakMemoryUsage: 1.09 MB (1138688) - RowsReturned: 6.12K (6120) - RowsReturnedRate: 1.12 K/sec Buffer pool: - AllocTime: 169.439us - CumulativeAllocationBytes: 1.35 MB (1417216) - CumulativeAllocations: 70 (70) - PeakReservation: 1.09 MB (1138688) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.09 MB (1138688) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305.59 KB, 742.16 KB, 742.16 KB - FirstBatchArrivalWaitTime: 3s812ms - TotalBytesReceived: 759.02 KB (777240) - TotalGetBatchTime: 5s464ms - DataArrivalTimer: 5s464ms SenderSide: - DeserializeRowBatchTime: 2.273ms - NumBatchesArrived: 35 (35) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 35 (35) - NumBatchesReceived: 35 (35) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s966ms, non-child: 1s966ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 143.184ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s655ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 157.020ms Instance 3f4b6afbed1991fc:3c23055700000036 (host=XXX:22000):(Total: 7s591ms, non-child: 89.571ms, % non-child: 1.18%) Fragment Instance Lifecycle Event Timeline: 7s616ms - Prepare Finished: 60.405ms (60.405ms) - Open Finished: 6s059ms (5s998ms) - First Batch Produced: 7s608ms (1s549ms) - First Batch Sent: 7s610ms (1.651ms) - ExecInternal Finished: 7s616ms (5.616ms) MemoryUsage(500.000ms): 1.30 MB, 1.30 MB, 1.30 MB, 1.30 MB, 5.07 MB, 5.10 MB, 5.10 MB, 5.10 MB, 5.10 MB, 5.10 MB, 6.12 MB, 6.12 MB, 6.60 MB, 7.35 MB, 7.38 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.40 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.47 MB (7830638) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 428 (428) - TotalNetworkReceiveTime: 8s425ms - TotalNetworkSendTime: 5.242ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 251 (251) - TotalThreadsTotalWallClockTime: 10s672ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 324.000ms - TotalThreadsVoluntaryContextSwitches: 184 (184) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s556ms - ExecTreeExecTime: 1s549ms - OpenTime: 5s998ms - ExecTreeOpenTime: 3s933ms - PrepareTime: 35.161ms - ExecTreePrepareTime: 325.778us KrpcDataStreamSender (dst_id=107):(Total: 2.095ms, non-child: 2.095ms, % non-child: 100.00%) - BytesSent: 31.20 KB (31948) - EosSent: 3 (3) - OverallThroughput: 14.54 MB/sec - PeakMemoryUsage: 98.30 KB (100656) - RowsReturned: 428 (428) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.049ms - UncompressedRowBatchSize: 76.91 KB (78752) HASH_JOIN_NODE (id=53):(Total: 5s484ms, non-child: 15.088ms, % non-child: 0.28%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 45.89K (45894) - BuildTime: 145.291ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 7.09K (7089) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 517.158us - RowsReturned: 428 (428) - RowsReturnedRate: 78.00 /sec Buffer pool: - AllocTime: 66.084us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=53): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 130.799ms - BuildRowsPartitioned: 45.89K (45894) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 13.957ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=106):(Total: 2s970ms, non-child: 41.941ms, % non-child: 1.41%) - ConvertRowBatchTime: 10.511ms - PeakMemoryUsage: 224.00 KB (229376) - RowsReturned: 45.89K (45894) - RowsReturnedRate: 15.45 K/sec Buffer pool: - AllocTime: 726.198us - CumulativeAllocationBytes: 4.51 MB (4726784) - CumulativeAllocations: 232 (232) - PeakReservation: 224.00 KB (229376) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 224.00 KB (229376) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 266.52 KB, 666.30 KB, 1.02 MB, 1.43 MB, 1.82 MB, 2.19 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2615958) - TotalGetBatchTime: 2s958ms - DataArrivalTimer: 2s928ms SenderSide: - DeserializeRowBatchTime: 13.928ms - NumBatchesArrived: 116 (116) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 116 (116) - NumBatchesReceived: 116 (116) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=105):(Total: 5s469ms, non-child: 2.018ms, % non-child: 0.04%) - ConvertRowBatchTime: 1.163ms - PeakMemoryUsage: 1.27 MB (1327104) - RowsReturned: 7.09K (7089) - RowsReturnedRate: 1.30 K/sec Buffer pool: - AllocTime: 213.318us - CumulativeAllocationBytes: 1.58 MB (1654784) - CumulativeAllocations: 82 (82) - PeakReservation: 1.27 MB (1327104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.27 MB (1327104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327.42 KB, 851.30 KB, 873.12 KB - FirstBatchArrivalWaitTime: 3s816ms - TotalBytesReceived: 879.20 KB (900303) - TotalGetBatchTime: 5s467ms - DataArrivalTimer: 5s467ms SenderSide: - DeserializeRowBatchTime: 2.689ms - NumBatchesArrived: 41 (41) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 41 (41) - NumBatchesReceived: 41 (41) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 2s015ms, non-child: 2s015ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 179.977ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s701ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 133.217ms Instance 3f4b6afbed1991fc:3c23055700000037 (host=XXX:22001):(Total: 7s176ms, non-child: 73.534ms, % non-child: 1.02%) Fragment Instance Lifecycle Event Timeline: 7s601ms - Prepare Finished: 436.795ms (436.795ms) - Open Finished: 6s109ms (5s672ms) - First Batch Produced: 7s596ms (1s486ms) - First Batch Sent: 7s597ms (1.731ms) - ExecInternal Finished: 7s601ms (3.302ms) MemoryUsage(500.000ms): 1.30 MB, 1.30 MB, 1.30 MB, 1.77 MB, 6.01 MB, 6.01 MB, 6.01 MB, 6.01 MB, 6.01 MB, 6.12 MB, 6.12 MB, 6.63 MB, 7.25 MB, 7.28 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.38 MB (7740526) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 497 (497) - TotalNetworkReceiveTime: 4s789ms - TotalNetworkSendTime: 2.773ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 152 (152) - TotalThreadsTotalWallClockTime: 7s164ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 308.000ms - TotalThreadsVoluntaryContextSwitches: 207 (207) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s491ms - ExecTreeExecTime: 1s486ms - OpenTime: 5s672ms - ExecTreeOpenTime: 3s363ms - PrepareTime: 12.286ms - ExecTreePrepareTime: 343.344us KrpcDataStreamSender (dst_id=107):(Total: 1.355ms, non-child: 1.355ms, % non-child: 100.00%) - BytesSent: 36.08 KB (36951) - EosSent: 3 (3) - OverallThroughput: 26.00 MB/sec - PeakMemoryUsage: 98.30 KB (100656) - RowsReturned: 497 (497) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.205ms - UncompressedRowBatchSize: 89.30 KB (91448) HASH_JOIN_NODE (id=53):(Total: 4s850ms, non-child: 50.006ms, % non-child: 1.03%) ExecOption: Probe Side Codegen Enabled - BuildRows: 45.57K (45572) - BuildTime: 46.038ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.61K (6608) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 507.826us - RowsReturned: 497 (497) - RowsReturnedRate: 102.00 /sec Buffer pool: - AllocTime: 65.666us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=53): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 15.744ms - BuildRowsPartitioned: 45.57K (45572) - HashBuckets: 126.98K (126976) - HashCollisions: 0 (0) - HashTablesBuildTime: 14.791ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=106):(Total: 2s450ms, non-child: 10.707ms, % non-child: 0.44%) - ConvertRowBatchTime: 8.510ms - PeakMemoryUsage: 1.13 MB (1187840) - RowsReturned: 45.57K (45572) - RowsReturnedRate: 18.60 K/sec Buffer pool: - AllocTime: 726.297us - CumulativeAllocationBytes: 4.47 MB (4685824) - CumulativeAllocations: 230 (230) - PeakReservation: 1.13 MB (1187840) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.13 MB (1187840) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 266.52 KB, 688.51 KB, 1.02 MB, 1.41 MB, 1.82 MB, 2.17 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.48 MB (2597604) - TotalGetBatchTime: 2s440ms - DataArrivalTimer: 2s439ms SenderSide: - DeserializeRowBatchTime: 13.118ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=105):(Total: 2s349ms, non-child: 1.794ms, % non-child: 0.08%) - ConvertRowBatchTime: 1.039ms - PeakMemoryUsage: 1.18 MB (1236992) - RowsReturned: 6.61K (6608) - RowsReturnedRate: 2.81 K/sec Buffer pool: - AllocTime: 6.317ms - CumulativeAllocationBytes: 1.47 MB (1540096) - CumulativeAllocations: 76 (76) - PeakReservation: 1.18 MB (1236992) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.18 MB (1236992) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349.25 KB, 785.81 KB, 807.64 KB - FirstBatchArrivalWaitTime: 693.695ms - TotalBytesReceived: 819.55 KB (839216) - TotalGetBatchTime: 2s348ms - DataArrivalTimer: 2s348ms SenderSide: - DeserializeRowBatchTime: 16.341ms - NumBatchesArrived: 38 (38) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 38 (38) - NumBatchesReceived: 38 (38) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 2s251ms, non-child: 2s251ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 151.550ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s965ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 134.007ms Averaged Fragment F30:(Total: 6s873ms, non-child: 403.123ms, % non-child: 5.87%) split sizes: min: 9.71 MB, max: 43.56 MB, avg: 32.20 MB, stddev: 15.90 MB completion times: min:6s092ms max:7s610ms mean: 7s044ms stddev:677.320ms execution rates: min:1.59 MB/sec max:5.86 MB/sec mean:4.38 MB/sec stddev:1.97 MB/sec num instances: 3 - AverageThreadTokens: 1.19 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 23.70 MB (24851649) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 6.61K (6605) - TotalNetworkReceiveTime: 362.884us - TotalNetworkSendTime: 6.535ms - TotalStorageWaitTime: 650.186us - TotalThreadsInvoluntaryContextSwitches: 1.10K (1096) - TotalThreadsTotalWallClockTime: 7s951ms - TotalThreadsSysTime: 9.333ms - TotalThreadsUserTime: 1s360ms - TotalThreadsVoluntaryContextSwitches: 270 (270) Buffer pool: - AllocTime: 15.328us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 509.829ms - ExecTreeExecTime: 478.162ms - OpenTime: 6s284ms - ExecTreeOpenTime: 740.599ms - PrepareTime: 79.082ms - ExecTreePrepareTime: 11.350ms KrpcDataStreamSender (dst_id=105):(Total: 35.129ms, non-child: 35.129ms, % non-child: 100.00%) - BytesSent: 331.75 KB (339709) - EosSent: 3 (3) - OverallThroughput: 4.45 MB/sec - PeakMemoryUsage: 44.50 KB (45568) - RowsReturned: 6.61K (6605) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 14.050ms - UncompressedRowBatchSize: 819.26 KB (838919) HASH_JOIN_NODE (id=52):(Total: 1s241ms, non-child: 24.559ms, % non-child: 1.98%) - BuildRows: 7.32K (7317) - BuildTime: 11.696ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 4.68 MB (4909994) - ProbeRows: 45.56K (45560) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.231ms - RowsReturned: 6.61K (6605) - RowsReturnedRate: 3.82 K/sec Buffer pool: - AllocTime: 49.747us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=52): - BuildRowsPartitionTime: 3.025ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 6.922ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=104):(Total: 10.009ms, non-child: 10.009ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.855ms - PeakMemoryUsage: 296.00 KB (303104) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 2.86 M/sec Buffer pool: - AllocTime: 41.692us - CumulativeAllocationBytes: 296.00 KB (303104) - CumulativeAllocations: 16 (16) - PeakReservation: 296.00 KB (303104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 296.00 KB (303104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 221.51 KB (226827) - TotalGetBatchTime: 41.956us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.401ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=51):(Total: 1s216ms, non-child: 70.390ms, % non-child: 5.78%) - BuildRows: 47.71K (47714) - BuildTime: 49.242ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 5.72 MB (6001578) - ProbeRows: 95.23K (95229) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 7.926ms - RowsReturned: 45.56K (45560) - RowsReturnedRate: 26.97 K/sec Buffer pool: - AllocTime: 107.871us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=51): - BuildRowsPartitionTime: 18.815ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 29.888ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=103):(Total: 9.442ms, non-child: 9.442ms, % non-child: 100.00%) - ConvertRowBatchTime: 8.918ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 5.22 M/sec Buffer pool: - AllocTime: 256.177us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 287.779us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.829ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=50):(Total: 1s136ms, non-child: 46.303ms, % non-child: 4.07%) - BuildRows: 365 (365) - BuildTime: 2.759ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 218.68K (218678) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 14.402ms - RowsReturned: 95.23K (95229) - RowsReturnedRate: 60.34 K/sec Buffer pool: - AllocTime: 44.794us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=50): - BuildRowsPartitionTime: 1.333ms - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 446.557us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=102):(Total: 73.707us, non-child: 73.707us, % non-child: 100.00%) - ConvertRowBatchTime: 56.255us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 4.98 M/sec Buffer pool: - AllocTime: 4.936us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 10.363us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 22.227us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=43):(Total: 1s090ms, non-child: 1s090ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 6.80 MB (7128132) - BytesReadDataNodeCache: 0 - BytesReadLocal: 6.80 MB (7128132) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 6.80 MB (7128132) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 5.977ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 11.91 MB (12488492) - PerReadThreadRawHdfsThroughput: 1.55 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s067ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 480.52K (480516) - RowsReturned: 218.68K (218678) - RowsReturnedRate: 145.25 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 534 (534) - ScannerThreadsTotalWallClockTime: 1s128ms - MaterializeTupleTime(*): 845.447ms - ScannerThreadsSysTime: 5.333ms - ScannerThreadsUserTime: 445.333ms - ScannerThreadsVoluntaryContextSwitches: 3 (3) - TotalRawHdfsOpenFileTime(*): 63.404us - TotalRawHdfsReadTime(*): 4.031ms - TotalReadThroughput: 982.84 KB/sec Filter 46 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 267.30K (267299) - Rows rejected: 261.84K (261838) - Rows total: 480.52K (480516) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s193ms, non-child: 5s193ms, % non-child: 100.00%) - CodegenTime: 12.325ms - CompileTime: 296.808ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s713ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 179.708ms Fragment F30: Instance 3f4b6afbed1991fc:3c23055700000031 (host=XXX:22002):(Total: 7s407ms, non-child: 324.657ms, % non-child: 4.38%) Hdfs split stats (:<# splits>/): 0:1/43.56 MB Filter 46 arrival: 5s719ms Fragment Instance Lifecycle Event Timeline: 7s427ms - Prepare Finished: 160.895ms (160.895ms) - Open Finished: 5s902ms (5s742ms) - First Batch Produced: 5s952ms (49.861ms) - First Batch Sent: 5s955ms (2.783ms) - ExecInternal Finished: 7s427ms (1s471ms) MemoryUsage(500.000ms): 2.17 MB, 5.72 MB, 5.72 MB, 6.01 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 4.30 MB, 23.63 MB, 25.18 MB, 25.82 MB, 28.02 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2 - AverageThreadTokens: 1.27 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 32.91 MB (34503959) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 19.82K (19817) - TotalNetworkReceiveTime: 255.407us - TotalNetworkSendTime: 15.351ms - TotalStorageWaitTime: 1.851ms - TotalThreadsInvoluntaryContextSwitches: 1.10K (1102) - TotalThreadsTotalWallClockTime: 8s951ms - TotalThreadsSysTime: 16.000ms - TotalThreadsUserTime: 1s604ms - TotalThreadsVoluntaryContextSwitches: 653 (653) Buffer pool: - AllocTime: 17.734us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s524ms - ExecTreeExecTime: 1s433ms - OpenTime: 5s742ms - ExecTreeOpenTime: 253.528ms - PrepareTime: 140.982ms - ExecTreePrepareTime: 20.328ms KrpcDataStreamSender (dst_id=105):(Total: 72.749ms, non-child: 72.749ms, % non-child: 100.00%) - BytesSent: 995.24 KB (1019129) - EosSent: 3 (3) - OverallThroughput: 13.36 MB/sec - PeakMemoryUsage: 100.50 KB (102912) - RowsReturned: 19.82K (19817) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 42.150ms - UncompressedRowBatchSize: 2.40 MB (2516759) HASH_JOIN_NODE (id=52):(Total: 1s727ms, non-child: 38.649ms, % non-child: 2.24%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 5.322ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 10.06 MB (10547456) - ProbeRows: 136.68K (136682) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 9.692ms - RowsReturned: 19.82K (19817) - RowsReturnedRate: 11.47 K/sec Buffer pool: - AllocTime: 45.340us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=52): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 2.202ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.106ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=104):(Total: 25.415ms, non-child: 25.415ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.122ms - PeakMemoryUsage: 296.00 KB (303104) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 287.90 K/sec Buffer pool: - AllocTime: 44.974us - CumulativeAllocationBytes: 296.00 KB (303104) - CumulativeAllocations: 16 (16) - PeakReservation: 296.00 KB (303104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 296.00 KB (303104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 221.51 KB (226827) - TotalGetBatchTime: 40.696us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.418ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=51):(Total: 1s689ms, non-child: 102.747ms, % non-child: 6.08%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 53.891ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 11.07 MB (11610368) - ProbeRows: 285.69K (285688) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 23.776ms - RowsReturned: 136.68K (136682) - RowsReturnedRate: 80.91 K/sec Buffer pool: - AllocTime: 82.669us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=51): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 25.382ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 27.995ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=103):(Total: 8.378ms, non-child: 8.378ms, % non-child: 100.00%) - ConvertRowBatchTime: 7.984ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 5.69 M/sec Buffer pool: - AllocTime: 249.307us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 203.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 183.208us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.780ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=50):(Total: 1s578ms, non-child: 72.657ms, % non-child: 4.60%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 1.467ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 656.03K (656034) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 43.207ms - RowsReturned: 285.69K (285688) - RowsReturnedRate: 181.02 K/sec Buffer pool: - AllocTime: 58.378us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=50): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 255.368us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 427.731us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=102):(Total: 72.777us, non-child: 72.777us, % non-child: 100.00%) - ConvertRowBatchTime: 57.747us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.02 M/sec Buffer pool: - AllocTime: 4.293us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 8.313us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 19.662us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=43):(Total: 1s505ms, non-child: 1s505ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/43.56 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.11 MB, 9.11 MB, 9.11 MB, 9.11 MB - FooterProcessingTime: (Avg: 898.079us ; Min: 898.079us ; Max: 898.079us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 9.11 MB (9552260) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.11 MB (9552260) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.11 MB (9552260) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 5.610ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 15.69 MB (16453926) - PerReadThreadRawHdfsThroughput: 2.18 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s470ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 656.13K (656132) - RowsReturned: 656.03K (656034) - RowsReturnedRate: 435.74 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 622 (622) - ScannerThreadsTotalWallClockTime: 1s652ms - MaterializeTupleTime(*): 986.812ms - ScannerThreadsSysTime: 12.000ms - ScannerThreadsUserTime: 596.000ms - ScannerThreadsVoluntaryContextSwitches: 3 (3) - TotalRawHdfsOpenFileTime(*): 56.105us - TotalRawHdfsReadTime(*): 4.079ms - TotalReadThroughput: 1.21 MB/sec Filter 46 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 16.48K (16482) - Rows rejected: 98 (98) - Rows total: 656.13K (656132) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s282ms, non-child: 5s282ms, % non-child: 100.00%) - CodegenTime: 1.635ms - CompileTime: 310.092ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s812ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 158.749ms Instance 3f4b6afbed1991fc:3c23055700000033 (host=XXX:22001):(Total: 7s169ms, non-child: 596.649ms, % non-child: 8.32%) Hdfs split stats (:<# splits>/): 0:1/43.32 MB Filter 46 arrival: 5s903ms Fragment Instance Lifecycle Event Timeline: 7s596ms - Prepare Finished: 445.187ms (445.187ms) - Open Finished: 7s592ms (7s147ms) - First Batch Produced: 7s592ms (265.590us) - First Batch Sent: 7s592ms (1.630us) - ExecInternal Finished: 7s596ms (3.345ms) MemoryUsage(500.000ms): 2.17 MB, 2.17 MB, 6.01 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.16 MB, 24.55 MB, 24.63 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2 - AverageThreadTokens: 1.21 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 24.63 MB (25821982) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 552.738us - TotalNetworkSendTime: 3.271ms - TotalStorageWaitTime: 50.918us - TotalThreadsInvoluntaryContextSwitches: 1.51K (1515) - TotalThreadsTotalWallClockTime: 8s419ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 1s484ms - TotalThreadsVoluntaryContextSwitches: 121 (121) Buffer pool: - AllocTime: 23.039us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 3.617ms - ExecTreeExecTime: 265.380us - OpenTime: 7s147ms - ExecTreeOpenTime: 1s350ms - PrepareTime: 18.543ms - ExecTreePrepareTime: 778.101us KrpcDataStreamSender (dst_id=105):(Total: 141.667us, non-child: 141.667us, % non-child: 100.00%) - BytesSent: 0 - EosSent: 3 (3) - OverallThroughput: 0.00 /sec - PeakMemoryUsage: 16.50 KB (16896) - RowsReturned: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - UncompressedRowBatchSize: 0 HASH_JOIN_NODE (id=52):(Total: 1s352ms, non-child: 14.089ms, % non-child: 1.04%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 18.745ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 1.99 MB (2091264) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 642.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 38.581us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=52): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 4.901ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 12.848ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=104):(Total: 3.422ms, non-child: 3.422ms, % non-child: 100.00%) - ConvertRowBatchTime: 3.335ms - PeakMemoryUsage: 296.00 KB (303104) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 2.14 M/sec Buffer pool: - AllocTime: 40.176us - CumulativeAllocationBytes: 296.00 KB (303104) - CumulativeAllocations: 16 (16) - PeakReservation: 296.00 KB (303104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 296.00 KB (303104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 221.51 KB (226827) - TotalGetBatchTime: 43.504us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.394ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=51):(Total: 1s338ms, non-child: 47.294ms, % non-child: 3.53%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 46.046ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 3.05 MB (3197184) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 687.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 117.486us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=51): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 27.596ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 17.950ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=103):(Total: 7.965ms, non-child: 7.965ms, % non-child: 100.00%) - ConvertRowBatchTime: 7.225ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 5.99 M/sec Buffer pool: - AllocTime: 276.709us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 203.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 473.527us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.814ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=50):(Total: 1s282ms, non-child: 21.702ms, % non-child: 1.69%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 1.511ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.026us - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 26.380us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=50): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 217.226us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 475.002us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=102):(Total: 81.126us, non-child: 81.126us, % non-child: 100.00%) - ConvertRowBatchTime: 59.574us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 4.50 M/sec Buffer pool: - AllocTime: 5.519us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 14.038us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 23.533us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=43):(Total: 1s261ms, non-child: 1s261ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/43.32 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.06 MB, 9.06 MB - FooterProcessingTime: (Avg: 303.440us ; Min: 303.440us ; Max: 303.440us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 9.06 MB (9499861) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.06 MB (9499861) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.06 MB (9499861) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 11.431ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 15.55 MB (16302263) - PerReadThreadRawHdfsThroughput: 1.67 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s244ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 652.17K (652171) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 861 (861) - ScannerThreadsTotalWallClockTime: 1s244ms - MaterializeTupleTime(*): 1s135ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 600.000ms - ScannerThreadsVoluntaryContextSwitches: 8 (8) - TotalRawHdfsOpenFileTime(*): 70.041us - TotalRawHdfsReadTime(*): 5.300ms - TotalReadThroughput: 1.29 MB/sec Filter 46 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 652.17K (652171) - Rows rejected: 652.17K (652171) - Rows total: 652.17K (652171) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s220ms, non-child: 5s220ms, % non-child: 100.00%) - CodegenTime: 8.719ms - CompileTime: 259.366ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s657ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 299.667ms Instance 3f4b6afbed1991fc:3c23055700000032 (host=XXX:22000):(Total: 6s042ms, non-child: 288.062ms, % non-child: 4.77%) Hdfs split stats (:<# splits>/): 0:1/9.71 MB Filter 46 arrival: 5s522ms Fragment Instance Lifecycle Event Timeline: 6s089ms - Prepare Finished: 124.650ms (124.650ms) - Open Finished: 6s087ms (5s963ms) - First Batch Produced: 6s088ms (288.949us) - First Batch Sent: 6s088ms (1.849us) - ExecInternal Finished: 6s089ms (1.064ms) MemoryUsage(500.000ms): 2.17 MB, 5.72 MB, 5.72 MB, 6.01 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 4.30 MB, 13.57 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2 - AverageThreadTokens: 1.08 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 13.57 MB (14229008) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 280.507us - TotalNetworkSendTime: 981.976us - TotalStorageWaitTime: 47.711us - TotalThreadsInvoluntaryContextSwitches: 673 (673) - TotalThreadsTotalWallClockTime: 6s484ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 992.000ms - TotalThreadsVoluntaryContextSwitches: 37 (37) Buffer pool: - AllocTime: 5.213us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1.360ms - ExecTreeExecTime: 289.044us - OpenTime: 5s963ms - ExecTreeOpenTime: 617.788ms - PrepareTime: 77.720ms - ExecTreePrepareTime: 12.943ms KrpcDataStreamSender (dst_id=105):(Total: 32.496ms, non-child: 32.496ms, % non-child: 100.00%) - BytesSent: 0 - EosSent: 3 (3) - OverallThroughput: 0.00 /sec - PeakMemoryUsage: 16.50 KB (16896) - RowsReturned: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - UncompressedRowBatchSize: 0 HASH_JOIN_NODE (id=52):(Total: 643.879ms, non-child: 20.938ms, % non-child: 3.25%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 11.020ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 1.99 MB (2091264) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 578.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 65.321us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=52): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 1.970ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 5.814ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=104):(Total: 1.189ms, non-child: 1.189ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.108ms - PeakMemoryUsage: 296.00 KB (303104) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 6.15 M/sec Buffer pool: - AllocTime: 39.927us - CumulativeAllocationBytes: 296.00 KB (303104) - CumulativeAllocations: 16 (16) - PeakReservation: 296.00 KB (303104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 296.00 KB (303104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 221.51 KB (226827) - TotalGetBatchTime: 41.670us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.389ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=51):(Total: 622.954ms, non-child: 61.128ms, % non-child: 9.81%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 47.790ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 3.05 MB (3197184) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 608.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 123.459us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=51): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.466ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 43.717ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=103):(Total: 11.984ms, non-child: 11.984ms, % non-child: 100.00%) - ConvertRowBatchTime: 11.544ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 3.98 M/sec Buffer pool: - AllocTime: 242.517us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 203.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 206.604us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.893ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=50):(Total: 549.841ms, non-child: 44.551ms, % non-child: 8.10%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 5.299ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 701.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 49.626us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=50): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 3.529ms - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 436.940us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=102):(Total: 67.220us, non-child: 67.220us, % non-child: 100.00%) - ConvertRowBatchTime: 51.446us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.43 M/sec Buffer pool: - AllocTime: 4.996us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 8.738us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 23.487us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=43):(Total: 505.230ms, non-child: 505.230ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/9.71 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.22 MB - FooterProcessingTime: (Avg: 283.784us ; Min: 283.784us ; Max: 283.784us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 2.22 MB (2332276) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.22 MB (2332276) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.22 MB (2332276) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 890.491us - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 4.49 MB (4709289) - PerReadThreadRawHdfsThroughput: 819.13 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 487.467ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 133.25K (133245) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 121 (121) - ScannerThreadsTotalWallClockTime: 488.898ms - MaterializeTupleTime(*): 414.060ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 140.000ms - ScannerThreadsVoluntaryContextSwitches: 0 (0) - TotalRawHdfsOpenFileTime(*): 64.068us - TotalRawHdfsReadTime(*): 2.715ms - TotalReadThroughput: 379.60 KB/sec Filter 46 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 133.25K (133245) - Rows rejected: 133.25K (133245) - Rows total: 133.25K (133245) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 5s077ms, non-child: 5s077ms, % non-child: 100.00%) - CodegenTime: 26.622ms - CompileTime: 320.965ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s671ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 80.707ms Averaged Fragment F31:(Total: 934.099ms, non-child: 38.513ms, % non-child: 4.12%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:1s408ms max:1s408ms mean: 1s408ms stddev:0.000ns execution rates: min:1.53 MB/sec max:1.53 MB/sec mean:1.53 MB/sec stddev:0.17 B/sec num instances: 1 - AverageThreadTokens: 1.50 - BloomFilterBytes: 0 - PeakMemoryUsage: 900.98 KB (922601) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 229.25 MB (240387678) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.231ms - TotalStorageWaitTime: 16.911ms - TotalThreadsInvoluntaryContextSwitches: 25 (25) - TotalThreadsTotalWallClockTime: 1s034ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 60.000ms - TotalThreadsVoluntaryContextSwitches: 80 (80) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 270.137ms - ExecTreeExecTime: 267.683ms - OpenTime: 601.168ms - ExecTreeOpenTime: 126.744us - PrepareTime: 62.717ms - ExecTreePrepareTime: 177.395us KrpcDataStreamSender (dst_id=102):(Total: 27.570ms, non-child: 27.570ms, % non-child: 100.00%) - BytesSent: 2.86 KB (2932) - EosSent: 3 (3) - OverallThroughput: 103.85 KB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 118.246us - UncompressedRowBatchSize: 6.06 KB (6205) HDFS_SCAN_NODE (id=48):(Total: 268.208ms, non-child: 268.208ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 465.32 KB (476485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 465.32 KB (476485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 465.32 KB (476485) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 69.716us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 849.29 KB (869668) - PerReadThreadRawHdfsThroughput: 628.88 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 162.949ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 73.05K (73049) - RowsReturned: 365 (365) - RowsReturnedRate: 1.36 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 12 (12) - ScannerThreadsTotalWallClockTime: 163.395ms - MaterializeTupleTime(*): 31.152ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 13 (13) - TotalRawHdfsOpenFileTime(*): 26.583us - TotalRawHdfsReadTime(*): 722.567us - TotalReadThroughput: 465.32 KB/sec CodeGen:(Total: 599.806ms, non-child: 599.806ms, % non-child: 100.00%) - CodegenTime: 992.693us - CompileTime: 45.208ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 20 (20) - NumInstructions: 319 (319) - OptimizationTime: 399.016ms - PeakMemoryUsage: 159.50 KB (163328) - PrepareTime: 155.045ms Fragment F31: Instance 3f4b6afbed1991fc:3c2305570000002e (host=XXX:22001):(Total: 934.099ms, non-child: 38.513ms, % non-child: 4.12%) Hdfs split stats (:<# splits>/): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 1s378ms - Prepare Finished: 507.287ms (507.287ms) - Open Finished: 1s108ms (601.177ms) - First Batch Produced: 1s375ms (267.396ms) - First Batch Sent: 1s376ms (162.098us) - ExecInternal Finished: 1s378ms (2.572ms) MemoryUsage(500.000ms): 210.16 KB, 744.73 KB ThreadUsage(500.000ms): 1, 2 - AverageThreadTokens: 1.50 - BloomFilterBytes: 0 - PeakMemoryUsage: 900.98 KB (922601) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 229.25 MB (240387678) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 2.231ms - TotalStorageWaitTime: 16.911ms - TotalThreadsInvoluntaryContextSwitches: 25 (25) - TotalThreadsTotalWallClockTime: 1s034ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 60.000ms - TotalThreadsVoluntaryContextSwitches: 80 (80) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 270.137ms - ExecTreeExecTime: 267.683ms - OpenTime: 601.168ms - ExecTreeOpenTime: 126.744us - PrepareTime: 62.717ms - ExecTreePrepareTime: 177.395us KrpcDataStreamSender (dst_id=102):(Total: 27.570ms, non-child: 27.570ms, % non-child: 100.00%) - BytesSent: 2.86 KB (2932) - EosSent: 3 (3) - OverallThroughput: 103.85 KB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 118.246us - UncompressedRowBatchSize: 6.06 KB (6205) HDFS_SCAN_NODE (id=48):(Total: 268.208ms, non-child: 268.208ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 465.32 KB - FooterProcessingTime: (Avg: 235.650us ; Min: 235.650us ; Max: 235.650us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 465.32 KB (476485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 465.32 KB (476485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 465.32 KB (476485) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 69.716us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 849.29 KB (869668) - PerReadThreadRawHdfsThroughput: 628.88 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 162.949ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 73.05K (73049) - RowsReturned: 365 (365) - RowsReturnedRate: 1.36 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 12 (12) - ScannerThreadsTotalWallClockTime: 163.395ms - MaterializeTupleTime(*): 31.152ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 13 (13) - TotalRawHdfsOpenFileTime(*): 26.583us - TotalRawHdfsReadTime(*): 722.567us - TotalReadThroughput: 465.32 KB/sec CodeGen:(Total: 599.806ms, non-child: 599.806ms, % non-child: 100.00%) - CodegenTime: 992.693us - CompileTime: 45.208ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 20 (20) - NumInstructions: 319 (319) - OptimizationTime: 399.016ms - PeakMemoryUsage: 159.50 KB (163328) - PrepareTime: 155.045ms Averaged Fragment F32:(Total: 1s685ms, non-child: 101.468ms, % non-child: 6.02%) split sizes: min: 5.48 MB, max: 5.48 MB, avg: 5.48 MB, stddev: 0 completion times: min:2s193ms max:2s193ms mean: 2s193ms stddev:0.000ns execution rates: min:2.50 MB/sec max:2.50 MB/sec mean:2.50 MB/sec stddev:0.63 B/sec num instances: 1 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 3.69 MB (3872084) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 299.47 MB (314012702) - RowsProduced: 47.71K (47714) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 54.548ms - TotalStorageWaitTime: 26.400us - TotalThreadsInvoluntaryContextSwitches: 99 (99) - TotalThreadsTotalWallClockTime: 2s215ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 168.000ms - TotalThreadsVoluntaryContextSwitches: 132 (132) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 1.00 MB (1048576) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 608.071ms - ExecTreeExecTime: 533.186ms - OpenTime: 1s037ms - ExecTreeOpenTime: 145.056us - PrepareTime: 23.585ms - ExecTreePrepareTime: 170.471us KrpcDataStreamSender (dst_id=103):(Total: 17.888ms, non-child: 17.888ms, % non-child: 100.00%) - BytesSent: 916.45 KB (938440) - EosSent: 3 (3) - OverallThroughput: 50.03 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 47.71K (47714) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.715ms - UncompressedRowBatchSize: 1.32 MB (1383706) HDFS_SCAN_NODE (id=46):(Total: 533.640ms, non-child: 533.640ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 1.53 MB (1599321) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.53 MB (1599321) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.53 MB (1599321) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 400.887us - MaxCompressedTextFileLength: 0 - NumColumns: 5 (5) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.62 MB (2751044) - PerReadThreadRawHdfsThroughput: 827.80 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 483.482ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 100.00K (100000) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 89.41 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 50 (50) - ScannerThreadsTotalWallClockTime: 570.012ms - MaterializeTupleTime(*): 118.720ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 52.000ms - ScannerThreadsVoluntaryContextSwitches: 11 (11) - TotalRawHdfsOpenFileTime(*): 44.624us - TotalRawHdfsReadTime(*): 1.842ms - TotalReadThroughput: 1.02 MB/sec Filter 42 (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) CodeGen:(Total: 1s032ms, non-child: 1s032ms, % non-child: 100.00%) - CodegenTime: 41.931ms - CompileTime: 93.539ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 54 (54) - NumInstructions: 884 (884) - OptimizationTime: 806.196ms - PeakMemoryUsage: 442.00 KB (452608) - PrepareTime: 132.373ms Fragment F32: Instance 3f4b6afbed1991fc:3c2305570000002f (host=XXX:22001):(Total: 1s685ms, non-child: 101.468ms, % non-child: 6.02%) Hdfs split stats (:<# splits>/): 0:1/5.48 MB Fragment Instance Lifecycle Event Timeline: 2s180ms - Prepare Finished: 534.519ms (534.519ms) - Open Finished: 1s572ms (1s037ms) - First Batch Produced: 1s755ms (183.332ms) - First Batch Sent: 1s755ms (472.125us) - ExecInternal Finished: 2s180ms (424.262ms) MemoryUsage(500.000ms): 1.46 MB, 1.46 MB, 3.57 MB ThreadUsage(500.000ms): 1, 1, 2 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 3.69 MB (3872084) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 299.47 MB (314012702) - RowsProduced: 47.71K (47714) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 54.548ms - TotalStorageWaitTime: 26.400us - TotalThreadsInvoluntaryContextSwitches: 99 (99) - TotalThreadsTotalWallClockTime: 2s215ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 168.000ms - TotalThreadsVoluntaryContextSwitches: 132 (132) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 1.00 MB (1048576) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 608.071ms - ExecTreeExecTime: 533.186ms - OpenTime: 1s037ms - ExecTreeOpenTime: 145.056us - PrepareTime: 23.585ms - ExecTreePrepareTime: 170.471us KrpcDataStreamSender (dst_id=103):(Total: 17.888ms, non-child: 17.888ms, % non-child: 100.00%) - BytesSent: 916.45 KB (938440) - EosSent: 3 (3) - OverallThroughput: 50.03 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 47.71K (47714) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 17.715ms - UncompressedRowBatchSize: 1.32 MB (1383706) HDFS_SCAN_NODE (id=46):(Total: 533.640ms, non-child: 533.640ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/5.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [42]), waited for 20ms Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 1.53 MB - FooterProcessingTime: (Avg: 207.093us ; Min: 207.093us ; Max: 207.093us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 1.53 MB (1599321) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.53 MB (1599321) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.53 MB (1599321) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 400.887us - MaxCompressedTextFileLength: 0 - NumColumns: 5 (5) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.62 MB (2751044) - PerReadThreadRawHdfsThroughput: 827.80 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 483.482ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 100.00K (100000) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 89.41 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 50 (50) - ScannerThreadsTotalWallClockTime: 570.012ms - MaterializeTupleTime(*): 118.720ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 52.000ms - ScannerThreadsVoluntaryContextSwitches: 11 (11) - TotalRawHdfsOpenFileTime(*): 44.624us - TotalRawHdfsReadTime(*): 1.842ms - TotalReadThroughput: 1.02 MB/sec Filter 42 (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) CodeGen:(Total: 1s032ms, non-child: 1s032ms, % non-child: 100.00%) - CodegenTime: 41.931ms - CompileTime: 93.539ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 54 (54) - NumInstructions: 884 (884) - OptimizationTime: 806.196ms - PeakMemoryUsage: 442.00 KB (452608) - PrepareTime: 132.373ms Averaged Fragment F33:(Total: 1s450ms, non-child: 38.514ms, % non-child: 2.66%) split sizes: min: 1.16 MB, max: 1.16 MB, avg: 1.16 MB, stddev: 0 completion times: min:1s990ms max:1s990ms mean: 1s990ms stddev:0.000ns execution rates: min:597.63 KB/sec max:597.63 KB/sec mean:597.63 KB/sec stddev:0.50 B/sec num instances: 1 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.10 MB (1151269) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 291.89 MB (306067566) - RowsProduced: 7.32K (7317) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.379ms - TotalStorageWaitTime: 11.900ms - TotalThreadsInvoluntaryContextSwitches: 62 (62) - TotalThreadsTotalWallClockTime: 1s566ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 120.000ms - TotalThreadsVoluntaryContextSwitches: 96 (96) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 168.664ms - ExecTreeExecTime: 162.783ms - OpenTime: 1s254ms - ExecTreeOpenTime: 127.184us - PrepareTime: 27.779ms - ExecTreePrepareTime: 171.156us KrpcDataStreamSender (dst_id=104):(Total: 4.172ms, non-child: 4.172ms, % non-child: 100.00%) - BytesSent: 98.94 KB (101318) - EosSent: 3 (3) - OverallThroughput: 23.16 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 7.32K (7317) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 4.017ms - UncompressedRowBatchSize: 221.51 KB (226827) HDFS_SCAN_NODE (id=47):(Total: 163.286ms, non-child: 163.286ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 412.65 KB (422556) - BytesReadDataNodeCache: 0 - BytesReadLocal: 412.65 KB (422556) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 412.65 KB (422556) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 74.145us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.02 MB (1066122) - PerReadThreadRawHdfsThroughput: 758.95 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 139.982ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 50.00K (50000) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 44.81 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 14 (14) - ScannerThreadsTotalWallClockTime: 144.215ms - MaterializeTupleTime(*): 100.752ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 16.000ms - ScannerThreadsVoluntaryContextSwitches: 2 (2) - TotalRawHdfsOpenFileTime(*): 29.654us - TotalRawHdfsReadTime(*): 530.968us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 1s244ms, non-child: 1s244ms, % non-child: 100.00%) - CodegenTime: 70.076ms - CompileTime: 49.627ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 45 (45) - NumInstructions: 682 (682) - OptimizationTime: 729.177ms - PeakMemoryUsage: 341.00 KB (349184) - PrepareTime: 465.175ms Fragment F33: Instance 3f4b6afbed1991fc:3c23055700000030 (host=XXX:22001):(Total: 1s450ms, non-child: 38.514ms, % non-child: 2.66%) Hdfs split stats (:<# splits>/): 0:1/1.16 MB Fragment Instance Lifecycle Event Timeline: 1s977ms - Prepare Finished: 554.480ms (554.480ms) - Open Finished: 1s808ms (1s254ms) - First Batch Produced: 1s883ms (75.181ms) - First Batch Sent: 1s884ms (638.881us) - ExecInternal Finished: 1s977ms (92.836ms) MemoryUsage(500.000ms): 26.28 KB, 367.28 KB, 32.15 KB ThreadUsage(500.000ms): 1, 1, 2 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.10 MB (1151269) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 291.89 MB (306067566) - RowsProduced: 7.32K (7317) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.379ms - TotalStorageWaitTime: 11.900ms - TotalThreadsInvoluntaryContextSwitches: 62 (62) - TotalThreadsTotalWallClockTime: 1s566ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 120.000ms - TotalThreadsVoluntaryContextSwitches: 96 (96) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 168.664ms - ExecTreeExecTime: 162.783ms - OpenTime: 1s254ms - ExecTreeOpenTime: 127.184us - PrepareTime: 27.779ms - ExecTreePrepareTime: 171.156us KrpcDataStreamSender (dst_id=104):(Total: 4.172ms, non-child: 4.172ms, % non-child: 100.00%) - BytesSent: 98.94 KB (101318) - EosSent: 3 (3) - OverallThroughput: 23.16 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 7.32K (7317) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 4.017ms - UncompressedRowBatchSize: 221.51 KB (226827) HDFS_SCAN_NODE (id=47):(Total: 163.286ms, non-child: 163.286ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/1.16 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0 - FooterProcessingTime: (Avg: 12.043ms ; Min: 12.043ms ; Max: 12.043ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 412.65 KB (422556) - BytesReadDataNodeCache: 0 - BytesReadLocal: 412.65 KB (422556) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 412.65 KB (422556) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 74.145us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.02 MB (1066122) - PerReadThreadRawHdfsThroughput: 758.95 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 139.982ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 50.00K (50000) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 44.81 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 14 (14) - ScannerThreadsTotalWallClockTime: 144.215ms - MaterializeTupleTime(*): 100.752ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 16.000ms - ScannerThreadsVoluntaryContextSwitches: 2 (2) - TotalRawHdfsOpenFileTime(*): 29.654us - TotalRawHdfsReadTime(*): 530.968us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 1s244ms, non-child: 1s244ms, % non-child: 100.00%) - CodegenTime: 70.076ms - CompileTime: 49.627ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 45 (45) - NumInstructions: 682 (682) - OptimizationTime: 729.177ms - PeakMemoryUsage: 341.00 KB (349184) - PrepareTime: 465.175ms Averaged Fragment F34:(Total: 4s675ms, non-child: 180.774ms, % non-child: 3.87%) split sizes: min: 7.48 MB, max: 7.48 MB, avg: 7.48 MB, stddev: 0 completion times: min:5s247ms max:5s247ms mean: 5s247ms stddev:0.000ns execution rates: min:1.43 MB/sec max:1.43 MB/sec mean:1.43 MB/sec stddev:0.14 B/sec num instances: 1 - AverageThreadTokens: 1.78 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.31 MB (9759573) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 137.20K (137200) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 12.276ms - TotalStorageWaitTime: 1.873ms - TotalThreadsInvoluntaryContextSwitches: 730 (730) - TotalThreadsTotalWallClockTime: 8s015ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 852.000ms - TotalThreadsVoluntaryContextSwitches: 224 (224) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 3s494ms - ExecTreeExecTime: 3s252ms - OpenTime: 1s128ms - ExecTreeOpenTime: 129.632us - PrepareTime: 52.153ms - ExecTreePrepareTime: 195.337us KrpcDataStreamSender (dst_id=106):(Total: 117.897ms, non-child: 117.897ms, % non-child: 100.00%) - BytesSent: 2.90 MB (3043464) - EosSent: 3 (3) - OverallThroughput: 24.62 MB/sec - PeakMemoryUsage: 93.35 KB (95592) - RowsReturned: 137.20K (137200) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 101.889ms - UncompressedRowBatchSize: 7.46 MB (7820400) HDFS_SCAN_NODE (id=44):(Total: 3s252ms, non-child: 3s252ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.54 MB (7903345) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.54 MB (7903345) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.54 MB (7903345) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 2.094ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9442795) - PerReadThreadRawHdfsThroughput: 3.26 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 3s157ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 1.92M (1920800) - RowsReturned: 137.20K (137200) - RowsReturnedRate: 42.18 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 646 (646) - ScannerThreadsTotalWallClockTime: 3s392ms - MaterializeTupleTime(*): 2s203ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 544.000ms - ScannerThreadsVoluntaryContextSwitches: 3 (3) - TotalRawHdfsOpenFileTime(*): 29.014us - TotalRawHdfsReadTime(*): 2.255ms - TotalReadThroughput: 1.67 MB/sec CodeGen:(Total: 1s123ms, non-child: 1s123ms, % non-child: 100.00%) - CodegenTime: 1.729ms - CompileTime: 68.649ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 44 (44) - NumInstructions: 769 (769) - OptimizationTime: 755.970ms - PeakMemoryUsage: 384.50 KB (393728) - PrepareTime: 298.729ms Fragment F34: Instance 3f4b6afbed1991fc:3c23055700000034 (host=XXX:22001):(Total: 4s675ms, non-child: 180.774ms, % non-child: 3.87%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB Fragment Instance Lifecycle Event Timeline: 5s233ms - Prepare Finished: 610.694ms (610.694ms) - Open Finished: 1s738ms (1s128ms) - First Batch Produced: 1s896ms (158.004ms) - First Batch Sent: 1s897ms (835.683us) - ExecInternal Finished: 5s233ms (3s336ms) MemoryUsage(500.000ms): 17.35 KB, 401.85 KB, 23.48 KB, 9.10 MB, 8.67 MB, 8.67 MB, 8.68 MB, 8.68 MB, 8.50 MB ThreadUsage(500.000ms): 1, 1, 2, 2, 2, 2, 2, 2, 2 - AverageThreadTokens: 1.78 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.31 MB (9759573) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 137.20K (137200) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 12.276ms - TotalStorageWaitTime: 1.873ms - TotalThreadsInvoluntaryContextSwitches: 730 (730) - TotalThreadsTotalWallClockTime: 8s015ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 852.000ms - TotalThreadsVoluntaryContextSwitches: 224 (224) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 3s494ms - ExecTreeExecTime: 3s252ms - OpenTime: 1s128ms - ExecTreeOpenTime: 129.632us - PrepareTime: 52.153ms - ExecTreePrepareTime: 195.337us KrpcDataStreamSender (dst_id=106):(Total: 117.897ms, non-child: 117.897ms, % non-child: 100.00%) - BytesSent: 2.90 MB (3043464) - EosSent: 3 (3) - OverallThroughput: 24.62 MB/sec - PeakMemoryUsage: 93.35 KB (95592) - RowsReturned: 137.20K (137200) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 101.889ms - UncompressedRowBatchSize: 7.46 MB (7820400) HDFS_SCAN_NODE (id=44):(Total: 3s252ms, non-child: 3s252ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB - FooterProcessingTime: (Avg: 1.993ms ; Min: 1.993ms ; Max: 1.993ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.54 MB (7903345) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.54 MB (7903345) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.54 MB (7903345) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 2.094ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9442795) - PerReadThreadRawHdfsThroughput: 3.26 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 3s157ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 1.92M (1920800) - RowsReturned: 137.20K (137200) - RowsReturnedRate: 42.18 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 646 (646) - ScannerThreadsTotalWallClockTime: 3s392ms - MaterializeTupleTime(*): 2s203ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 544.000ms - ScannerThreadsVoluntaryContextSwitches: 3 (3) - TotalRawHdfsOpenFileTime(*): 29.014us - TotalRawHdfsReadTime(*): 2.255ms - TotalReadThroughput: 1.67 MB/sec CodeGen:(Total: 1s123ms, non-child: 1s123ms, % non-child: 100.00%) - CodegenTime: 1.729ms - CompileTime: 68.649ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 44 (44) - NumInstructions: 769 (769) - OptimizationTime: 755.970ms - PeakMemoryUsage: 384.50 KB (393728) - PrepareTime: 298.729ms Averaged Fragment F36:(Total: 7s091ms, non-child: 2s590ms, % non-child: 36.53%) split sizes: min: 7.48 MB, max: 7.48 MB, avg: 7.48 MB, stddev: 0 completion times: min:7s726ms max:7s726ms mean: 7s726ms stddev:0.000ns execution rates: min:991.66 KB/sec max:991.66 KB/sec mean:991.66 KB/sec stddev:0.72 B/sec num instances: 1 - AverageThreadTokens: 1.93 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.17 MB (9616839) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1.92M (1920800) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 16.067ms - TotalStorageWaitTime: 3.174ms - TotalThreadsInvoluntaryContextSwitches: 2.59K (2590) - TotalThreadsTotalWallClockTime: 13s186ms - TotalThreadsSysTime: 12.000ms - TotalThreadsUserTime: 1s680ms - TotalThreadsVoluntaryContextSwitches: 1.82K (1818) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 6s392ms - ExecTreeExecTime: 2s532ms - OpenTime: 586.629ms - ExecTreeOpenTime: 87.336us - PrepareTime: 112.687ms - ExecTreePrepareTime: 139.275us KrpcDataStreamSender (dst_id=108):(Total: 1s448ms, non-child: 1s448ms, % non-child: 100.00%) - BytesSent: 14.67 MB (15378251) - EosSent: 3 (3) - OverallThroughput: 10.13 MB/sec - PeakMemoryUsage: 160.78 KB (164640) - RowsReturned: 1.92M (1920800) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1s407ms - UncompressedRowBatchSize: 23.81 MB (24970400) HDFS_SCAN_NODE (id=45):(Total: 2s529ms, non-child: 2s529ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.51 MB (7871794) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.51 MB (7871794) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.51 MB (7871794) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 1.563ms - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9443592) - PerReadThreadRawHdfsThroughput: 3.15 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 12.397ms - RowBatchQueuePutWaitTime: 5s993ms - RowsRead: 1.92M (1920800) - RowsReturned: 1.92M (1920800) - RowsReturnedRate: 759.24 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 15 (15) - ScannerThreadsTotalWallClockTime: 6s207ms - MaterializeTupleTime(*): 188.025ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 148.000ms - ScannerThreadsVoluntaryContextSwitches: 1.74K (1738) - TotalRawHdfsOpenFileTime(*): 30.352us - TotalRawHdfsReadTime(*): 2.324ms - TotalReadThroughput: 1.07 MB/sec CodeGen:(Total: 522.655ms, non-child: 522.655ms, % non-child: 100.00%) - CodegenTime: 72.095ms - CompileTime: 1.926ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 47.449ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 472.765ms Fragment F36: Instance 3f4b6afbed1991fc:3c23055700000038 (host=XXX:22001):(Total: 7s091ms, non-child: 2s590ms, % non-child: 36.53%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB Fragment Instance Lifecycle Event Timeline: 7s702ms - Prepare Finished: 723.314ms (723.314ms) - Open Finished: 1s309ms (586.636ms) - First Batch Produced: 1s454ms (144.989ms) - First Batch Sent: 1s455ms (458.930us) - ExecInternal Finished: 7s702ms (6s246ms) MemoryUsage(500.000ms): 84.78 KB, 85.19 KB, 9.17 MB, 9.14 MB, 9.16 MB, 9.16 MB, 9.14 MB, 9.16 MB, 9.15 MB, 9.16 MB, 9.15 MB, 9.12 MB, 9.16 MB, 9.12 MB ThreadUsage(500.000ms): 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 - AverageThreadTokens: 1.93 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.17 MB (9616839) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1.92M (1920800) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 16.067ms - TotalStorageWaitTime: 3.174ms - TotalThreadsInvoluntaryContextSwitches: 2.59K (2590) - TotalThreadsTotalWallClockTime: 13s186ms - TotalThreadsSysTime: 12.000ms - TotalThreadsUserTime: 1s680ms - TotalThreadsVoluntaryContextSwitches: 1.82K (1818) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 6s392ms - ExecTreeExecTime: 2s532ms - OpenTime: 586.629ms - ExecTreeOpenTime: 87.336us - PrepareTime: 112.687ms - ExecTreePrepareTime: 139.275us KrpcDataStreamSender (dst_id=108):(Total: 1s448ms, non-child: 1s448ms, % non-child: 100.00%) - BytesSent: 14.67 MB (15378251) - EosSent: 3 (3) - OverallThroughput: 10.13 MB/sec - PeakMemoryUsage: 160.78 KB (164640) - RowsReturned: 1.92M (1920800) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1s407ms - UncompressedRowBatchSize: 23.81 MB (24970400) HDFS_SCAN_NODE (id=45):(Total: 2s529ms, non-child: 2s529ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB - FooterProcessingTime: (Avg: 1.043ms ; Min: 1.043ms ; Max: 1.043ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.51 MB (7871794) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.51 MB (7871794) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.51 MB (7871794) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 1.563ms - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9443592) - PerReadThreadRawHdfsThroughput: 3.15 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 12.397ms - RowBatchQueuePutWaitTime: 5s993ms - RowsRead: 1.92M (1920800) - RowsReturned: 1.92M (1920800) - RowsReturnedRate: 759.24 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 15 (15) - ScannerThreadsTotalWallClockTime: 6s207ms - MaterializeTupleTime(*): 188.025ms - ScannerThreadsSysTime: 4.000ms - ScannerThreadsUserTime: 148.000ms - ScannerThreadsVoluntaryContextSwitches: 1.74K (1738) - TotalRawHdfsOpenFileTime(*): 30.352us - TotalRawHdfsReadTime(*): 2.324ms - TotalReadThroughput: 1.07 MB/sec CodeGen:(Total: 522.655ms, non-child: 522.655ms, % non-child: 100.00%) - CodegenTime: 72.095ms - CompileTime: 1.926ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 47.449ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 472.765ms Averaged Fragment F38:(Total: 1s144ms, non-child: 260.142ms, % non-child: 22.73%) split sizes: min: 1.73 MB, max: 1.73 MB, avg: 1.73 MB, stddev: 0 completion times: min:1s808ms max:1s808ms mean: 1s808ms stddev:0.000ns execution rates: min:979.82 KB/sec max:979.82 KB/sec mean:979.82 KB/sec stddev:0.66 B/sec num instances: 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.30 MB (1364579) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 277.53 MB (291008137) - RowsProduced: 18.00K (18000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 205.140ms - TotalStorageWaitTime: 6.993ms - TotalThreadsInvoluntaryContextSwitches: 34 (34) - TotalThreadsTotalWallClockTime: 1s104ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 48.000ms - TotalThreadsVoluntaryContextSwitches: 102 (102) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 316.560ms - ExecTreeExecTime: 95.380ms - OpenTime: 723.150ms - ExecTreeOpenTime: 94.096us - PrepareTime: 104.720ms - ExecTreePrepareTime: 146.411us KrpcDataStreamSender (dst_id=109):(Total: 67.820ms, non-child: 67.820ms, % non-child: 100.00%) - BytesSent: 263.99 KB (270323) - EosSent: 3 (3) - OverallThroughput: 3.80 MB/sec - PeakMemoryUsage: 15.35 KB (15720) - RowsReturned: 18.00K (18000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.745ms - UncompressedRowBatchSize: 861.33 KB (882000) HDFS_SCAN_NODE (id=49):(Total: 95.765ms, non-child: 95.765ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 277.86 KB (284524) - BytesReadDataNodeCache: 0 - BytesReadLocal: 277.86 KB (284524) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 277.86 KB (284524) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 54.424us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.28 MB (1340252) - PerReadThreadRawHdfsThroughput: 435.19 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 63.097ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 18.00K (18000) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 187.96 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 1 (1) - ScannerThreadsTotalWallClockTime: 64.682ms - MaterializeTupleTime(*): 40.164ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 4.000ms - ScannerThreadsVoluntaryContextSwitches: 7 (7) - TotalRawHdfsOpenFileTime(*): 23.735us - TotalRawHdfsReadTime(*): 623.508us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 720.784ms, non-child: 720.784ms, % non-child: 100.00%) - CodegenTime: 655.403us - CompileTime: 82.769ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 85.002ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 552.460ms Fragment F38: Instance 3f4b6afbed1991fc:3c23055700000039 (host=XXX:22001):(Total: 1s144ms, non-child: 260.142ms, % non-child: 22.73%) Hdfs split stats (:<# splits>/): 0:1/1.73 MB Fragment Instance Lifecycle Event Timeline: 1s795ms - Prepare Finished: 755.422ms (755.422ms) - Open Finished: 1s478ms (723.159ms) - First Batch Produced: 1s521ms (43.063ms) - First Batch Sent: 1s522ms (878.949us) - ExecInternal Finished: 1s795ms (272.614ms) MemoryUsage(500.000ms): 23.35 KB, 23.35 KB ThreadUsage(500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.30 MB (1364579) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 277.53 MB (291008137) - RowsProduced: 18.00K (18000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 205.140ms - TotalStorageWaitTime: 6.993ms - TotalThreadsInvoluntaryContextSwitches: 34 (34) - TotalThreadsTotalWallClockTime: 1s104ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 48.000ms - TotalThreadsVoluntaryContextSwitches: 102 (102) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 316.560ms - ExecTreeExecTime: 95.380ms - OpenTime: 723.150ms - ExecTreeOpenTime: 94.096us - PrepareTime: 104.720ms - ExecTreePrepareTime: 146.411us KrpcDataStreamSender (dst_id=109):(Total: 67.820ms, non-child: 67.820ms, % non-child: 100.00%) - BytesSent: 263.99 KB (270323) - EosSent: 3 (3) - OverallThroughput: 3.80 MB/sec - PeakMemoryUsage: 15.35 KB (15720) - RowsReturned: 18.00K (18000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.745ms - UncompressedRowBatchSize: 861.33 KB (882000) HDFS_SCAN_NODE (id=49):(Total: 95.765ms, non-child: 95.765ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/1.73 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0 - FooterProcessingTime: (Avg: 848.784us ; Min: 848.784us ; Max: 848.784us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 277.86 KB (284524) - BytesReadDataNodeCache: 0 - BytesReadLocal: 277.86 KB (284524) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 277.86 KB (284524) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 54.424us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.28 MB (1340252) - PerReadThreadRawHdfsThroughput: 435.19 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 63.097ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 18.00K (18000) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 187.96 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 1 (1) - ScannerThreadsTotalWallClockTime: 64.682ms - MaterializeTupleTime(*): 40.164ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 4.000ms - ScannerThreadsVoluntaryContextSwitches: 7 (7) - TotalRawHdfsOpenFileTime(*): 23.735us - TotalRawHdfsReadTime(*): 623.508us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 720.784ms, non-child: 720.784ms, % non-child: 100.00%) - CodegenTime: 655.403us - CompileTime: 82.769ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 85.002ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 552.460ms Averaged Fragment F49:(Total: 7s727ms, non-child: 26.652ms, % non-child: 0.34%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s817ms max:7s817ms mean: 7s817ms stddev:0.000ns execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 62.73 KB (64232) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 7s565ms - TotalNetworkSendTime: 449.072us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 24 (24) - TotalThreadsTotalWallClockTime: 7s658ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 16.000ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 535.409us - ExecTreeExecTime: 22.801us - OpenTime: 7s657ms - ExecTreeOpenTime: 7s565ms - PrepareTime: 68.855ms - ExecTreePrepareTime: 216.913us KrpcDataStreamSender (dst_id=122):(Total: 42.665ms, non-child: 42.665ms, % non-child: 100.00%) - BytesSent: 48.00 B (48) - EosSent: 3 (3) - OverallThroughput: 1.10 KB/sec - PeakMemoryUsage: 6.73 KB (6888) - RowsReturned: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.987us - UncompressedRowBatchSize: 65.00 B (65) AGGREGATION_NODE (id=121):(Total: 7s565ms, non-child: 308.021us, % non-child: 0.00%) - BuildTime: 16.238us - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - HashBuckets: 0 (0) - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 0 (0) - PeakMemoryUsage: 16.00 KB (16384) - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - RowsReturnedRate: 0 - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=120):(Total: 7s565ms, non-child: 7s565ms, % non-child: 100.00%) - ConvertRowBatchTime: 5.913us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 12.676us - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 7s535ms - TotalBytesReceived: 531.00 B (531) - TotalGetBatchTime: 7s565ms - DataArrivalTimer: 7s565ms SenderSide: - DeserializeRowBatchTime: 45.977us - NumBatchesArrived: 3 (3) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 3 (3) - NumBatchesReceived: 3 (3) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 92.088ms, non-child: 92.088ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 0.000ns - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 88.094ms Fragment F49: Instance 3f4b6afbed1991fc:3c2305570000004c (host=XXX:22000):(Total: 7s727ms, non-child: 26.652ms, % non-child: 0.34%) Fragment Instance Lifecycle Event Timeline: 7s815ms - Prepare Finished: 157.404ms (157.404ms) - Open Finished: 7s815ms (7s657ms) - First Batch Produced: 7s815ms (24.698us) - First Batch Sent: 7s815ms (27.368us) - ExecInternal Finished: 7s815ms (480.376us) MemoryUsage(500.000ms): 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB, 18.73 KB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 62.73 KB (64232) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 7s565ms - TotalNetworkSendTime: 449.072us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 24 (24) - TotalThreadsTotalWallClockTime: 7s658ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 16.000ms - TotalThreadsVoluntaryContextSwitches: 9 (9) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 535.409us - ExecTreeExecTime: 22.801us - OpenTime: 7s657ms - ExecTreeOpenTime: 7s565ms - PrepareTime: 68.855ms - ExecTreePrepareTime: 216.913us KrpcDataStreamSender (dst_id=122):(Total: 42.665ms, non-child: 42.665ms, % non-child: 100.00%) - BytesSent: 48.00 B (48) - EosSent: 3 (3) - OverallThroughput: 1.10 KB/sec - PeakMemoryUsage: 6.73 KB (6888) - RowsReturned: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.987us - UncompressedRowBatchSize: 65.00 B (65) AGGREGATION_NODE (id=121):(Total: 7s565ms, non-child: 308.021us, % non-child: 0.00%) - BuildTime: 16.238us - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - HashBuckets: 0 (0) - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 0 (0) - PeakMemoryUsage: 16.00 KB (16384) - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - RowsReturnedRate: 0 - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=120):(Total: 7s565ms, non-child: 54.769us, % non-child: 0.00%) - ConvertRowBatchTime: 5.913us - PeakMemoryUsage: 32.00 KB (32768) - RowsReturned: 3 (3) - RowsReturnedRate: 0 Buffer pool: - AllocTime: 12.676us - CumulativeAllocationBytes: 48.00 KB (49152) - CumulativeAllocations: 6 (6) - PeakReservation: 32.00 KB (32768) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 32.00 KB (32768) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 7s535ms - TotalBytesReceived: 531.00 B (531) - TotalGetBatchTime: 7s565ms - DataArrivalTimer: 7s565ms SenderSide: - DeserializeRowBatchTime: 45.977us - NumBatchesArrived: 3 (3) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 3 (3) - NumBatchesReceived: 3 (3) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 92.088ms, non-child: 92.088ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 0.000ns - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 0 (0) - NumInstructions: 0 (0) - OptimizationTime: 0.000ns - PeakMemoryUsage: 0 - PrepareTime: 88.094ms Averaged Fragment F47:(Total: 7s479ms, non-child: 416.222ms, % non-child: 5.56%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s788ms max:7s817ms mean: 7s803ms stddev:11.829ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 25.89 MB (27143004) - PeakReservation: 21.94 MB (23003136) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s063ms - TotalNetworkSendTime: 385.181us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 598 (598) - TotalThreadsTotalWallClockTime: 7s401ms - TotalThreadsSysTime: 2.666ms - TotalThreadsUserTime: 953.333ms - TotalThreadsVoluntaryContextSwitches: 144 (144) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 453.203us - ExecTreeExecTime: 6.818us - OpenTime: 7s367ms - ExecTreeOpenTime: 2s564ms - PrepareTime: 112.178ms - ExecTreePrepareTime: 10.767ms KrpcDataStreamSender (dst_id=120):(Total: 5.490ms, non-child: 5.490ms, % non-child: 100.00%) - BytesSent: 92.00 B (92) - EosSent: 1 (1) - OverallThroughput: 390.81 KB/sec - PeakMemoryUsage: 768.00 B (768) - RowsReturned: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 8.006us - UncompressedRowBatchSize: 177.00 B (177) AGGREGATION_NODE (id=70):(Total: 2s575ms, non-child: 0.000ns, % non-child: 0.00%) - BuildTime: 82.232us - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - HashBuckets: 0 (0) - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 0 (0) - PeakMemoryUsage: 64.00 KB (65536) - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - RowsReturnedRate: 0 - SpilledPartitions: 0 (0) HASH_JOIN_NODE (id=69):(Total: 2s585ms, non-child: 30.431ms, % non-child: 1.18%) - BuildRows: 18.00K (18000) - BuildTime: 10.344ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 439 (439) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 83.413us - RowsReturned: 439 (439) - RowsReturnedRate: 175.00 /sec Buffer pool: - AllocTime: 50.617us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=69): - BuildRowsPartitionTime: 1.243ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 5.819ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=119):(Total: 23.140ms, non-child: 23.140ms, % non-child: 100.00%) - ConvertRowBatchTime: 18.616ms - PeakMemoryUsage: 424.00 KB (434176) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 828.56 K/sec Buffer pool: - AllocTime: 89.366us - CumulativeAllocationBytes: 424.00 KB (434176) - CumulativeAllocations: 36 (36) - PeakReservation: 424.00 KB (434176) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 424.00 KB (434176) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 298.83 KB (306000) - TotalGetBatchTime: 4.444ms - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 539.170us - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=68):(Total: 2s555ms, non-child: 229.052ms, % non-child: 8.96%) - BuildRows: 640.27K (640266) - BuildTime: 206.430ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 443 (443) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 56.140us - RowsReturned: 439 (439) - RowsReturnedRate: 178.00 /sec Buffer pool: - AllocTime: 1.351ms - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=68): - BuildRowsPartitionTime: 119.081ms - BuildRowsPartitioned: 640.27K (640266) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 86.591ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=118):(Total: 2s326ms, non-child: 2s326ms, % non-child: 100.00%) - ConvertRowBatchTime: 265.519ms - PeakMemoryUsage: 3.59 MB (3768320) - RowsReturned: 640.27K (640266) - RowsReturnedRate: 292.25 K/sec Buffer pool: - AllocTime: 3.150ms - CumulativeAllocationBytes: 9.17 MB (9614677) - CumulativeAllocations: 392 (392) - PeakReservation: 3.59 MB (3768320) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.59 MB (3768320) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.94 MB (8323466) - TotalGetBatchTime: 2s059ms - DataArrivalTimer: 2s057ms SenderSide: - DeserializeRowBatchTime: 19.923ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=117):(Total: 151.178us, non-child: 151.178us, % non-child: 100.00%) - ConvertRowBatchTime: 80.181us - PeakMemoryUsage: 160.00 KB (163840) - RowsReturned: 443 (443) - RowsReturnedRate: 3.21 M/sec Buffer pool: - AllocTime: 27.181us - CumulativeAllocationBytes: 160.00 KB (163840) - CumulativeAllocations: 11 (11) - PeakReservation: 160.00 KB (163840) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 160.00 KB (163840) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 79.66 KB (81573) - TotalGetBatchTime: 21.012us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 329.634us - NumBatchesArrived: 5 (5) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 5 (5) - NumBatchesReceived: 5 (5) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 4s482ms, non-child: 4s482ms, % non-child: 100.00%) - CodegenTime: 449.542ms - CompileTime: 326.789ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 151 (151) - NumInstructions: 9.79K (9789) - OptimizationTime: 3s917ms - PeakMemoryUsage: 4.78 MB (5011968) - PrepareTime: 232.877ms Fragment F47: Instance 3f4b6afbed1991fc:3c23055700000049 (host=XXX:22002):(Total: 7s714ms, non-child: 382.509ms, % non-child: 4.96%) Fragment Instance Lifecycle Event Timeline: 7s785ms - Prepare Finished: 97.423ms (97.423ms) - Open Finished: 7s785ms (7s687ms) - First Batch Produced: 7s785ms (9.010us) - First Batch Sent: 7s785ms (29.891us) - ExecInternal Finished: 7s785ms (354.652us) MemoryUsage(500.000ms): 161.25 KB, 4.94 MB, 4.94 MB, 5.34 MB, 5.87 MB, 6.34 MB, 6.85 MB, 7.37 MB, 7.93 MB, 3.67 MB, 10.02 MB, 10.02 MB, 10.02 MB, 10.02 MB, 10.02 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 25.45 MB (26684252) - PeakReservation: 21.94 MB (23003136) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s381ms - TotalNetworkSendTime: 336.366us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 455 (455) - TotalThreadsTotalWallClockTime: 7s724ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 944.000ms - TotalThreadsVoluntaryContextSwitches: 152 (152) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 397.741us - ExecTreeExecTime: 6.734us - OpenTime: 7s687ms - ExecTreeOpenTime: 2s902ms - PrepareTime: 26.411ms - ExecTreePrepareTime: 8.482ms KrpcDataStreamSender (dst_id=120):(Total: 5.646ms, non-child: 5.646ms, % non-child: 100.00%) - BytesSent: 96.00 B (96) - EosSent: 1 (1) - OverallThroughput: 16.60 KB/sec - PeakMemoryUsage: 768.00 B (768) - RowsReturned: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.861us - UncompressedRowBatchSize: 177.00 B (177) AGGREGATION_NODE (id=70):(Total: 2s910ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled - BuildTime: 96.339us - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - HashBuckets: 0 (0) - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 0 (0) - PeakMemoryUsage: 64.00 KB (65536) - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - RowsReturnedRate: 0 - SpilledPartitions: 0 (0) HASH_JOIN_NODE (id=69):(Total: 2s918ms, non-child: 28.525ms, % non-child: 0.98%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 7.451ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 481 (481) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 91.453us - RowsReturned: 481 (481) - RowsReturnedRate: 164.00 /sec Buffer pool: - AllocTime: 47.133us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=69): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.260ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 5.700ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=119):(Total: 28.819ms, non-child: 28.819ms, % non-child: 100.00%) - ConvertRowBatchTime: 28.618ms - PeakMemoryUsage: 424.00 KB (434176) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 624.57 K/sec Buffer pool: - AllocTime: 87.797us - CumulativeAllocationBytes: 424.00 KB (434176) - CumulativeAllocations: 36 (36) - PeakReservation: 424.00 KB (434176) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 424.00 KB (434176) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 221.00 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 298.83 KB (306000) - TotalGetBatchTime: 105.614us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 532.121us - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=68):(Total: 2s890ms, non-child: 231.242ms, % non-child: 8.00%) ExecOption: Probe Side Codegen Enabled - BuildRows: 639.71K (639709) - BuildTime: 211.255ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 493 (493) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 68.243us - RowsReturned: 481 (481) - RowsReturnedRate: 166.00 /sec Buffer pool: - AllocTime: 104.667us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=68): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 138.964ms - BuildRowsPartitioned: 639.71K (639709) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 71.425ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=118):(Total: 2s658ms, non-child: 278.982ms, % non-child: 10.49%) - ConvertRowBatchTime: 276.308ms - PeakMemoryUsage: 3.14 MB (3293184) - RowsReturned: 639.71K (639709) - RowsReturnedRate: 240.62 K/sec Buffer pool: - AllocTime: 1.202ms - CumulativeAllocationBytes: 9.16 MB (9601024) - CumulativeAllocations: 392 (392) - PeakReservation: 3.14 MB (3293184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.14 MB (3293184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 83.18 KB, 457.49 KB, 873.39 KB, 1.30 MB, 1.75 MB, 2.23 MB, 2.68 MB, 3.17 MB, 3.70 MB, 4.43 MB, 5.36 MB, 6.50 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.93 MB (8316217) - TotalGetBatchTime: 2s381ms - DataArrivalTimer: 2s379ms SenderSide: - DeserializeRowBatchTime: 14.593ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=117):(Total: 160.337us, non-child: 160.337us, % non-child: 100.00%) - ConvertRowBatchTime: 82.857us - PeakMemoryUsage: 176.00 KB (180224) - RowsReturned: 493 (493) - RowsReturnedRate: 3.07 M/sec Buffer pool: - AllocTime: 28.612us - CumulativeAllocationBytes: 176.00 KB (180224) - CumulativeAllocations: 12 (12) - PeakReservation: 176.00 KB (180224) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 176.00 KB (180224) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 88.59 KB (90712) - TotalGetBatchTime: 25.423us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 353.558us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 4s415ms, non-child: 4s415ms, % non-child: 100.00%) - CodegenTime: 538.188ms - CompileTime: 360.623ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 151 (151) - NumInstructions: 9.79K (9789) - OptimizationTime: 3s813ms - PeakMemoryUsage: 4.78 MB (5011968) - PrepareTime: 225.096ms Instance 3f4b6afbed1991fc:3c2305570000004a (host=XXX:22000):(Total: 7s704ms, non-child: 237.940ms, % non-child: 3.09%) Fragment Instance Lifecycle Event Timeline: 7s815ms - Prepare Finished: 165.250ms (165.250ms) - Open Finished: 7s814ms (7s649ms) - First Batch Produced: 7s814ms (8.564us) - First Batch Sent: 7s814ms (27.430us) - ExecInternal Finished: 7s815ms (284.147us) MemoryUsage(500.000ms): 161.25 KB, 4.94 MB, 4.94 MB, 5.31 MB, 5.87 MB, 6.34 MB, 6.85 MB, 7.41 MB, 7.93 MB, 3.71 MB, 10.02 MB, 10.02 MB, 10.02 MB, 10.02 MB, 10.02 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 25.44 MB (26676060) - PeakReservation: 21.94 MB (23003136) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 2s437ms - TotalNetworkSendTime: 269.342us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 648 (648) - TotalThreadsTotalWallClockTime: 7s678ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 944.000ms - TotalThreadsVoluntaryContextSwitches: 137 (137) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 324.774us - ExecTreeExecTime: 6.283us - OpenTime: 7s649ms - ExecTreeOpenTime: 2s969ms - PrepareTime: 55.097ms - ExecTreePrepareTime: 23.111ms KrpcDataStreamSender (dst_id=120):(Total: 79.974us, non-child: 79.974us, % non-child: 100.00%) - BytesSent: 94.00 B (94) - EosSent: 1 (1) - OverallThroughput: 1.12 MB/sec - PeakMemoryUsage: 768.00 B (768) - RowsReturned: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.974us - UncompressedRowBatchSize: 177.00 B (177) AGGREGATION_NODE (id=70):(Total: 2s992ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled - BuildTime: 95.487us - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - HashBuckets: 0 (0) - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 0 (0) - PeakMemoryUsage: 64.00 KB (65536) - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - RowsReturnedRate: 0 - SpilledPartitions: 0 (0) HASH_JOIN_NODE (id=69):(Total: 3s015ms, non-child: 37.483ms, % non-child: 1.24%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 3.988ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 438 (438) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 82.883us - RowsReturned: 438 (438) - RowsReturnedRate: 145.00 /sec Buffer pool: - AllocTime: 41.129us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=69): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.239ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.320ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=119):(Total: 24.711ms, non-child: 24.711ms, % non-child: 100.00%) - ConvertRowBatchTime: 24.561ms - PeakMemoryUsage: 424.00 KB (434176) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 728.40 K/sec Buffer pool: - AllocTime: 85.252us - CumulativeAllocationBytes: 424.00 KB (434176) - CumulativeAllocations: 36 (36) - PeakReservation: 424.00 KB (434176) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 424.00 KB (434176) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 204.00 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 298.83 KB (306000) - TotalGetBatchTime: 80.437us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 541.348us - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=68):(Total: 2s977ms, non-child: 255.328ms, % non-child: 8.57%) ExecOption: Probe Side Codegen Enabled - BuildRows: 641.22K (641220) - BuildTime: 210.713ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 438 (438) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 60.536us - RowsReturned: 438 (438) - RowsReturnedRate: 147.00 /sec Buffer pool: - AllocTime: 3.708ms - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=68): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 110.075ms - BuildRowsPartitioned: 641.22K (641220) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 99.979ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=118):(Total: 2s722ms, non-child: 286.152ms, % non-child: 10.51%) - ConvertRowBatchTime: 283.437ms - PeakMemoryUsage: 3.14 MB (3293184) - RowsReturned: 641.22K (641220) - RowsReturnedRate: 235.55 K/sec Buffer pool: - AllocTime: 1.051ms - CumulativeAllocationBytes: 9.19 MB (9633792) - CumulativeAllocations: 392 (392) - PeakReservation: 3.14 MB (3293184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.14 MB (3293184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 83.18 KB, 457.49 KB, 873.39 KB, 1.30 MB, 1.79 MB, 2.23 MB, 2.72 MB, 3.21 MB, 3.70 MB, 4.43 MB, 5.40 MB, 6.50 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.95 MB (8335860) - TotalGetBatchTime: 2s437ms - DataArrivalTimer: 2s436ms SenderSide: - DeserializeRowBatchTime: 15.455ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=117):(Total: 202.040us, non-child: 202.040us, % non-child: 100.00%) - ConvertRowBatchTime: 114.758us - PeakMemoryUsage: 168.00 KB (172032) - RowsReturned: 438 (438) - RowsReturnedRate: 2.17 M/sec Buffer pool: - AllocTime: 30.055us - CumulativeAllocationBytes: 168.00 KB (172032) - CumulativeAllocations: 12 (12) - PeakReservation: 168.00 KB (172032) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 168.00 KB (172032) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 78.70 KB (80592) - TotalGetBatchTime: 23.459us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 340.262us - NumBatchesArrived: 6 (6) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 6 (6) - NumBatchesReceived: 6 (6) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 4s474ms, non-child: 4s474ms, % non-child: 100.00%) - CodegenTime: 287.356ms - CompileTime: 357.786ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 151 (151) - NumInstructions: 9.79K (9789) - OptimizationTime: 4s018ms - PeakMemoryUsage: 4.78 MB (5011968) - PrepareTime: 97.534ms Instance 3f4b6afbed1991fc:3c2305570000004b (host=XXX:22001):(Total: 7s020ms, non-child: 628.218ms, % non-child: 8.95%) Fragment Instance Lifecycle Event Timeline: 7s790ms - Prepare Finished: 1s025ms (1s025ms) - Open Finished: 7s790ms (6s764ms) - First Batch Produced: 7s790ms (10.055us) - First Batch Sent: 7s790ms (44.478us) - ExecInternal Finished: 7s790ms (578.696us) MemoryUsage(500.000ms): 161.25 KB, 161.25 KB, 545.25 KB, 5.87 MB, 6.34 MB, 6.85 MB, 7.41 MB, 7.93 MB, 8.45 MB, 9.01 MB, 4.84 MB, 11.38 MB, 11.38 MB, 11.38 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 26.77 MB (28068700) - PeakReservation: 21.94 MB (23003136) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1 (1) - TotalNetworkReceiveTime: 1s372ms - TotalNetworkSendTime: 549.837us - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 691 (691) - TotalThreadsTotalWallClockTime: 6s800ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 972.000ms - TotalThreadsVoluntaryContextSwitches: 143 (143) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 637.095us - ExecTreeExecTime: 7.439us - OpenTime: 6s764ms - ExecTreeOpenTime: 1s822ms - PrepareTime: 255.026ms - ExecTreePrepareTime: 707.268us KrpcDataStreamSender (dst_id=120):(Total: 10.745ms, non-child: 10.745ms, % non-child: 100.00%) - BytesSent: 88.00 B (88) - EosSent: 1 (1) - OverallThroughput: 8.00 KB/sec - PeakMemoryUsage: 768.00 B (768) - RowsReturned: 1 (1) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.185us - UncompressedRowBatchSize: 177.00 B (177) AGGREGATION_NODE (id=70):(Total: 1s823ms, non-child: 0.000ns, % non-child: 0.00%) ExecOption: Codegen Enabled - BuildTime: 54.871us - GetResultsTime: 0.000ns - HTResizeTime: 0.000ns - HashBuckets: 0 (0) - LargestPartitionPercent: 0 (0) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 0 (0) - PeakMemoryUsage: 64.00 KB (65536) - RowsRepartitioned: 0 (0) - RowsReturned: 1 (1) - RowsReturnedRate: 0 - SpilledPartitions: 0 (0) HASH_JOIN_NODE (id=69):(Total: 1s823ms, non-child: 25.285ms, % non-child: 1.39%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 18.00K (18000) - BuildTime: 19.594ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.03 MB (2124032) - ProbeRows: 399 (399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 75.904us - RowsReturned: 399 (399) - RowsReturnedRate: 218.00 /sec Buffer pool: - AllocTime: 63.591us - CumulativeAllocationBytes: 1.50 MB (1572864) - CumulativeAllocations: 24 (24) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.50 MB (1572864) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=69): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 1.231ms - BuildRowsPartitioned: 18.00K (18000) - HashBuckets: 32.77K (32768) - HashCollisions: 0 (0) - HashTablesBuildTime: 9.436ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 21.12 KB (21632) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=119):(Total: 15.890ms, non-child: 15.890ms, % non-child: 100.00%) - ConvertRowBatchTime: 2.670ms - PeakMemoryUsage: 424.00 KB (434176) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 1.13 M/sec Buffer pool: - AllocTime: 95.051us - CumulativeAllocationBytes: 424.00 KB (434176) - CumulativeAllocations: 36 (36) - PeakReservation: 424.00 KB (434176) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 424.00 KB (434176) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 204.00 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB, 298.83 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 298.83 KB (306000) - TotalGetBatchTime: 13.146ms - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 544.042us - NumBatchesArrived: 18 (18) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 18 (18) - NumBatchesReceived: 18 (18) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=68):(Total: 1s797ms, non-child: 200.587ms, % non-child: 11.16%) ExecOption: Probe Side Codegen Enabled - BuildRows: 639.87K (639871) - BuildTime: 197.322ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 20.07 MB (21047552) - ProbeRows: 399 (399) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 39.642us - RowsReturned: 399 (399) - RowsReturnedRate: 221.00 /sec Buffer pool: - AllocTime: 242.019us - CumulativeAllocationBytes: 20.00 MB (20971520) - CumulativeAllocations: 32 (32) - PeakReservation: 20.00 MB (20971520) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 20.00 MB (20971520) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=68): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 108.204ms - BuildRowsPartitioned: 639.87K (639871) - HashBuckets: 1.05M (1048576) - HashCollisions: 0 (0) - HashTablesBuildTime: 88.370ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=118):(Total: 1s597ms, non-child: 239.183ms, % non-child: 14.97%) - ConvertRowBatchTime: 236.811ms - PeakMemoryUsage: 4.50 MB (4718592) - RowsReturned: 639.87K (639871) - RowsReturnedRate: 400.59 K/sec Buffer pool: - AllocTime: 7.198ms - CumulativeAllocationBytes: 9.16 MB (9609216) - CumulativeAllocations: 392 (392) - PeakReservation: 4.50 MB (4718592) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 4.50 MB (4718592) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 83.18 KB, 457.49 KB, 873.39 KB, 1.30 MB, 1.79 MB, 2.23 MB, 2.68 MB, 3.17 MB, 3.70 MB, 4.43 MB, 5.36 MB, 6.46 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 7.93 MB (8318323) - TotalGetBatchTime: 1s359ms - DataArrivalTimer: 1s358ms SenderSide: - DeserializeRowBatchTime: 29.721ms - NumBatchesArrived: 196 (196) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 196 (196) - NumBatchesReceived: 196 (196) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=117):(Total: 91.159us, non-child: 91.159us, % non-child: 100.00%) - ConvertRowBatchTime: 42.930us - PeakMemoryUsage: 136.00 KB (139264) - RowsReturned: 399 (399) - RowsReturnedRate: 4.38 M/sec Buffer pool: - AllocTime: 22.876us - CumulativeAllocationBytes: 136.00 KB (139264) - CumulativeAllocations: 10 (10) - PeakReservation: 136.00 KB (139264) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 136.00 KB (139264) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 71.70 KB (73416) - TotalGetBatchTime: 14.155us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 295.084us - NumBatchesArrived: 5 (5) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 5 (5) - NumBatchesReceived: 5 (5) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 4s558ms, non-child: 4s558ms, % non-child: 100.00%) - CodegenTime: 523.083ms - CompileTime: 261.957ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 151 (151) - NumInstructions: 9.79K (9789) - OptimizationTime: 3s919ms - PeakMemoryUsage: 4.78 MB (5011968) - PrepareTime: 376.000ms Averaged Fragment F45:(Total: 7s254ms, non-child: 175.661ms, % non-child: 2.42%) split sizes: min: 0, max: 0, avg: 0, stddev: 0 completion times: min:7s615ms max:7s618ms mean: 7s617ms stddev:1.332ms execution rates: min:0.00 /sec max:0.00 /sec mean:0.00 /sec stddev:0.00 /sec num instances: 3 - AverageThreadTokens: 1.31 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.47 MB (7829272) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 443 (443) - TotalNetworkReceiveTime: 7s298ms - TotalNetworkSendTime: 5.806ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 188 (188) - TotalThreadsTotalWallClockTime: 9s540ms - TotalThreadsSysTime: 1.333ms - TotalThreadsUserTime: 309.333ms - TotalThreadsVoluntaryContextSwitches: 167 (167) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s794ms - ExecTreeExecTime: 1s786ms - OpenTime: 5s284ms - ExecTreeOpenTime: 3s342ms - PrepareTime: 175.712ms - ExecTreePrepareTime: 11.348ms KrpcDataStreamSender (dst_id=117):(Total: 40.417ms, non-child: 40.417ms, % non-child: 100.00%) - BytesSent: 32.25 KB (33022) - EosSent: 3 (3) - OverallThroughput: 9.11 MB/sec - PeakMemoryUsage: 92.96 KB (95194) - RowsReturned: 443 (443) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.044ms - UncompressedRowBatchSize: 79.66 KB (81573) HASH_JOIN_NODE (id=67):(Total: 5s146ms, non-child: 115.537ms, % non-child: 2.24%) - BuildRows: 45.73K (45733) - BuildTime: 102.849ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.61K (6605) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 503.074us - RowsReturned: 443 (443) - RowsReturnedRate: 87.00 /sec Buffer pool: - AllocTime: 75.365us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=67): - BuildRowsPartitionTime: 50.985ms - BuildRowsPartitioned: 45.73K (45733) - HashBuckets: 129.71K (129706) - HashCollisions: 0 (0) - HashTablesBuildTime: 51.286ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=116):(Total: 3s186ms, non-child: 3s186ms, % non-child: 100.00%) - ConvertRowBatchTime: 6.965ms - PeakMemoryUsage: 570.67 KB (584362) - RowsReturned: 45.73K (45733) - RowsReturnedRate: 14.87 K/sec Buffer pool: - AllocTime: 712.451us - CumulativeAllocationBytes: 4.48 MB (4702208) - CumulativeAllocations: 230 (230) - PeakReservation: 570.67 KB (584362) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 570.67 KB (584362) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 59.137ms - TotalBytesReceived: 2.49 MB (2606800) - TotalGetBatchTime: 3s178ms - DataArrivalTimer: 3s166ms SenderSide: - DeserializeRowBatchTime: 13.039ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=115):(Total: 4s121ms, non-child: 4s121ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.030ms - PeakMemoryUsage: 1.18 MB (1234261) - RowsReturned: 6.61K (6605) - RowsReturnedRate: 2.05 K/sec Buffer pool: - AllocTime: 1.661ms - CumulativeAllocationBytes: 1.47 MB (1537365) - CumulativeAllocations: 76 (76) - PeakReservation: 1.18 MB (1234261) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.18 MB (1234261) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 2s315ms - TotalBytesReceived: 819.26 KB (838919) - TotalGetBatchTime: 4s119ms - DataArrivalTimer: 4s119ms SenderSide: - DeserializeRowBatchTime: 5.169ms - NumBatchesArrived: 38 (38) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 38 (38) - NumBatchesReceived: 38 (38) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s891ms, non-child: 1s891ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 162.465ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s594ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 134.071ms Fragment F45: Instance 3f4b6afbed1991fc:3c23055700000044 (host=XXX:22002):(Total: 7s525ms, non-child: 95.613ms, % non-child: 1.27%) Fragment Instance Lifecycle Event Timeline: 7s615ms - Prepare Finished: 222.082ms (222.082ms) - Open Finished: 5s826ms (5s604ms) - First Batch Produced: 7s605ms (1s779ms) - First Batch Sent: 7s607ms (1.267ms) - ExecInternal Finished: 7s615ms (8.354ms) MemoryUsage(500.000ms): 112.55 KB, 1.30 MB, 1.30 MB, 1.30 MB, 4.98 MB, 5.01 MB, 5.01 MB, 5.01 MB, 5.01 MB, 5.01 MB, 5.01 MB, 6.35 MB, 6.94 MB, 7.19 MB, 7.21 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1 - AverageThreadTokens: 1.47 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.27 MB (7625838) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 405 (405) - TotalNetworkReceiveTime: 8s696ms - TotalNetworkSendTime: 7.766ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 144 (144) - TotalThreadsTotalWallClockTime: 10s997ms - TotalThreadsSysTime: 4.000ms - TotalThreadsUserTime: 296.000ms - TotalThreadsVoluntaryContextSwitches: 165 (165) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s789ms - ExecTreeExecTime: 1s779ms - OpenTime: 5s604ms - ExecTreeOpenTime: 3s651ms - PrepareTime: 132.036ms - ExecTreePrepareTime: 307.273us KrpcDataStreamSender (dst_id=117):(Total: 101.028ms, non-child: 101.028ms, % non-child: 100.00%) - BytesSent: 29.46 KB (30167) - EosSent: 3 (3) - OverallThroughput: 291.60 KB/sec - PeakMemoryUsage: 82.30 KB (84272) - RowsReturned: 405 (405) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 968.021us - UncompressedRowBatchSize: 72.77 KB (74520) HASH_JOIN_NODE (id=67):(Total: 5s431ms, non-child: 87.901ms, % non-child: 1.62%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 45.73K (45734) - BuildTime: 76.273ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.12K (6120) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 460.260us - RowsReturned: 405 (405) - RowsReturnedRate: 74.00 /sec Buffer pool: - AllocTime: 71.540us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=67): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 10.911ms - BuildRowsPartitioned: 45.73K (45734) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 64.827ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=116):(Total: 3s526ms, non-child: 9.320ms, % non-child: 0.26%) - ConvertRowBatchTime: 6.836ms - PeakMemoryUsage: 136.00 KB (139264) - RowsReturned: 45.73K (45734) - RowsReturnedRate: 12.97 K/sec Buffer pool: - AllocTime: 692.091us - CumulativeAllocationBytes: 4.48 MB (4694016) - CumulativeAllocations: 230 (230) - PeakReservation: 136.00 KB (139264) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 136.00 KB (139264) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 111.05 KB, 421.99 KB, 755.14 KB, 1.08 MB, 1.41 MB, 1.80 MB, 2.15 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.49 MB (2606838) - TotalGetBatchTime: 3s518ms - DataArrivalTimer: 3s516ms SenderSide: - DeserializeRowBatchTime: 12.946ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=115):(Total: 5s179ms, non-child: 1.576ms, % non-child: 0.03%) - ConvertRowBatchTime: 948.866us - PeakMemoryUsage: 1.09 MB (1138688) - RowsReturned: 6.12K (6120) - RowsReturnedRate: 1.18 K/sec Buffer pool: - AllocTime: 174.560us - CumulativeAllocationBytes: 1.35 MB (1417216) - CumulativeAllocations: 70 (70) - PeakReservation: 1.09 MB (1138688) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.09 MB (1138688) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152.80 KB, 567.53 KB, 742.16 KB, 759.02 KB - FirstBatchArrivalWaitTime: 3s370ms - TotalBytesReceived: 759.02 KB (777240) - TotalGetBatchTime: 5s178ms - DataArrivalTimer: 5s178ms SenderSide: - DeserializeRowBatchTime: 2.302ms - NumBatchesArrived: 35 (35) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 35 (35) - NumBatchesReceived: 35 (35) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s897ms, non-child: 1s897ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 171.778ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s678ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 46.514ms Instance 3f4b6afbed1991fc:3c23055700000045 (host=XXX:22000):(Total: 7s459ms, non-child: 33.864ms, % non-child: 0.45%) Fragment Instance Lifecycle Event Timeline: 7s615ms - Prepare Finished: 179.995ms (179.995ms) - Open Finished: 5s811ms (5s631ms) - First Batch Produced: 7s608ms (1s796ms) - First Batch Sent: 7s609ms (1.545ms) - ExecInternal Finished: 7s615ms (5.651ms) MemoryUsage(500.000ms): 1.30 MB, 1.30 MB, 1.30 MB, 112.55 KB, 4.98 MB, 5.09 MB, 5.09 MB, 5.09 MB, 5.09 MB, 5.09 MB, 5.09 MB, 6.35 MB, 7.00 MB, 7.35 MB, 7.39 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1 - AverageThreadTokens: 1.47 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.47 MB (7830638) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 428 (428) - TotalNetworkReceiveTime: 8s997ms - TotalNetworkSendTime: 5.271ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 176 (176) - TotalThreadsTotalWallClockTime: 11s216ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 316.000ms - TotalThreadsVoluntaryContextSwitches: 184 (184) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s803ms - ExecTreeExecTime: 1s796ms - OpenTime: 5s631ms - ExecTreeOpenTime: 3s850ms - PrepareTime: 24.156ms - ExecTreePrepareTime: 6.394ms KrpcDataStreamSender (dst_id=117):(Total: 1.209ms, non-child: 1.209ms, % non-child: 100.00%) - BytesSent: 31.20 KB (31948) - EosSent: 3 (3) - OverallThroughput: 25.19 MB/sec - PeakMemoryUsage: 98.30 KB (100656) - RowsReturned: 428 (428) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.041ms - UncompressedRowBatchSize: 76.91 KB (78752) HASH_JOIN_NODE (id=67):(Total: 5s653ms, non-child: 113.409ms, % non-child: 2.01%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 45.89K (45894) - BuildTime: 143.862ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 7.09K (7089) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 504.263us - RowsReturned: 428 (428) - RowsReturnedRate: 75.00 /sec Buffer pool: - AllocTime: 77.599us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=67): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 109.890ms - BuildRowsPartitioned: 45.89K (45894) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 33.458ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=116):(Total: 3s636ms, non-child: 41.738ms, % non-child: 1.15%) - ConvertRowBatchTime: 6.922ms - PeakMemoryUsage: 216.00 KB (221184) - RowsReturned: 45.89K (45894) - RowsReturnedRate: 12.62 K/sec Buffer pool: - AllocTime: 709.082us - CumulativeAllocationBytes: 4.51 MB (4726784) - CumulativeAllocations: 232 (232) - PeakReservation: 216.00 KB (221184) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 216.00 KB (221184) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 111.05 KB, 421.99 KB, 755.14 KB, 1.08 MB, 1.43 MB, 1.80 MB, 2.15 MB - FirstBatchArrivalWaitTime: 177.411ms - TotalBytesReceived: 2.49 MB (2615958) - TotalGetBatchTime: 3s628ms - DataArrivalTimer: 3s594ms SenderSide: - DeserializeRowBatchTime: 13.082ms - NumBatchesArrived: 116 (116) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 116 (116) - NumBatchesReceived: 116 (116) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=115):(Total: 5s370ms, non-child: 1.872ms, % non-child: 0.03%) - ConvertRowBatchTime: 1.110ms - PeakMemoryUsage: 1.27 MB (1327104) - RowsReturned: 7.09K (7089) - RowsReturnedRate: 1.32 K/sec Buffer pool: - AllocTime: 226.286us - CumulativeAllocationBytes: 1.58 MB (1654784) - CumulativeAllocations: 82 (82) - PeakReservation: 1.27 MB (1327104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.27 MB (1327104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152.80 KB, 611.19 KB, 851.30 KB, 879.20 KB - FirstBatchArrivalWaitTime: 3s574ms - TotalBytesReceived: 879.20 KB (900303) - TotalGetBatchTime: 5s368ms - DataArrivalTimer: 5s368ms SenderSide: - DeserializeRowBatchTime: 2.705ms - NumBatchesArrived: 41 (41) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 41 (41) - NumBatchesReceived: 41 (41) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 1s770ms, non-child: 1s770ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 162.959ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s559ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 47.531ms Instance 3f4b6afbed1991fc:3c23055700000046 (host=XXX:22001):(Total: 6s779ms, non-child: 397.506ms, % non-child: 5.86%) Fragment Instance Lifecycle Event Timeline: 7s601ms - Prepare Finished: 1s192ms (1s192ms) - Open Finished: 5s811ms (4s618ms) - First Batch Produced: 7s594ms (1s782ms) - First Batch Sent: 7s596ms (1.631ms) - ExecInternal Finished: 7s601ms (4.902ms) MemoryUsage(500.000ms): 112.55 KB, 1.30 MB, 1.53 MB, 2.04 MB, 6.21 MB, 6.21 MB, 6.21 MB, 6.21 MB, 6.21 MB, 6.39 MB, 6.97 MB, 7.25 MB, 7.30 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 7.66 MB (8031342) - PeakReservation: 6.00 MB (6291456) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 497 (497) - TotalNetworkReceiveTime: 4s200ms - TotalNetworkSendTime: 4.381ms - TotalStorageWaitTime: 0.000ns - TotalThreadsInvoluntaryContextSwitches: 246 (246) - TotalThreadsTotalWallClockTime: 6s408ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 316.000ms - TotalThreadsVoluntaryContextSwitches: 152 (152) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s789ms - ExecTreeExecTime: 1s782ms - OpenTime: 4s618ms - ExecTreeOpenTime: 2s526ms - PrepareTime: 370.945ms - ExecTreePrepareTime: 27.344ms KrpcDataStreamSender (dst_id=117):(Total: 19.014ms, non-child: 19.014ms, % non-child: 100.00%) - BytesSent: 36.08 KB (36951) - EosSent: 3 (3) - OverallThroughput: 1.85 MB/sec - PeakMemoryUsage: 98.30 KB (100656) - RowsReturned: 497 (497) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1.124ms - UncompressedRowBatchSize: 89.30 KB (91448) HASH_JOIN_NODE (id=67):(Total: 4s355ms, non-child: 145.300ms, % non-child: 3.34%) ExecOption: Probe Side Codegen Enabled - BuildRows: 45.57K (45572) - BuildTime: 88.411ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 6.06 MB (6359296) - ProbeRows: 6.61K (6608) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 544.699us - RowsReturned: 497 (497) - RowsReturnedRate: 114.00 /sec Buffer pool: - AllocTime: 76.956us - CumulativeAllocationBytes: 6.00 MB (6291456) - CumulativeAllocations: 24 (24) - PeakReservation: 6.00 MB (6291456) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 6.00 MB (6291456) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=67): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 32.154ms - BuildRowsPartitioned: 45.57K (45572) - HashBuckets: 126.98K (126976) - HashCollisions: 0 (0) - HashTablesBuildTime: 55.573ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=116):(Total: 2s397ms, non-child: 9.718ms, % non-child: 0.41%) - ConvertRowBatchTime: 7.138ms - PeakMemoryUsage: 1.33 MB (1392640) - RowsReturned: 45.57K (45572) - RowsReturnedRate: 19.01 K/sec Buffer pool: - AllocTime: 736.182us - CumulativeAllocationBytes: 4.47 MB (4685824) - CumulativeAllocations: 230 (230) - PeakReservation: 1.33 MB (1392640) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.33 MB (1392640) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 133.26 KB, 421.99 KB, 777.35 KB, 1.08 MB, 1.41 MB, 1.78 MB, 2.13 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 2.48 MB (2597604) - TotalGetBatchTime: 2s389ms - DataArrivalTimer: 2s387ms SenderSide: - DeserializeRowBatchTime: 13.088ms - NumBatchesArrived: 115 (115) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 115 (115) - NumBatchesReceived: 115 (115) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) EXCHANGE_NODE (id=115):(Total: 1s812ms, non-child: 1.753ms, % non-child: 0.10%) - ConvertRowBatchTime: 1.031ms - PeakMemoryUsage: 1.18 MB (1236992) - RowsReturned: 6.61K (6608) - RowsReturnedRate: 3.65 K/sec Buffer pool: - AllocTime: 4.582ms - CumulativeAllocationBytes: 1.47 MB (1540096) - CumulativeAllocations: 76 (76) - PeakReservation: 1.18 MB (1236992) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.18 MB (1236992) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 174.62 KB, 589.36 KB, 785.81 KB, 819.55 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 819.55 KB (839216) - TotalGetBatchTime: 1s811ms - DataArrivalTimer: 1s811ms SenderSide: - DeserializeRowBatchTime: 10.499ms - NumBatchesArrived: 38 (38) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 38 (38) - NumBatchesReceived: 38 (38) - NumEarlySenders: 0 (0) - NumEosReceived: 3 (3) CodeGen:(Total: 2s007ms, non-child: 2s007ms, % non-child: 100.00%) - CodegenTime: 0.000ns - CompileTime: 152.659ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 56 (56) - NumInstructions: 2.43K (2431) - OptimizationTime: 1s545ms - PeakMemoryUsage: 1.19 MB (1244672) - PrepareTime: 308.168ms Averaged Fragment F40:(Total: 6s625ms, non-child: 290.268ms, % non-child: 4.38%) split sizes: min: 9.71 MB, max: 43.56 MB, avg: 32.20 MB, stddev: 15.90 MB completion times: min:6s191ms max:7s611ms mean: 7s022ms stddev:604.741ms execution rates: min:1.57 MB/sec max:6.00 MB/sec mean:4.42 MB/sec stddev:2.02 MB/sec num instances: 3 - AverageThreadTokens: 1.15 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 23.70 MB (24851649) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 263.11 MB (275887904) - RowsProduced: 6.61K (6605) - TotalNetworkReceiveTime: 365.627us - TotalNetworkSendTime: 8.959ms - TotalStorageWaitTime: 3.228ms - TotalThreadsInvoluntaryContextSwitches: 753 (753) - TotalThreadsTotalWallClockTime: 7s689ms - TotalThreadsSysTime: 14.666ms - TotalThreadsUserTime: 1s341ms - TotalThreadsVoluntaryContextSwitches: 251 (251) Buffer pool: - AllocTime: 10.072us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 577.338ms - ExecTreeExecTime: 547.616ms - OpenTime: 5s878ms - ExecTreeOpenTime: 718.001ms - PrepareTime: 169.741ms - ExecTreePrepareTime: 14.329ms KrpcDataStreamSender (dst_id=115):(Total: 54.516ms, non-child: 54.516ms, % non-child: 100.00%) - BytesSent: 331.75 KB (339709) - EosSent: 3 (3) - OverallThroughput: 2.95 MB/sec - PeakMemoryUsage: 44.50 KB (45568) - RowsReturned: 6.61K (6605) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 10.834ms - UncompressedRowBatchSize: 819.26 KB (838919) HASH_JOIN_NODE (id=66):(Total: 1s294ms, non-child: 63.609ms, % non-child: 4.92%) - BuildRows: 7.32K (7317) - BuildTime: 30.001ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 4.68 MB (4909994) - ProbeRows: 45.56K (45560) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 3.236ms - RowsReturned: 6.61K (6605) - RowsReturnedRate: 3.65 K/sec Hash Join Builder (join_node_id=66): - BuildRowsPartitionTime: 3.125ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 6.613ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=114):(Total: 1.187ms, non-child: 1.187ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.115ms - PeakMemoryUsage: 296.00 KB (303104) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 6.16 M/sec Buffer pool: - AllocTime: 46.283us - CumulativeAllocationBytes: 296.00 KB (303104) - CumulativeAllocations: 16 (16) - PeakReservation: 296.00 KB (303104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 296.00 KB (303104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 221.51 KB (226827) - TotalGetBatchTime: 37.996us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.434ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=65):(Total: 1s239ms, non-child: 41.558ms, % non-child: 3.35%) - BuildRows: 47.71K (47714) - BuildTime: 31.192ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 5.72 MB (6001578) - ProbeRows: 95.23K (95229) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 6.905ms - RowsReturned: 45.56K (45560) - RowsReturnedRate: 25.45 K/sec Hash Join Builder (join_node_id=65): - BuildRowsPartitionTime: 3.276ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 27.401ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=113):(Total: 13.231ms, non-child: 13.231ms, % non-child: 100.00%) - ConvertRowBatchTime: 12.701ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 4.47 M/sec Buffer pool: - AllocTime: 276.421us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 296.987us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.867ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=64):(Total: 1s184ms, non-child: 26.536ms, % non-child: 2.24%) - BuildRows: 365 (365) - BuildTime: 1.809ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 218.68K (218678) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 14.008ms - RowsReturned: 95.23K (95229) - RowsReturnedRate: 55.92 K/sec Hash Join Builder (join_node_id=64): - BuildRowsPartitionTime: 219.545us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 409.865us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=112):(Total: 70.325us, non-child: 70.325us, % non-child: 100.00%) - ConvertRowBatchTime: 54.802us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.20 M/sec Buffer pool: - AllocTime: 6.035us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 9.149us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 26.514us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=57):(Total: 1s158ms, non-child: 1s158ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 6.80 MB (7128132) - BytesReadDataNodeCache: 0 - BytesReadLocal: 6.80 MB (7128132) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 6.80 MB (7128132) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 4.176ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 11.89 MB (12471401) - PerReadThreadRawHdfsThroughput: 1.71 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s140ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 480.52K (480516) - RowsReturned: 218.68K (218678) - RowsReturnedRate: 132.89 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 384 (384) - ScannerThreadsTotalWallClockTime: 1s189ms - MaterializeTupleTime(*): 788.670ms - ScannerThreadsSysTime: 12.000ms - ScannerThreadsUserTime: 434.666ms - ScannerThreadsVoluntaryContextSwitches: 2 (2) - TotalRawHdfsOpenFileTime(*): 67.415us - TotalRawHdfsReadTime(*): 3.583ms - TotalReadThroughput: 1.02 MB/sec Filter 58 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 267.30K (267299) - Rows rejected: 261.84K (261838) - Rows total: 480.52K (480516) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Buffer pool: - AllocTime: 37.954us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 78.849us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 54.035us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 4s986ms, non-child: 4s986ms, % non-child: 100.00%) - CodegenTime: 1.691ms - CompileTime: 313.899ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s498ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 173.379ms Fragment F40: Instance 3f4b6afbed1991fc:3c23055700000040 (host=XXX:22002):(Total: 7s132ms, non-child: 315.768ms, % non-child: 4.43%) Hdfs split stats (:<# splits>/): 0:1/43.56 MB Filter 58 arrival: 5s324ms Fragment Instance Lifecycle Event Timeline: 7s263ms - Prepare Finished: 255.033ms (255.033ms) - Open Finished: 5s541ms (5s285ms) - First Batch Produced: 5s562ms (21.953ms) - First Batch Sent: 5s565ms (2.947ms) - ExecInternal Finished: 7s263ms (1s697ms) MemoryUsage(500.000ms): 2.17 MB, 5.72 MB, 5.72 MB, 5.73 MB, 6.18 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 4.30 MB, 24.96 MB, 25.37 MB, 31.54 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2 - AverageThreadTokens: 1.21 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 32.91 MB (34503959) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 272.32 MB (285548050) - RowsProduced: 19.82K (19817) - TotalNetworkReceiveTime: 601.258us - TotalNetworkSendTime: 18.431ms - TotalStorageWaitTime: 42.170us - TotalThreadsInvoluntaryContextSwitches: 1.04K (1037) - TotalThreadsTotalWallClockTime: 8s843ms - TotalThreadsSysTime: 44.000ms - TotalThreadsUserTime: 1s568ms - TotalThreadsVoluntaryContextSwitches: 674 (674) Buffer pool: - AllocTime: 5.343us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 1s722ms - ExecTreeExecTime: 1s642ms - OpenTime: 5s285ms - ExecTreeOpenTime: 167.978ms - PrepareTime: 123.409ms - ExecTreePrepareTime: 810.820us KrpcDataStreamSender (dst_id=115):(Total: 109.829ms, non-child: 109.829ms, % non-child: 100.00%) - BytesSent: 995.24 KB (1019129) - EosSent: 3 (3) - OverallThroughput: 8.85 MB/sec - PeakMemoryUsage: 100.50 KB (102912) - RowsReturned: 19.82K (19817) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 32.502ms - UncompressedRowBatchSize: 2.40 MB (2516759) HASH_JOIN_NODE (id=66):(Total: 1s811ms, non-child: 48.345ms, % non-child: 2.67%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 16.961ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 10.06 MB (10547456) - ProbeRows: 136.68K (136682) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 9.707ms - RowsReturned: 19.82K (19817) - RowsReturnedRate: 10.94 K/sec Buffer pool: - AllocTime: 65.319us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=66): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 2.217ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.124ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=114):(Total: 1.185ms, non-child: 1.185ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.110ms - PeakMemoryUsage: 296.00 KB (303104) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 6.17 M/sec Buffer pool: - AllocTime: 36.590us - CumulativeAllocationBytes: 296.00 KB (303104) - CumulativeAllocations: 16 (16) - PeakReservation: 296.00 KB (303104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 296.00 KB (303104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 221.51 KB (226827) - TotalGetBatchTime: 38.718us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.384ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=65):(Total: 1s790ms, non-child: 64.884ms, % non-child: 3.62%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 41.120ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 11.07 MB (11610368) - ProbeRows: 285.69K (285688) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 20.715ms - RowsReturned: 136.68K (136682) - RowsReturnedRate: 76.34 K/sec Buffer pool: - AllocTime: 97.749us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=65): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.464ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 37.203ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=113):(Total: 22.833ms, non-child: 22.833ms, % non-child: 100.00%) - ConvertRowBatchTime: 22.027ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 2.09 M/sec Buffer pool: - AllocTime: 292.532us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 116.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 530.299us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.905ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=64):(Total: 1s702ms, non-child: 57.268ms, % non-child: 3.36%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 1.235ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 656.03K (656034) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 42.024ms - RowsReturned: 285.69K (285688) - RowsReturnedRate: 167.78 K/sec Buffer pool: - AllocTime: 49.650us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Hash Join Builder (join_node_id=64): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 234.829us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 431.708us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=112):(Total: 69.810us, non-child: 69.810us, % non-child: 100.00%) - ConvertRowBatchTime: 53.108us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.23 M/sec Buffer pool: - AllocTime: 5.357us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 10.039us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 21.127us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=57):(Total: 1s645ms, non-child: 1s645ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/43.56 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.11 MB, 9.11 MB, 9.11 MB - FooterProcessingTime: (Avg: 294.230us ; Min: 294.230us ; Max: 294.230us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 9.11 MB (9552260) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.11 MB (9552260) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.11 MB (9552260) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 5.664ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 15.64 MB (16402653) - PerReadThreadRawHdfsThroughput: 2.04 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s622ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 656.13K (656132) - RowsReturned: 656.03K (656034) - RowsReturnedRate: 398.68 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 860 (860) - ScannerThreadsTotalWallClockTime: 1s787ms - MaterializeTupleTime(*): 768.150ms - ScannerThreadsSysTime: 36.000ms - ScannerThreadsUserTime: 572.000ms - ScannerThreadsVoluntaryContextSwitches: 0 (0) - TotalRawHdfsOpenFileTime(*): 62.377us - TotalRawHdfsReadTime(*): 4.365ms - TotalReadThroughput: 1.30 MB/sec Filter 58 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 16.48K (16482) - Rows rejected: 98 (98) - Rows total: 656.13K (656132) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 4s894ms, non-child: 4s894ms, % non-child: 100.00%) - CodegenTime: 1.770ms - CompileTime: 310.187ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s449ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 134.274ms Instance 3f4b6afbed1991fc:3c23055700000042 (host=XXX:22001):(Total: 6s742ms, non-child: 456.691ms, % non-child: 6.77%) Hdfs split stats (:<# splits>/): 0:1/43.32 MB Filter 58 arrival: 5s578ms Fragment Instance Lifecycle Event Timeline: 7s595ms - Prepare Finished: 1s218ms (1s218ms) - Open Finished: 7s588ms (6s370ms) - First Batch Produced: 7s589ms (289.214us) - First Batch Sent: 7s589ms (3.389us) - ExecInternal Finished: 7s595ms (6.410ms) MemoryUsage(500.000ms): 2.17 MB, 2.19 MB, 6.14 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 4.30 MB, 24.56 MB, 24.59 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2 - AverageThreadTokens: 1.15 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 24.63 MB (25821982) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 227.658us - TotalNetworkSendTime: 6.328ms - TotalStorageWaitTime: 1.689ms - TotalThreadsInvoluntaryContextSwitches: 538 (538) - TotalThreadsTotalWallClockTime: 7s510ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s436ms - TotalThreadsVoluntaryContextSwitches: 43 (43) Buffer pool: - AllocTime: 5.096us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 6.708ms - ExecTreeExecTime: 288.835us - OpenTime: 6s370ms - ExecTreeOpenTime: 1s154ms - PrepareTime: 364.918ms - ExecTreePrepareTime: 41.376ms KrpcDataStreamSender (dst_id=115):(Total: 53.580ms, non-child: 53.580ms, % non-child: 100.00%) - BytesSent: 0 - EosSent: 3 (3) - OverallThroughput: 0.00 /sec - PeakMemoryUsage: 16.50 KB (16896) - RowsReturned: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - UncompressedRowBatchSize: 0 HASH_JOIN_NODE (id=66):(Total: 1s237ms, non-child: 101.647ms, % non-child: 8.22%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 39.384ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 1.99 MB (2091264) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 602.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Hash Join Builder (join_node_id=66): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 5.045ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 15.648ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=114):(Total: 1.183ms, non-child: 1.183ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.111ms - PeakMemoryUsage: 296.00 KB (303104) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 6.18 M/sec Buffer pool: - AllocTime: 60.016us - CumulativeAllocationBytes: 296.00 KB (303104) - CumulativeAllocations: 16 (16) - PeakReservation: 296.00 KB (303104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 296.00 KB (303104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 221.51 KB (226827) - TotalGetBatchTime: 37.756us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.468ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=65):(Total: 1s135ms, non-child: 21.243ms, % non-child: 1.87%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 20.192ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 3.05 MB (3197184) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 802.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Hash Join Builder (join_node_id=65): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.103ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 16.518ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=113):(Total: 8.529ms, non-child: 8.529ms, % non-child: 100.00%) - ConvertRowBatchTime: 8.181ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 5.59 M/sec Buffer pool: - AllocTime: 263.438us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 87.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 163.876us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.788ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=64):(Total: 1s105ms, non-child: 1.908ms, % non-child: 0.17%) ExecOption: Probe Side Codegen Enabled - BuildRows: 365 (365) - BuildTime: 1.162ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 1.470us - RowsReturned: 0 (0) - RowsReturnedRate: 0 Hash Join Builder (join_node_id=64): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 189.503us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 366.722us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=112):(Total: 67.061us, non-child: 67.061us, % non-child: 100.00%) - ConvertRowBatchTime: 54.347us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 5.44 M/sec Buffer pool: - AllocTime: 7.634us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 7.152us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 31.982us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=57):(Total: 1s103ms, non-child: 1s103ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/43.32 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.06 MB, 9.06 MB - FooterProcessingTime: (Avg: 866.507us ; Min: 866.507us ; Max: 866.507us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 9.06 MB (9499861) - BytesReadDataNodeCache: 0 - BytesReadLocal: 9.06 MB (9499861) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 9.06 MB (9499861) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 5.982ms - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 15.55 MB (16302263) - PerReadThreadRawHdfsThroughput: 2.05 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 1s103ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 652.17K (652171) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 223 (223) - ScannerThreadsTotalWallClockTime: 1s085ms - MaterializeTupleTime(*): 1s022ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 600.000ms - ScannerThreadsVoluntaryContextSwitches: 3 (3) - TotalRawHdfsOpenFileTime(*): 93.371us - TotalRawHdfsReadTime(*): 4.315ms - TotalReadThroughput: 1.39 MB/sec Filter 58 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 652.17K (652171) - Rows rejected: 652.17K (652171) - Rows total: 652.17K (652171) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Buffer pool: - AllocTime: 24.442us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 62.850us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 37.219us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 4s994ms, non-child: 4s994ms, % non-child: 100.00%) - CodegenTime: 1.603ms - CompileTime: 240.651ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s391ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 361.870ms Instance 3f4b6afbed1991fc:3c23055700000041 (host=XXX:22000):(Total: 6s002ms, non-child: 98.346ms, % non-child: 1.64%) Hdfs split stats (:<# splits>/): 0:1/9.71 MB Filter 58 arrival: 5s270ms Fragment Instance Lifecycle Event Timeline: 6s188ms - Prepare Finished: 207.067ms (207.067ms) - Open Finished: 6s185ms (5s978ms) - First Batch Produced: 6s186ms (353.766us) - First Batch Sent: 6s186ms (3.654us) - ExecInternal Finished: 6s188ms (2.196ms) MemoryUsage(500.000ms): 2.17 MB, 5.72 MB, 5.72 MB, 5.73 MB, 6.14 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 7.84 MB, 4.30 MB, 13.53 MB ThreadUsage(500.000ms): 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2 - AverageThreadTokens: 1.08 - BloomFilterBytes: 2.00 MB (2097152) - PeakMemoryUsage: 13.57 MB (14229008) - PeakReservation: 8.88 MB (9306112) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 207.68 MB (217764026) - RowsProduced: 0 (0) - TotalNetworkReceiveTime: 267.966us - TotalNetworkSendTime: 2.116ms - TotalStorageWaitTime: 7.952ms - TotalThreadsInvoluntaryContextSwitches: 684 (684) - TotalThreadsTotalWallClockTime: 6s714ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 1s020ms - TotalThreadsVoluntaryContextSwitches: 38 (38) Buffer pool: - AllocTime: 19.779us - CumulativeAllocationBytes: 2.00 MB (2097152) - CumulativeAllocations: 2 (2) - PeakReservation: 2.00 MB (2097152) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 2.00 MB (2097152) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 2.00 MB (2097152) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 2.558ms - ExecTreeExecTime: 354.231us - OpenTime: 5s978ms - ExecTreeOpenTime: 831.702ms - PrepareTime: 20.895ms - ExecTreePrepareTime: 801.197us KrpcDataStreamSender (dst_id=115):(Total: 140.094us, non-child: 140.094us, % non-child: 100.00%) - BytesSent: 0 - EosSent: 3 (3) - OverallThroughput: 0.00 /sec - PeakMemoryUsage: 16.50 KB (16896) - RowsReturned: 0 (0) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 0.000ns - UncompressedRowBatchSize: 0 HASH_JOIN_NODE (id=66):(Total: 833.557ms, non-child: 40.835ms, % non-child: 4.90%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 7.32K (7317) - BuildTime: 33.658ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 1.99 MB (2091264) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 625.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Hash Join Builder (join_node_id=66): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 2.114ms - BuildRowsPartitioned: 7.32K (7317) - HashBuckets: 16.38K (16384) - HashCollisions: 0 (0) - HashTablesBuildTime: 2.067ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=114):(Total: 1.194ms, non-child: 1.194ms, % non-child: 100.00%) - ConvertRowBatchTime: 1.124ms - PeakMemoryUsage: 296.00 KB (303104) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 6.12 M/sec Buffer pool: - AllocTime: 42.244us - CumulativeAllocationBytes: 296.00 KB (303104) - CumulativeAllocations: 16 (16) - PeakReservation: 296.00 KB (303104) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 296.00 KB (303104) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB, 221.51 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 221.51 KB (226827) - TotalGetBatchTime: 37.516us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.451ms - NumBatchesArrived: 8 (8) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 8 (8) - NumBatchesReceived: 8 (8) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=65):(Total: 792.732ms, non-child: 38.548ms, % non-child: 4.86%) ExecOption: Probe Side Codegen Enabled - BuildRows: 47.71K (47714) - BuildTime: 32.265ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 3.05 MB (3197184) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 650.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Hash Join Builder (join_node_id=65): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled - BuildRowsPartitionTime: 3.260ms - BuildRowsPartitioned: 47.71K (47714) - HashBuckets: 131.07K (131072) - HashCollisions: 0 (0) - HashTablesBuildTime: 28.481ms - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=113):(Total: 8.329ms, non-child: 8.329ms, % non-child: 100.00%) - ConvertRowBatchTime: 7.896ms - PeakMemoryUsage: 1.82 MB (1908736) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 5.73 M/sec Buffer pool: - AllocTime: 273.295us - CumulativeAllocationBytes: 1.82 MB (1908736) - CumulativeAllocations: 94 (94) - PeakReservation: 1.82 MB (1908736) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.82 MB (1908736) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 0, 87.00 KB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB, 1.32 MB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 1.32 MB (1383706) - TotalGetBatchTime: 196.786us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 1.907ms - NumBatchesArrived: 47 (47) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 47 (47) - NumBatchesReceived: 47 (47) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HASH_JOIN_NODE (id=64):(Total: 745.853ms, non-child: 20.431ms, % non-child: 2.74%) ExecOption: Probe Side Codegen Enabled, Join Build-Side Prepared Asynchronously - BuildRows: 365 (365) - BuildTime: 3.031ms - NumHashTableBuildsSkipped: 0 (0) - PeakMemoryUsage: 2.00 MB (2101504) - ProbeRows: 0 (0) - ProbeRowsPartitioned: 0 (0) - ProbeTime: 630.000ns - RowsReturned: 0 (0) - RowsReturnedRate: 0 Hash Join Builder (join_node_id=64): ExecOption: Build Side Codegen Enabled, Hash Table Construction Codegen Enabled Runtime filters: 1 of 1 Runtime Filter Published - BuildRowsPartitionTime: 234.305us - BuildRowsPartitioned: 365 (365) - HashBuckets: 1.02K (1024) - HashCollisions: 0 (0) - HashTablesBuildTime: 431.167us - LargestPartitionPercent: 6 (6) - MaxPartitionLevel: 0 (0) - NumRepartitions: 0 (0) - PartitionsCreated: 16 (16) - PeakMemoryUsage: 17.12 KB (17536) - RepartitionTime: 0.000ns - SpilledPartitions: 0 (0) EXCHANGE_NODE (id=112):(Total: 74.104us, non-child: 74.104us, % non-child: 100.00%) - ConvertRowBatchTime: 56.952us - PeakMemoryUsage: 16.00 KB (16384) - RowsReturned: 365 (365) - RowsReturnedRate: 4.93 M/sec Buffer pool: - AllocTime: 5.115us - CumulativeAllocationBytes: 16.00 KB (16384) - CumulativeAllocations: 2 (2) - PeakReservation: 16.00 KB (16384) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 16.00 KB (16384) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns RecvrSide: BytesReceived(500.000ms): 0, 0, 0, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB, 6.06 KB - FirstBatchArrivalWaitTime: 0.000ns - TotalBytesReceived: 6.06 KB (6205) - TotalGetBatchTime: 10.257us - DataArrivalTimer: 0.000ns SenderSide: - DeserializeRowBatchTime: 26.434us - NumBatchesArrived: 1 (1) - NumBatchesDeferred: 0 (0) - NumBatchesEnqueued: 1 (1) - NumBatchesReceived: 1 (1) - NumEarlySenders: 0 (0) - NumEosReceived: 1 (1) HDFS_SCAN_NODE (id=57):(Total: 725.356ms, non-child: 725.356ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/9.71 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: All filters arrived. Waited 0 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.22 MB - FooterProcessingTime: (Avg: 8.218ms ; Min: 8.218ms ; Max: 8.218ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 2.22 MB (2332276) - BytesReadDataNodeCache: 0 - BytesReadLocal: 2.22 MB (2332276) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 2.22 MB (2332276) - CachedFileHandlesHitCount: 10 (10) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 881.945us - MaxCompressedTextFileLength: 0 - NumColumns: 9 (9) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 4.49 MB (4709289) - PerReadThreadRawHdfsThroughput: 1.05 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 694.617ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 133.25K (133245) - RowsReturned: 0 (0) - RowsReturnedRate: 0 - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 69 (69) - ScannerThreadsTotalWallClockTime: 694.906ms - MaterializeTupleTime(*): 575.843ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 132.000ms - ScannerThreadsVoluntaryContextSwitches: 3 (3) - TotalRawHdfsOpenFileTime(*): 46.499us - TotalRawHdfsReadTime(*): 2.069ms - TotalReadThroughput: 379.60 KB/sec Filter 58 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 133.25K (133245) - Rows rejected: 133.25K (133245) - Rows total: 133.25K (133245) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) Buffer pool: - AllocTime: 39.771us - CumulativeAllocationBytes: 1.06 MB (1114112) - CumulativeAllocations: 17 (17) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.06 MB (1114112) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 75.949us - CumulativeAllocationBytes: 3.00 MB (3145728) - CumulativeAllocations: 32 (32) - PeakReservation: 3.00 MB (3145728) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 3.00 MB (3145728) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Buffer pool: - AllocTime: 59.569us - CumulativeAllocationBytes: 1.25 MB (1310720) - CumulativeAllocations: 20 (20) - PeakReservation: 1.94 MB (2031616) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 1.25 MB (1310720) - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns CodeGen:(Total: 5s070ms, non-child: 5s070ms, % non-child: 100.00%) - CodegenTime: 1.699ms - CompileTime: 390.859ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 134 (134) - NumInstructions: 7.26K (7263) - OptimizationTime: 4s654ms - PeakMemoryUsage: 3.55 MB (3718656) - PrepareTime: 23.992ms Averaged Fragment F41:(Total: 886.618ms, non-child: 115.146ms, % non-child: 12.99%) split sizes: min: 2.15 MB, max: 2.15 MB, avg: 2.15 MB, stddev: 0 completion times: min:1s810ms max:1s810ms mean: 1s810ms stddev:0.000ns execution rates: min:1.19 MB/sec max:1.19 MB/sec mean:1.19 MB/sec stddev:0.87 B/sec num instances: 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 900.98 KB (922601) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 277.53 MB (291008137) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 5.995ms - TotalStorageWaitTime: 9.077us - TotalThreadsInvoluntaryContextSwitches: 47 (47) - TotalThreadsTotalWallClockTime: 807.859ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 60.000ms - TotalThreadsVoluntaryContextSwitches: 39 (39) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 175.937ms - ExecTreeExecTime: 169.688ms - OpenTime: 499.416ms - ExecTreeOpenTime: 90.593us - PrepareTime: 211.186ms - ExecTreePrepareTime: 172.407us KrpcDataStreamSender (dst_id=112):(Total: 106.765ms, non-child: 106.765ms, % non-child: 100.00%) - BytesSent: 2.86 KB (2932) - EosSent: 3 (3) - OverallThroughput: 26.82 KB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 128.846us - UncompressedRowBatchSize: 6.06 KB (6205) HDFS_SCAN_NODE (id=62):(Total: 170.169ms, non-child: 170.169ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 465.32 KB (476485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 465.32 KB (476485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 465.32 KB (476485) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 38.577ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 849.29 KB (869668) - PerReadThreadRawHdfsThroughput: 719.39 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 128.387ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 73.05K (73049) - RowsReturned: 365 (365) - RowsReturnedRate: 2.14 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 15 (15) - ScannerThreadsTotalWallClockTime: 132.517ms - MaterializeTupleTime(*): 45.227ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 7 (7) - TotalRawHdfsOpenFileTime(*): 25.484us - TotalRawHdfsReadTime(*): 631.662us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 494.537ms, non-child: 494.537ms, % non-child: 100.00%) - CodegenTime: 39.582ms - CompileTime: 47.889ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 20 (20) - NumInstructions: 319 (319) - OptimizationTime: 136.982ms - PeakMemoryUsage: 159.50 KB (163328) - PrepareTime: 309.127ms Fragment F41: Instance 3f4b6afbed1991fc:3c2305570000003d (host=XXX:22001):(Total: 886.618ms, non-child: 115.146ms, % non-child: 12.99%) Hdfs split stats (:<# splits>/): 0:1/2.15 MB Fragment Instance Lifecycle Event Timeline: 1s797ms - Prepare Finished: 1s121ms (1s121ms) - Open Finished: 1s621ms (499.424ms) - First Batch Produced: 1s752ms (130.855ms) - First Batch Sent: 1s752ms (197.491us) - ExecInternal Finished: 1s797ms (44.880ms) MemoryUsage(500.000ms): 50.66 KB ThreadUsage(500.000ms): 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 900.98 KB (922601) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 277.53 MB (291008137) - RowsProduced: 365 (365) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 5.995ms - TotalStorageWaitTime: 9.077us - TotalThreadsInvoluntaryContextSwitches: 47 (47) - TotalThreadsTotalWallClockTime: 807.859ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 60.000ms - TotalThreadsVoluntaryContextSwitches: 39 (39) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 175.937ms - ExecTreeExecTime: 169.688ms - OpenTime: 499.416ms - ExecTreeOpenTime: 90.593us - PrepareTime: 211.186ms - ExecTreePrepareTime: 172.407us KrpcDataStreamSender (dst_id=112):(Total: 106.765ms, non-child: 106.765ms, % non-child: 100.00%) - BytesSent: 2.86 KB (2932) - EosSent: 3 (3) - OverallThroughput: 26.82 KB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 365 (365) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 128.846us - UncompressedRowBatchSize: 6.06 KB (6205) HDFS_SCAN_NODE (id=62):(Total: 170.169ms, non-child: 170.169ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/2.15 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0 - FooterProcessingTime: (Avg: 229.390us ; Min: 229.390us ; Max: 229.390us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 465.32 KB (476485) - BytesReadDataNodeCache: 0 - BytesReadLocal: 465.32 KB (476485) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 465.32 KB (476485) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 38.577ms - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 849.29 KB (869668) - PerReadThreadRawHdfsThroughput: 719.39 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 128.387ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 73.05K (73049) - RowsReturned: 365 (365) - RowsReturnedRate: 2.14 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 15 (15) - ScannerThreadsTotalWallClockTime: 132.517ms - MaterializeTupleTime(*): 45.227ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 7 (7) - TotalRawHdfsOpenFileTime(*): 25.484us - TotalRawHdfsReadTime(*): 631.662us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 494.537ms, non-child: 494.537ms, % non-child: 100.00%) - CodegenTime: 39.582ms - CompileTime: 47.889ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 20 (20) - NumInstructions: 319 (319) - OptimizationTime: 136.982ms - PeakMemoryUsage: 159.50 KB (163328) - PrepareTime: 309.127ms Averaged Fragment F42:(Total: 1s603ms, non-child: 145.641ms, % non-child: 9.08%) split sizes: min: 5.48 MB, max: 5.48 MB, avg: 5.48 MB, stddev: 0 completion times: min:2s634ms max:2s634ms mean: 2s634ms stddev:0.000ns execution rates: min:2.08 MB/sec max:2.08 MB/sec mean:2.08 MB/sec stddev:0.98 B/sec num instances: 1 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 3.62 MB (3791188) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 301.98 MB (316650004) - RowsProduced: 47.71K (47714) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.539ms - TotalStorageWaitTime: 326.340us - TotalThreadsInvoluntaryContextSwitches: 161 (161) - TotalThreadsTotalWallClockTime: 1s863ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 176.000ms - TotalThreadsVoluntaryContextSwitches: 94 (94) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 1.00 MB (1048576) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 440.210ms - ExecTreeExecTime: 417.524ms - OpenTime: 1s026ms - ExecTreeOpenTime: 114.665us - PrepareTime: 136.501ms - ExecTreePrepareTime: 171.822us KrpcDataStreamSender (dst_id=113):(Total: 18.777ms, non-child: 18.777ms, % non-child: 100.00%) - BytesSent: 916.45 KB (938440) - EosSent: 3 (3) - OverallThroughput: 47.66 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 47.71K (47714) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.630ms - UncompressedRowBatchSize: 1.32 MB (1383706) HDFS_SCAN_NODE (id=60):(Total: 417.936ms, non-child: 417.936ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 1.53 MB (1599321) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.53 MB (1599321) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.53 MB (1599321) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 700.013us - MaxCompressedTextFileLength: 0 - NumColumns: 5 (5) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.57 MB (2699844) - PerReadThreadRawHdfsThroughput: 881.29 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 366.520ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 100.00K (100000) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 114.17 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 102 (102) - ScannerThreadsTotalWallClockTime: 396.674ms - MaterializeTupleTime(*): 283.148ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 56.000ms - ScannerThreadsVoluntaryContextSwitches: 2 (2) - TotalRawHdfsOpenFileTime(*): 43.839us - TotalRawHdfsReadTime(*): 1.730ms - TotalReadThroughput: 1.02 MB/sec Filter 54 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 1s021ms, non-child: 1s021ms, % non-child: 100.00%) - CodegenTime: 2.678ms - CompileTime: 78.815ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 54 (54) - NumInstructions: 884 (884) - OptimizationTime: 587.683ms - PeakMemoryUsage: 442.00 KB (452608) - PrepareTime: 354.248ms Fragment F42: Instance 3f4b6afbed1991fc:3c2305570000003e (host=XXX:22001):(Total: 1s603ms, non-child: 145.641ms, % non-child: 9.08%) Hdfs split stats (:<# splits>/): 0:1/5.48 MB Fragment Instance Lifecycle Event Timeline: 2s621ms - Prepare Finished: 1s154ms (1s154ms) - Open Finished: 2s181ms (1s026ms) - First Batch Produced: 2s308ms (126.648ms) - First Batch Sent: 2s308ms (449.941us) - ExecInternal Finished: 2s621ms (313.108ms) MemoryUsage(500.000ms): 1.03 MB, 1.46 MB, 3.53 MB ThreadUsage(500.000ms): 1, 1, 2 - AverageThreadTokens: 1.33 - BloomFilterBytes: 0 - PeakMemoryUsage: 3.62 MB (3791188) - PeakReservation: 1.00 MB (1048576) - PeakUsedReservation: 0 - PerHostPeakMemUsage: 301.98 MB (316650004) - RowsProduced: 47.71K (47714) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 1.539ms - TotalStorageWaitTime: 326.340us - TotalThreadsInvoluntaryContextSwitches: 161 (161) - TotalThreadsTotalWallClockTime: 1s863ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 176.000ms - TotalThreadsVoluntaryContextSwitches: 94 (94) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 1.00 MB (1048576) - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 1.00 MB (1048576) - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 440.210ms - ExecTreeExecTime: 417.524ms - OpenTime: 1s026ms - ExecTreeOpenTime: 114.665us - PrepareTime: 136.501ms - ExecTreePrepareTime: 171.822us KrpcDataStreamSender (dst_id=113):(Total: 18.777ms, non-child: 18.777ms, % non-child: 100.00%) - BytesSent: 916.45 KB (938440) - EosSent: 3 (3) - OverallThroughput: 47.66 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 47.71K (47714) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 18.630ms - UncompressedRowBatchSize: 1.32 MB (1383706) HDFS_SCAN_NODE (id=60):(Total: 417.936ms, non-child: 417.936ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/5.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Runtime filters: Not all filters arrived (arrived: [], missing [54]), waited for 20ms Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 1.53 MB - FooterProcessingTime: (Avg: 1.642ms ; Min: 1.642ms ; Max: 1.642ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 1.53 MB (1599321) - BytesReadDataNodeCache: 0 - BytesReadLocal: 1.53 MB (1599321) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 1.53 MB (1599321) - CachedFileHandlesHitCount: 6 (6) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 700.013us - MaxCompressedTextFileLength: 0 - NumColumns: 5 (5) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 2.57 MB (2699844) - PerReadThreadRawHdfsThroughput: 881.29 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 366.520ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 100.00K (100000) - RowsReturned: 47.71K (47714) - RowsReturnedRate: 114.17 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 102 (102) - ScannerThreadsTotalWallClockTime: 396.674ms - MaterializeTupleTime(*): 283.148ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 56.000ms - ScannerThreadsVoluntaryContextSwitches: 2 (2) - TotalRawHdfsOpenFileTime(*): 43.839us - TotalRawHdfsReadTime(*): 1.730ms - TotalReadThroughput: 1.02 MB/sec Filter 54 (1.00 MB): - Files processed: 0 (0) - Files rejected: 0 (0) - Files total: 0 (0) - RowGroups processed: 0 (0) - RowGroups rejected: 0 (0) - RowGroups total: 0 (0) - Rows processed: 0 (0) - Rows rejected: 0 (0) - Rows total: 100.00K (100000) - Splits processed: 0 (0) - Splits rejected: 0 (0) - Splits total: 0 (0) CodeGen:(Total: 1s021ms, non-child: 1s021ms, % non-child: 100.00%) - CodegenTime: 2.678ms - CompileTime: 78.815ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 54 (54) - NumInstructions: 884 (884) - OptimizationTime: 587.683ms - PeakMemoryUsage: 442.00 KB (452608) - PrepareTime: 354.248ms Averaged Fragment F43:(Total: 1s131ms, non-child: 91.084ms, % non-child: 8.05%) split sizes: min: 1.16 MB, max: 1.16 MB, avg: 1.16 MB, stddev: 0 completion times: min:2s195ms max:2s195ms mean: 2s195ms stddev:0.000ns execution rates: min:541.91 KB/sec max:541.91 KB/sec mean:541.91 KB/sec stddev:0.71 B/sec num instances: 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.07 MB (1121521) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 299.47 MB (314012702) - RowsProduced: 7.32K (7317) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 14.379ms - TotalStorageWaitTime: 12.111ms - TotalThreadsInvoluntaryContextSwitches: 59 (59) - TotalThreadsTotalWallClockTime: 1s171ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 112.000ms - TotalThreadsVoluntaryContextSwitches: 55 (55) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 151.490ms - ExecTreeExecTime: 132.010ms - OpenTime: 904.381ms - ExecTreeOpenTime: 153.974us - PrepareTime: 75.362ms - ExecTreePrepareTime: 171.734us KrpcDataStreamSender (dst_id=114):(Total: 5.321ms, non-child: 5.321ms, % non-child: 100.00%) - BytesSent: 98.94 KB (101318) - EosSent: 3 (3) - OverallThroughput: 18.16 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 7.32K (7317) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 4.612ms - UncompressedRowBatchSize: 221.51 KB (226827) HDFS_SCAN_NODE (id=61):(Total: 132.544ms, non-child: 132.544ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 412.65 KB (422556) - BytesReadDataNodeCache: 0 - BytesReadLocal: 412.65 KB (422556) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 412.65 KB (422556) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 79.159us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.01 MB (1057930) - PerReadThreadRawHdfsThroughput: 647.29 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 77.715ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 50.00K (50000) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 55.20 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 17 (17) - ScannerThreadsTotalWallClockTime: 115.366ms - MaterializeTupleTime(*): 74.044ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 5 (5) - TotalRawHdfsOpenFileTime(*): 37.244us - TotalRawHdfsReadTime(*): 622.565us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 902.363ms, non-child: 902.363ms, % non-child: 100.00%) - CodegenTime: 1.819ms - CompileTime: 18.449ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 45 (45) - NumInstructions: 682 (682) - OptimizationTime: 623.183ms - PeakMemoryUsage: 341.00 KB (349184) - PrepareTime: 260.144ms Fragment F43: Instance 3f4b6afbed1991fc:3c2305570000003f (host=XXX:22001):(Total: 1s131ms, non-child: 91.084ms, % non-child: 8.05%) Hdfs split stats (:<# splits>/): 0:1/1.16 MB Fragment Instance Lifecycle Event Timeline: 2s181ms - Prepare Finished: 1s126ms (1s126ms) - Open Finished: 2s030ms (904.390ms) - First Batch Produced: 2s086ms (55.546ms) - First Batch Sent: 2s086ms (645.908us) - ExecInternal Finished: 2s181ms (95.293ms) MemoryUsage(500.000ms): 26.28 KB, 367.28 KB ThreadUsage(500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 1.07 MB (1121521) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 299.47 MB (314012702) - RowsProduced: 7.32K (7317) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 14.379ms - TotalStorageWaitTime: 12.111ms - TotalThreadsInvoluntaryContextSwitches: 59 (59) - TotalThreadsTotalWallClockTime: 1s171ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 112.000ms - TotalThreadsVoluntaryContextSwitches: 55 (55) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 151.490ms - ExecTreeExecTime: 132.010ms - OpenTime: 904.381ms - ExecTreeOpenTime: 153.974us - PrepareTime: 75.362ms - ExecTreePrepareTime: 171.734us KrpcDataStreamSender (dst_id=114):(Total: 5.321ms, non-child: 5.321ms, % non-child: 100.00%) - BytesSent: 98.94 KB (101318) - EosSent: 3 (3) - OverallThroughput: 18.16 MB/sec - PeakMemoryUsage: 18.28 KB (18720) - RowsReturned: 7.32K (7317) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 4.612ms - UncompressedRowBatchSize: 221.51 KB (226827) HDFS_SCAN_NODE (id=61):(Total: 132.544ms, non-child: 132.544ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/1.16 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:0% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0 - FooterProcessingTime: (Avg: 7.031ms ; Min: 7.031ms ; Max: 7.031ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 412.65 KB (422556) - BytesReadDataNodeCache: 0 - BytesReadLocal: 412.65 KB (422556) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 412.65 KB (422556) - CachedFileHandlesHitCount: 3 (3) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 79.159us - MaxCompressedTextFileLength: 0 - NumColumns: 2 (2) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 1.01 MB (1057930) - PerReadThreadRawHdfsThroughput: 647.29 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 77.715ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 50.00K (50000) - RowsReturned: 7.32K (7317) - RowsReturnedRate: 55.20 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 17 (17) - ScannerThreadsTotalWallClockTime: 115.366ms - MaterializeTupleTime(*): 74.044ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 12.000ms - ScannerThreadsVoluntaryContextSwitches: 5 (5) - TotalRawHdfsOpenFileTime(*): 37.244us - TotalRawHdfsReadTime(*): 622.565us - TotalReadThroughput: 0.00 /sec CodeGen:(Total: 902.363ms, non-child: 902.363ms, % non-child: 100.00%) - CodegenTime: 1.819ms - CompileTime: 18.449ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 45 (45) - NumInstructions: 682 (682) - OptimizationTime: 623.183ms - PeakMemoryUsage: 341.00 KB (349184) - PrepareTime: 260.144ms Averaged Fragment F44:(Total: 4s640ms, non-child: 306.784ms, % non-child: 6.61%) split sizes: min: 7.48 MB, max: 7.48 MB, avg: 7.48 MB, stddev: 0 completion times: min:5s744ms max:5s744ms mean: 5s744ms stddev:0.000ns execution rates: min:1.30 MB/sec max:1.30 MB/sec mean:1.30 MB/sec stddev:0.20 B/sec num instances: 1 - AverageThreadTokens: 1.78 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.10 MB (9540568) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 137.20K (137200) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 27.169ms - TotalStorageWaitTime: 13.083us - TotalThreadsInvoluntaryContextSwitches: 419 (419) - TotalThreadsTotalWallClockTime: 8s110ms - TotalThreadsSysTime: 12.000ms - TotalThreadsUserTime: 852.000ms - TotalThreadsVoluntaryContextSwitches: 166 (166) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 3s697ms - ExecTreeExecTime: 3s444ms - OpenTime: 773.209ms - ExecTreeOpenTime: 170.054us - PrepareTime: 169.771ms - ExecTreePrepareTime: 174.269us KrpcDataStreamSender (dst_id=116):(Total: 155.458ms, non-child: 155.458ms, % non-child: 100.00%) - BytesSent: 2.90 MB (3043464) - EosSent: 3 (3) - OverallThroughput: 18.67 MB/sec - PeakMemoryUsage: 93.35 KB (95592) - RowsReturned: 137.20K (137200) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 101.061ms - UncompressedRowBatchSize: 7.46 MB (7820400) HDFS_SCAN_NODE (id=58):(Total: 3s444ms, non-child: 3s444ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.54 MB (7903345) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.54 MB (7903345) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.54 MB (7903345) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 1.984ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.00 MB (9434603) - PerReadThreadRawHdfsThroughput: 3.39 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 3s386ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 1.92M (1920800) - RowsReturned: 137.20K (137200) - RowsReturnedRate: 39.83 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 354 (354) - ScannerThreadsTotalWallClockTime: 3s639ms - MaterializeTupleTime(*): 1s706ms - ScannerThreadsSysTime: 12.000ms - ScannerThreadsUserTime: 536.000ms - ScannerThreadsVoluntaryContextSwitches: 6 (6) - TotalRawHdfsOpenFileTime(*): 28.270us - TotalRawHdfsReadTime(*): 2.172ms - TotalReadThroughput: 1.67 MB/sec CodeGen:(Total: 733.794ms, non-child: 733.794ms, % non-child: 100.00%) - CodegenTime: 41.723ms - CompileTime: 5.678ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 44 (44) - NumInstructions: 769 (769) - OptimizationTime: 506.452ms - PeakMemoryUsage: 384.50 KB (393728) - PrepareTime: 221.127ms Fragment F44: Instance 3f4b6afbed1991fc:3c23055700000043 (host=XXX:22001):(Total: 4s640ms, non-child: 306.784ms, % non-child: 6.61%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB Fragment Instance Lifecycle Event Timeline: 5s731ms - Prepare Finished: 1s260ms (1s260ms) - Open Finished: 2s033ms (773.217ms) - First Batch Produced: 2s115ms (82.439ms) - First Batch Sent: 2s116ms (879.492us) - ExecInternal Finished: 5s731ms (3s614ms) MemoryUsage(500.000ms): 17.35 KB, 401.85 KB, 8.51 MB, 8.74 MB, 8.51 MB, 8.68 MB, 9.00 MB, 8.89 MB, 8.50 MB ThreadUsage(500.000ms): 1, 1, 2, 2, 2, 2, 2, 2, 2 - AverageThreadTokens: 1.78 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.10 MB (9540568) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 137.20K (137200) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 27.169ms - TotalStorageWaitTime: 13.083us - TotalThreadsInvoluntaryContextSwitches: 419 (419) - TotalThreadsTotalWallClockTime: 8s110ms - TotalThreadsSysTime: 12.000ms - TotalThreadsUserTime: 852.000ms - TotalThreadsVoluntaryContextSwitches: 166 (166) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 3s697ms - ExecTreeExecTime: 3s444ms - OpenTime: 773.209ms - ExecTreeOpenTime: 170.054us - PrepareTime: 169.771ms - ExecTreePrepareTime: 174.269us KrpcDataStreamSender (dst_id=116):(Total: 155.458ms, non-child: 155.458ms, % non-child: 100.00%) - BytesSent: 2.90 MB (3043464) - EosSent: 3 (3) - OverallThroughput: 18.67 MB/sec - PeakMemoryUsage: 93.35 KB (95592) - RowsReturned: 137.20K (137200) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 101.061ms - UncompressedRowBatchSize: 7.46 MB (7820400) HDFS_SCAN_NODE (id=58):(Total: 3s444ms, non-child: 3s444ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 0, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB, 7.54 MB - FooterProcessingTime: (Avg: 133.422us ; Min: 133.422us ; Max: 133.422us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.54 MB (7903345) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.54 MB (7903345) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.54 MB (7903345) - CachedFileHandlesHitCount: 5 (5) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 1.984ms - MaxCompressedTextFileLength: 0 - NumColumns: 4 (4) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.00 MB (9434603) - PerReadThreadRawHdfsThroughput: 3.39 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 3s386ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 1.92M (1920800) - RowsReturned: 137.20K (137200) - RowsReturnedRate: 39.83 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 354 (354) - ScannerThreadsTotalWallClockTime: 3s639ms - MaterializeTupleTime(*): 1s706ms - ScannerThreadsSysTime: 12.000ms - ScannerThreadsUserTime: 536.000ms - ScannerThreadsVoluntaryContextSwitches: 6 (6) - TotalRawHdfsOpenFileTime(*): 28.270us - TotalRawHdfsReadTime(*): 2.172ms - TotalReadThroughput: 1.67 MB/sec CodeGen:(Total: 733.794ms, non-child: 733.794ms, % non-child: 100.00%) - CodegenTime: 41.723ms - CompileTime: 5.678ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 44 (44) - NumInstructions: 769 (769) - OptimizationTime: 506.452ms - PeakMemoryUsage: 384.50 KB (393728) - PrepareTime: 221.127ms Averaged Fragment F46:(Total: 6s473ms, non-child: 1s879ms, % non-child: 29.03%) split sizes: min: 7.48 MB, max: 7.48 MB, avg: 7.48 MB, stddev: 0 completion times: min:7s713ms max:7s713ms mean: 7s713ms stddev:0.000ns execution rates: min:993.31 KB/sec max:993.31 KB/sec mean:993.31 KB/sec stddev:0.29 B/sec num instances: 1 - AverageThreadTokens: 1.92 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.17 MB (9616839) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1.92M (1920800) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.446ms - TotalStorageWaitTime: 6.259us - TotalThreadsInvoluntaryContextSwitches: 2.55K (2554) - TotalThreadsTotalWallClockTime: 12s208ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 1s708ms - TotalThreadsVoluntaryContextSwitches: 1.80K (1802) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 6s078ms - ExecTreeExecTime: 3s267ms - OpenTime: 233.365ms - ExecTreeOpenTime: 90.706us - PrepareTime: 161.239ms - ExecTreePrepareTime: 3.221ms KrpcDataStreamSender (dst_id=118):(Total: 1s089ms, non-child: 1s089ms, % non-child: 100.00%) - BytesSent: 14.67 MB (15378251) - EosSent: 3 (3) - OverallThroughput: 13.46 MB/sec - PeakMemoryUsage: 160.78 KB (164640) - RowsReturned: 1.92M (1920800) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1s020ms - UncompressedRowBatchSize: 23.81 MB (24970400) HDFS_SCAN_NODE (id=59):(Total: 3s271ms, non-child: 3s271ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.51 MB (7871794) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.51 MB (7871794) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.51 MB (7871794) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 1.605ms - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9443592) - PerReadThreadRawHdfsThroughput: 3.40 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 13.152ms - RowBatchQueuePutWaitTime: 5s695ms - RowsRead: 1.92M (1920800) - RowsReturned: 1.92M (1920800) - RowsReturnedRate: 587.15 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 29 (29) - ScannerThreadsTotalWallClockTime: 5s896ms - MaterializeTupleTime(*): 170.839ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 156.000ms - ScannerThreadsVoluntaryContextSwitches: 1.78K (1781) - TotalRawHdfsOpenFileTime(*): 16.629us - TotalRawHdfsReadTime(*): 2.158ms - TotalReadThroughput: 1.15 MB/sec CodeGen:(Total: 232.806ms, non-child: 232.806ms, % non-child: 100.00%) - CodegenTime: 623.501us - CompileTime: 37.782ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 100.869ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 93.421ms Fragment F46: Instance 3f4b6afbed1991fc:3c23055700000047 (host=XXX:22001):(Total: 6s473ms, non-child: 1s879ms, % non-child: 29.03%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB Fragment Instance Lifecycle Event Timeline: 7s698ms - Prepare Finished: 1s386ms (1s386ms) - Open Finished: 1s619ms (233.376ms) - First Batch Produced: 1s765ms (145.630ms) - First Batch Sent: 1s766ms (473.530us) - ExecInternal Finished: 7s698ms (5s932ms) MemoryUsage(500.000ms): 84.78 KB, 9.10 MB, 9.17 MB, 9.12 MB, 9.17 MB, 9.12 MB, 9.16 MB, 9.12 MB, 9.16 MB, 9.16 MB, 9.14 MB, 9.14 MB, 9.12 MB ThreadUsage(500.000ms): 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 - AverageThreadTokens: 1.92 - BloomFilterBytes: 0 - PeakMemoryUsage: 9.17 MB (9616839) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 309.33 MB (324351638) - RowsProduced: 1.92M (1920800) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 3.446ms - TotalStorageWaitTime: 6.259us - TotalThreadsInvoluntaryContextSwitches: 2.55K (2554) - TotalThreadsTotalWallClockTime: 12s208ms - TotalThreadsSysTime: 8.000ms - TotalThreadsUserTime: 1s708ms - TotalThreadsVoluntaryContextSwitches: 1.80K (1802) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 6s078ms - ExecTreeExecTime: 3s267ms - OpenTime: 233.365ms - ExecTreeOpenTime: 90.706us - PrepareTime: 161.239ms - ExecTreePrepareTime: 3.221ms KrpcDataStreamSender (dst_id=118):(Total: 1s089ms, non-child: 1s089ms, % non-child: 100.00%) - BytesSent: 14.67 MB (15378251) - EosSent: 3 (3) - OverallThroughput: 13.46 MB/sec - PeakMemoryUsage: 160.78 KB (164640) - RowsReturned: 1.92M (1920800) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 1s020ms - UncompressedRowBatchSize: 23.81 MB (24970400) HDFS_SCAN_NODE (id=59):(Total: 3s271ms, non-child: 3s271ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/7.48 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB, 7.51 MB - FooterProcessingTime: (Avg: 130.256us ; Min: 130.256us ; Max: 130.256us ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 1.00 - BytesRead: 7.51 MB (7871794) - BytesReadDataNodeCache: 0 - BytesReadLocal: 7.51 MB (7871794) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 7.51 MB (7871794) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 1.605ms - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 9.01 MB (9443592) - PerReadThreadRawHdfsThroughput: 3.40 GB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 13.152ms - RowBatchQueuePutWaitTime: 5s695ms - RowsRead: 1.92M (1920800) - RowsReturned: 1.92M (1920800) - RowsReturnedRate: 587.15 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 29 (29) - ScannerThreadsTotalWallClockTime: 5s896ms - MaterializeTupleTime(*): 170.839ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 156.000ms - ScannerThreadsVoluntaryContextSwitches: 1.78K (1781) - TotalRawHdfsOpenFileTime(*): 16.629us - TotalRawHdfsReadTime(*): 2.158ms - TotalReadThroughput: 1.15 MB/sec CodeGen:(Total: 232.806ms, non-child: 232.806ms, % non-child: 100.00%) - CodegenTime: 623.501us - CompileTime: 37.782ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 100.869ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 93.421ms Averaged Fragment F48:(Total: 579.892ms, non-child: 147.032ms, % non-child: 25.36%) split sizes: min: 1.73 MB, max: 1.73 MB, avg: 1.73 MB, stddev: 0 completion times: min:1s843ms max:1s843ms mean: 1s843ms stddev:0.000ns execution rates: min:961.26 KB/sec max:961.26 KB/sec mean:961.26 KB/sec stddev:0.60 B/sec num instances: 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 637.69 KB (652994) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 277.53 MB (291008137) - RowsProduced: 18.00K (18000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 54.745ms - TotalStorageWaitTime: 1.004ms - TotalThreadsInvoluntaryContextSwitches: 17 (17) - TotalThreadsTotalWallClockTime: 459.037ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 44.000ms - TotalThreadsVoluntaryContextSwitches: 43 (43) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 106.863ms - ExecTreeExecTime: 45.179ms - OpenTime: 336.827ms - ExecTreeOpenTime: 94.973us - PrepareTime: 131.834ms - ExecTreePrepareTime: 155.883us KrpcDataStreamSender (dst_id=119):(Total: 51.023ms, non-child: 51.023ms, % non-child: 100.00%) - BytesSent: 140.80 KB (144184) - EosSent: 3 (3) - OverallThroughput: 2.69 MB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 18.00K (18000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.007ms - UncompressedRowBatchSize: 298.83 KB (306000) HDFS_SCAN_NODE (id=63):(Total: 45.596ms, non-child: 45.596ms, % non-child: 100.00%) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 203.44 KB (208323) - BytesReadDataNodeCache: 0 - BytesReadLocal: 203.44 KB (208323) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 203.44 KB (208323) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 13.049us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 577.63 KB (591491) - PerReadThreadRawHdfsThroughput: 503.97 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 8.258ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 18.00K (18000) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 394.77 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 8 (8) - ScannerThreadsTotalWallClockTime: 15.359ms - MaterializeTupleTime(*): 2.254ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 4.000ms - ScannerThreadsVoluntaryContextSwitches: 3 (3) - TotalRawHdfsOpenFileTime(*): 17.723us - TotalRawHdfsReadTime(*): 394.216us - TotalReadThroughput: 203.44 KB/sec CodeGen:(Total: 336.240ms, non-child: 336.240ms, % non-child: 100.00%) - CodegenTime: 654.909us - CompileTime: 50.873ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 129.218ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 155.583ms Fragment F48: Instance 3f4b6afbed1991fc:3c23055700000048 (host=XXX:22001):(Total: 579.892ms, non-child: 147.032ms, % non-child: 25.36%) Hdfs split stats (:<# splits>/): 0:1/1.73 MB Fragment Instance Lifecycle Event Timeline: 1s830ms - Prepare Finished: 1s386ms (1s386ms) - Open Finished: 1s723ms (336.835ms) - First Batch Produced: 1s768ms (44.916ms) - First Batch Sent: 1s768ms (392.330us) - ExecInternal Finished: 1s830ms (61.551ms) MemoryUsage(500.000ms): 50.66 KB, 161.06 KB ThreadUsage(500.000ms): 1, 1 - AverageThreadTokens: 1.00 - BloomFilterBytes: 0 - PeakMemoryUsage: 637.69 KB (652994) - PeakReservation: 0 - PeakUsedReservation: 0 - PerHostPeakMemUsage: 277.53 MB (291008137) - RowsProduced: 18.00K (18000) - TotalNetworkReceiveTime: 0.000ns - TotalNetworkSendTime: 54.745ms - TotalStorageWaitTime: 1.004ms - TotalThreadsInvoluntaryContextSwitches: 17 (17) - TotalThreadsTotalWallClockTime: 459.037ms - TotalThreadsSysTime: 0.000ns - TotalThreadsUserTime: 44.000ms - TotalThreadsVoluntaryContextSwitches: 43 (43) Buffer pool: - AllocTime: 0.000ns - CumulativeAllocationBytes: 0 - CumulativeAllocations: 0 (0) - PeakReservation: 0 - PeakUnpinnedBytes: 0 - PeakUsedReservation: 0 - ReadIoBytes: 0 - ReadIoOps: 0 (0) - ReadIoWaitTime: 0.000ns - ReservationLimit: 0 - WriteIoBytes: 0 - WriteIoOps: 0 (0) - WriteIoWaitTime: 0.000ns Fragment Instance Lifecycle Timings: - ExecTime: 106.863ms - ExecTreeExecTime: 45.179ms - OpenTime: 336.827ms - ExecTreeOpenTime: 94.973us - PrepareTime: 131.834ms - ExecTreePrepareTime: 155.883us KrpcDataStreamSender (dst_id=119):(Total: 51.023ms, non-child: 51.023ms, % non-child: 100.00%) - BytesSent: 140.80 KB (144184) - EosSent: 3 (3) - OverallThroughput: 2.69 MB/sec - PeakMemoryUsage: 42.66 KB (43680) - RowsReturned: 18.00K (18000) - RpcFailure: 0 (0) - RpcRetry: 0 (0) - SerializeBatchTime: 6.007ms - UncompressedRowBatchSize: 298.83 KB (306000) HDFS_SCAN_NODE (id=63):(Total: 45.596ms, non-child: 45.596ms, % non-child: 100.00%) Hdfs split stats (:<# splits>/): 0:1/1.73 MB ExecOption: PARQUET Codegen Enabled, Codegen enabled: 1 out of 1 Hdfs Read Thread Concurrency Bucket: 0:100% 1:0% 2:0% 3:0% 4:0% 5:0% 6:0% File Formats: PARQUET/SNAPPY:1 BytesRead(500.000ms): 0, 203.44 KB - FooterProcessingTime: (Avg: 1.069ms ; Min: 1.069ms ; Max: 1.069ms ; Number of samples: 1) - AverageHdfsReadThreadConcurrency: 0.00 - AverageScannerThreadConcurrency: 0.00 - BytesRead: 203.44 KB (208323) - BytesReadDataNodeCache: 0 - BytesReadLocal: 203.44 KB (208323) - BytesReadRemoteUnexpected: 0 - BytesReadShortCircuit: 203.44 KB (208323) - CachedFileHandlesHitCount: 2 (2) - CachedFileHandlesMissCount: 0 (0) - CollectionItemsRead: 0 (0) - DecompressionTime: 13.049us - MaxCompressedTextFileLength: 0 - NumColumns: 1 (1) - NumDictFilteredRowGroups: 0 (0) - NumDisksAccessed: 1 (1) - NumRowGroups: 1 (1) - NumScannerThreadsStarted: 1 (1) - NumScannersWithNoReads: 0 (0) - NumStatsFilteredRowGroups: 0 (0) - PeakMemoryUsage: 577.63 KB (591491) - PerReadThreadRawHdfsThroughput: 503.97 MB/sec - RemoteScanRanges: 0 (0) - RowBatchQueueGetWaitTime: 8.258ms - RowBatchQueuePutWaitTime: 0.000ns - RowsRead: 18.00K (18000) - RowsReturned: 18.00K (18000) - RowsReturnedRate: 394.77 K/sec - ScanRangesComplete: 1 (1) - ScannerThreadsInvoluntaryContextSwitches: 8 (8) - ScannerThreadsTotalWallClockTime: 15.359ms - MaterializeTupleTime(*): 2.254ms - ScannerThreadsSysTime: 0.000ns - ScannerThreadsUserTime: 4.000ms - ScannerThreadsVoluntaryContextSwitches: 3 (3) - TotalRawHdfsOpenFileTime(*): 17.723us - TotalRawHdfsReadTime(*): 394.216us - TotalReadThroughput: 203.44 KB/sec CodeGen:(Total: 336.240ms, non-child: 336.240ms, % non-child: 100.00%) - CodegenTime: 654.909us - CompileTime: 50.873ms - LoadTime: 0.000ns - ModuleBitcodeSize: 1.95 MB (2039520) - NumFunctions: 7 (7) - NumInstructions: 105 (105) - OptimizationTime: 129.218ms - PeakMemoryUsage: 52.50 KB (53760) - PrepareTime: 155.583ms