blob: ba1ad49795ea9b86d307357b98593bf15c3da647 [file] [log] [blame]
# TPCDS-Q14b second of two queries
WITH cross_items AS
(SELECT i_item_sk ss_item_sk
FROM item,
(SELECT iss.i_brand_id brand_id,
iss.i_class_id class_id,
iss.i_category_id category_id
FROM store_sales,
item iss,
date_dim d1
WHERE ss_item_sk = iss.i_item_sk
AND ss_sold_date_sk = d1.d_date_sk
AND d1.d_year BETWEEN 1999 AND 1999 + 2 INTERSECT
SELECT ics.i_brand_id,
ics.i_class_id,
ics.i_category_id
FROM catalog_sales,
item ics,
date_dim d2 WHERE cs_item_sk = ics.i_item_sk
AND cs_sold_date_sk = d2.d_date_sk
AND d2.d_year BETWEEN 1999 AND 1999 + 2 INTERSECT
SELECT iws.i_brand_id,
iws.i_class_id,
iws.i_category_id
FROM web_sales,
item iws,
date_dim d3 WHERE ws_item_sk = iws.i_item_sk
AND ws_sold_date_sk = d3.d_date_sk
AND d3.d_year BETWEEN 1999 AND 1999 + 2) x
WHERE i_brand_id = brand_id
AND i_class_id = class_id
AND i_category_id = category_id ),
avg_sales AS
(SELECT avg(quantity*list_price) average_sales
FROM
(SELECT ss_quantity quantity,
ss_list_price list_price
FROM store_sales,
date_dim
WHERE ss_sold_date_sk = d_date_sk
AND d_year BETWEEN 1999 AND 1999 + 2
UNION ALL SELECT cs_quantity quantity,
cs_list_price list_price
FROM catalog_sales,
date_dim
WHERE cs_sold_date_sk = d_date_sk
AND d_year BETWEEN 1999 AND 1999 + 2
UNION ALL SELECT ws_quantity quantity,
ws_list_price list_price
FROM web_sales,
date_dim
WHERE ws_sold_date_sk = d_date_sk
AND d_year BETWEEN 1999 AND 1999 + 2) x)
SELECT this_year.channel ty_channel,
this_year.i_brand_id ty_brand,
this_year.i_class_id ty_class,
this_year.i_category_id ty_category,
this_year.sales ty_sales,
this_year.number_sales ty_number_sales,
last_year.channel ly_channel,
last_year.i_brand_id ly_brand,
last_year.i_class_id ly_class,
last_year.i_category_id ly_category,
last_year.sales ly_sales,
last_year.number_sales ly_number_sales
FROM
(SELECT 'store' channel,
i_brand_id,
i_class_id,
i_category_id,
sum(ss_quantity*ss_list_price) sales,
count(*) number_sales
FROM store_sales,
item,
date_dim
WHERE ss_item_sk IN
(SELECT ss_item_sk
FROM cross_items)
AND ss_item_sk = i_item_sk
AND ss_sold_date_sk = d_date_sk
AND d_week_seq =
(SELECT d_week_seq
FROM date_dim
WHERE d_year = 1999 + 1
AND d_moy = 12
AND d_dom = 11)
GROUP BY i_brand_id,
i_class_id,
i_category_id
HAVING sum(ss_quantity*ss_list_price) >
(SELECT average_sales
FROM avg_sales)) this_year,
(SELECT 'store' channel,
i_brand_id,
i_class_id,
i_category_id,
sum(ss_quantity*ss_list_price) sales,
count(*) number_sales
FROM store_sales,
item,
date_dim
WHERE ss_item_sk IN
(SELECT ss_item_sk
FROM cross_items)
AND ss_item_sk = i_item_sk
AND ss_sold_date_sk = d_date_sk
AND d_week_seq =
(SELECT d_week_seq
FROM date_dim
WHERE d_year = 1999
AND d_moy = 12
AND d_dom = 11)
GROUP BY i_brand_id,
i_class_id,
i_category_id
HAVING sum(ss_quantity*ss_list_price) >
(SELECT average_sales
FROM avg_sales)) last_year
WHERE this_year.i_brand_id= last_year.i_brand_id
AND this_year.i_class_id = last_year.i_class_id
AND this_year.i_category_id = last_year.i_category_id
ORDER BY this_year.channel,
this_year.i_brand_id,
this_year.i_class_id,
this_year.i_category_id
LIMIT 100
---- PLAN
Max Per-Host Resource Reservation: Memory=99.88MB Threads=33
Per-Host Resource Estimates: Memory=1.85GB
F00:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| Per-Host Resources: mem-estimate=1.85GB mem-reservation=99.88MB thread-reservation=33 runtime-filters-memory=10.00MB
PLAN-ROOT SINK
| output exprs: channel, i_brand_id, i_class_id, i_category_id, sales, number_sales, channel, i_brand_id, i_class_id, i_category_id, sales, number_sales
| mem-estimate=0B mem-reservation=0B thread-reservation=0
|
91:TOP-N [LIMIT=100]
| order by: channel ASC, i_brand_id ASC, i_class_id ASC, i_category_id ASC
| mem-estimate=480B mem-reservation=0B thread-reservation=0
| tuple-ids=74 row-size=96B cardinality=5
| in pipelines: 91(GETNEXT), 32(OPEN)
|
90:HASH JOIN [INNER JOIN]
| hash predicates: i_brand_id = i_brand_id, i_category_id = i_category_id, i_class_id = i_class_id
| fk/pk conjuncts: i_brand_id = i_brand_id, i_category_id = i_category_id, i_class_id = i_class_id
| runtime filters: RF000[bloom] <- i_brand_id, RF001[bloom] <- i_category_id, RF002[bloom] <- i_class_id
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=22,33,59,70 row-size=104B cardinality=5
| in pipelines: 32(GETNEXT), 77(OPEN)
|
|--89:NESTED LOOP JOIN [INNER JOIN]
| | predicates: sum(ss_quantity * ss_list_price) > avg(quantity * list_price)
| | mem-estimate=16B mem-reservation=0B thread-reservation=0
| | tuple-ids=59,70 row-size=52B cardinality=271
| | in pipelines: 77(GETNEXT), 88(OPEN)
| |
| |--88:AGGREGATE [FINALIZE]
| | | output: avg(CAST(quantity AS DECIMAL(10,0)) * list_price)
| | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
| | | tuple-ids=70 row-size=16B cardinality=1
| | | in pipelines: 88(GETNEXT), 79(OPEN), 82(OPEN), 85(OPEN)
| | |
| | 78:UNION
| | | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | | tuple-ids=67 row-size=8B cardinality=5.04M
| | | in pipelines: 79(GETNEXT), 82(GETNEXT), 85(GETNEXT)
| | |
| | |--87:HASH JOIN [INNER JOIN]
| | | | hash predicates: ws_sold_date_sk = d_date_sk
| | | | fk/pk conjuncts: ws_sold_date_sk = d_date_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=65,66 row-size=20B cardinality=719.38K
| | | | in pipelines: 85(GETNEXT), 86(OPEN)
| | | |
| | | |--86:SCAN HDFS [tpcds_parquet.date_dim]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | | tuple-ids=66 row-size=8B cardinality=7.30K
| | | | in pipelines: 86(GETNEXT)
| | | |
| | | 85:SCAN HDFS [tpcds_parquet.web_sales]
| | | HDFS partitions=1/1 files=2 size=45.09MB
| | | stored statistics:
| | | table: rows=719.38K size=45.09MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | | mem-estimate=96.00MB mem-reservation=4.00MB thread-reservation=1
| | | tuple-ids=65 row-size=12B cardinality=719.38K
| | | in pipelines: 85(GETNEXT)
| | |
| | |--84:HASH JOIN [INNER JOIN]
| | | | hash predicates: cs_sold_date_sk = d_date_sk
| | | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=63,64 row-size=20B cardinality=1.44M
| | | | in pipelines: 82(GETNEXT), 83(OPEN)
| | | |
| | | |--83:SCAN HDFS [tpcds_parquet.date_dim]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | | tuple-ids=64 row-size=8B cardinality=7.30K
| | | | in pipelines: 83(GETNEXT)
| | | |
| | | 82:SCAN HDFS [tpcds_parquet.catalog_sales]
| | | HDFS partitions=1/1 files=3 size=96.62MB
| | | stored statistics:
| | | table: rows=1.44M size=96.62MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | | mem-estimate=144.00MB mem-reservation=4.00MB thread-reservation=1
| | | tuple-ids=63 row-size=12B cardinality=1.44M
| | | in pipelines: 82(GETNEXT)
| | |
| | 81:HASH JOIN [INNER JOIN]
| | | hash predicates: ss_sold_date_sk = d_date_sk
| | | fk/pk conjuncts: ss_sold_date_sk = d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=61,62 row-size=20B cardinality=2.88M
| | | in pipelines: 79(GETNEXT), 80(OPEN)
| | |
| | |--80:SCAN HDFS [tpcds_parquet.date_dim]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=62 row-size=8B cardinality=7.30K
| | | in pipelines: 80(GETNEXT)
| | |
| | 79:SCAN HDFS [tpcds_parquet.store_sales]
| | HDFS partitions=1824/1824 files=1824 size=200.95MB
| | stored statistics:
| | table: rows=2.88M size=200.95MB
| | partitions: 1824/1824 rows=2.88M
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=130.09K
| | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=61 row-size=12B cardinality=2.88M
| | in pipelines: 79(GETNEXT)
| |
| 77:AGGREGATE [FINALIZE]
| | output: sum(CAST(ss_quantity AS DECIMAL(10,0)) * ss_list_price), count(*)
| | group by: i_brand_id, i_class_id, i_category_id
| | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=59 row-size=36B cardinality=271
| | in pipelines: 77(GETNEXT), 45(OPEN)
| |
| 76:HASH JOIN [LEFT SEMI JOIN]
| | hash predicates: d_week_seq = d_week_seq
| | runtime filters: RF050[bloom] <- d_week_seq
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38,39 row-size=48B cardinality=271
| | in pipelines: 45(GETNEXT), 71(OPEN)
| |
| |--71:CARDINALITY CHECK
| | | limit: 1
| | | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | | tuple-ids=57 row-size=16B cardinality=1
| | | in pipelines: 71(GETNEXT), 70(OPEN)
| | |
| | 70:SCAN HDFS [tpcds_parquet.date_dim]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | predicates: d_year = CAST(1999 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | parquet statistics predicates: d_year = CAST(1999 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| | parquet dictionary predicates: d_year = CAST(1999 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| | limit: 2
| | mem-estimate=64.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=57 row-size=16B cardinality=2
| | in pipelines: 70(GETNEXT)
| |
| 75:HASH JOIN [LEFT SEMI JOIN]
| | hash predicates: ss_item_sk = tpcds_parquet.item.i_item_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38,39 row-size=48B cardinality=2.88M
| | in pipelines: 45(GETNEXT), 74(OPEN)
| |
| |--74:AGGREGATE [FINALIZE]
| | | group by: tpcds_parquet.item.i_item_sk
| | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=114 row-size=8B cardinality=17.98K
| | | in pipelines: 74(GETNEXT), 54(OPEN)
| | |
| | 69:HASH JOIN [INNER JOIN]
| | | hash predicates: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | | fk/pk conjuncts: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=44,40 row-size=32B cardinality=148.80K
| | | in pipelines: 54(GETNEXT), 48(OPEN)
| | |
| | |--48:SCAN HDFS [tpcds_parquet.item]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | tuple-ids=40 row-size=20B cardinality=18.00K
| | | in pipelines: 48(GETNEXT)
| | |
| | 68:HASH JOIN [LEFT SEMI JOIN]
| | | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM iws.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM iws.i_category_id, iss.i_class_id IS NOT DISTINCT FROM iws.i_class_id
| | | mem-estimate=2.88MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 54(GETNEXT), 67(OPEN)
| | |
| | |--67:AGGREGATE [FINALIZE]
| | | | group by: iws.i_brand_id, iws.i_class_id, iws.i_category_id
| | | | mem-estimate=10.00MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| | | | tuple-ids=112 row-size=12B cardinality=148.80K
| | | | in pipelines: 67(GETNEXT), 60(OPEN)
| | | |
| | | 64:HASH JOIN [INNER JOIN]
| | | | hash predicates: ws_sold_date_sk = d3.d_date_sk
| | | | fk/pk conjuncts: ws_sold_date_sk = d3.d_date_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=50,51,52 row-size=40B cardinality=719.38K
| | | | in pipelines: 60(GETNEXT), 62(OPEN)
| | | |
| | | |--62:SCAN HDFS [tpcds_parquet.date_dim d3]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | | tuple-ids=52 row-size=8B cardinality=7.30K
| | | | in pipelines: 62(GETNEXT)
| | | |
| | | 63:HASH JOIN [INNER JOIN]
| | | | hash predicates: ws_item_sk = iws.i_item_sk
| | | | fk/pk conjuncts: ws_item_sk = iws.i_item_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=50,51 row-size=32B cardinality=719.38K
| | | | in pipelines: 60(GETNEXT), 61(OPEN)
| | | |
| | | |--61:SCAN HDFS [tpcds_parquet.item iws]
| | | | HDFS partitions=1/1 files=1 size=1.73MB
| | | | stored statistics:
| | | | table: rows=18.00K size=1.73MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | | tuple-ids=51 row-size=20B cardinality=18.00K
| | | | in pipelines: 61(GETNEXT)
| | | |
| | | 60:SCAN HDFS [tpcds_parquet.web_sales]
| | | HDFS partitions=1/1 files=2 size=45.09MB
| | | stored statistics:
| | | table: rows=719.38K size=45.09MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | | mem-estimate=64.00MB mem-reservation=4.00MB thread-reservation=1
| | | tuple-ids=50 row-size=12B cardinality=719.38K
| | | in pipelines: 60(GETNEXT)
| | |
| | 66:HASH JOIN [LEFT SEMI JOIN]
| | | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM ics.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM ics.i_category_id, iss.i_class_id IS NOT DISTINCT FROM ics.i_class_id
| | | mem-estimate=2.88MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 54(GETNEXT), 65(OPEN)
| | |
| | |--65:AGGREGATE [FINALIZE]
| | | | group by: ics.i_brand_id, ics.i_class_id, ics.i_category_id
| | | | mem-estimate=10.00MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| | | | tuple-ids=111 row-size=12B cardinality=148.80K
| | | | in pipelines: 65(GETNEXT), 55(OPEN)
| | | |
| | | 59:HASH JOIN [INNER JOIN]
| | | | hash predicates: cs_sold_date_sk = d2.d_date_sk
| | | | fk/pk conjuncts: cs_sold_date_sk = d2.d_date_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=46,47,48 row-size=40B cardinality=1.44M
| | | | in pipelines: 55(GETNEXT), 57(OPEN)
| | | |
| | | |--57:SCAN HDFS [tpcds_parquet.date_dim d2]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | | tuple-ids=48 row-size=8B cardinality=7.30K
| | | | in pipelines: 57(GETNEXT)
| | | |
| | | 58:HASH JOIN [INNER JOIN]
| | | | hash predicates: cs_item_sk = ics.i_item_sk
| | | | fk/pk conjuncts: cs_item_sk = ics.i_item_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=46,47 row-size=32B cardinality=1.44M
| | | | in pipelines: 55(GETNEXT), 56(OPEN)
| | | |
| | | |--56:SCAN HDFS [tpcds_parquet.item ics]
| | | | HDFS partitions=1/1 files=1 size=1.73MB
| | | | stored statistics:
| | | | table: rows=18.00K size=1.73MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | | tuple-ids=47 row-size=20B cardinality=18.00K
| | | | in pipelines: 56(GETNEXT)
| | | |
| | | 55:SCAN HDFS [tpcds_parquet.catalog_sales]
| | | HDFS partitions=1/1 files=3 size=96.62MB
| | | stored statistics:
| | | table: rows=1.44M size=96.62MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | | mem-estimate=96.00MB mem-reservation=4.00MB thread-reservation=1
| | | tuple-ids=46 row-size=12B cardinality=1.44M
| | | in pipelines: 55(GETNEXT)
| | |
| | 54:AGGREGATE [FINALIZE]
| | | group by: iss.i_brand_id, iss.i_class_id, iss.i_category_id
| | | mem-estimate=10.00MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 54(GETNEXT), 49(OPEN)
| | |
| | 53:HASH JOIN [INNER JOIN]
| | | hash predicates: ss_sold_date_sk = d1.d_date_sk
| | | fk/pk conjuncts: ss_sold_date_sk = d1.d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=41,42,43 row-size=40B cardinality=2.88M
| | | in pipelines: 49(GETNEXT), 51(OPEN)
| | |
| | |--51:SCAN HDFS [tpcds_parquet.date_dim d1]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=43 row-size=8B cardinality=7.30K
| | | in pipelines: 51(GETNEXT)
| | |
| | 52:HASH JOIN [INNER JOIN]
| | | hash predicates: ss_item_sk = iss.i_item_sk
| | | fk/pk conjuncts: ss_item_sk = iss.i_item_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=41,42 row-size=32B cardinality=2.88M
| | | in pipelines: 49(GETNEXT), 50(OPEN)
| | |
| | |--50:SCAN HDFS [tpcds_parquet.item iss]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | tuple-ids=42 row-size=20B cardinality=18.00K
| | | in pipelines: 50(GETNEXT)
| | |
| | 49:SCAN HDFS [tpcds_parquet.store_sales]
| | HDFS partitions=1824/1824 files=1824 size=200.95MB
| | stored statistics:
| | table: rows=2.88M size=200.95MB
| | partitions: 1824/1824 rows=2.88M
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=130.09K
| | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=41 row-size=12B cardinality=2.88M
| | in pipelines: 49(GETNEXT)
| |
| 73:HASH JOIN [INNER JOIN]
| | hash predicates: ss_sold_date_sk = d_date_sk
| | fk/pk conjuncts: ss_sold_date_sk = d_date_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38,39 row-size=48B cardinality=2.88M
| | in pipelines: 45(GETNEXT), 47(OPEN)
| |
| |--47:SCAN HDFS [tpcds_parquet.date_dim]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | runtime filters: RF050[bloom] -> d_week_seq
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=39 row-size=8B cardinality=73.05K
| | in pipelines: 47(GETNEXT)
| |
| 72:HASH JOIN [INNER JOIN]
| | hash predicates: ss_item_sk = i_item_sk
| | fk/pk conjuncts: ss_item_sk = i_item_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38 row-size=40B cardinality=2.88M
| | in pipelines: 45(GETNEXT), 46(OPEN)
| |
| |--46:SCAN HDFS [tpcds_parquet.item]
| | HDFS partitions=1/1 files=1 size=1.73MB
| | stored statistics:
| | table: rows=18.00K size=1.73MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | tuple-ids=38 row-size=20B cardinality=18.00K
| | in pipelines: 46(GETNEXT)
| |
| 45:SCAN HDFS [tpcds_parquet.store_sales]
| HDFS partitions=1824/1824 files=1824 size=200.95MB
| stored statistics:
| table: rows=2.88M size=200.95MB
| partitions: 1824/1824 rows=2.88M
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=130.09K
| mem-estimate=48.00MB mem-reservation=1.00MB thread-reservation=1
| tuple-ids=37 row-size=20B cardinality=2.88M
| in pipelines: 45(GETNEXT)
|
44:NESTED LOOP JOIN [INNER JOIN]
| predicates: sum(ss_quantity * ss_list_price) > avg(quantity * list_price)
| mem-estimate=16B mem-reservation=0B thread-reservation=0
| tuple-ids=22,33 row-size=52B cardinality=271
| in pipelines: 32(GETNEXT), 43(OPEN)
|
|--43:AGGREGATE [FINALIZE]
| | output: avg(CAST(quantity AS DECIMAL(10,0)) * list_price)
| | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
| | tuple-ids=33 row-size=16B cardinality=1
| | in pipelines: 43(GETNEXT), 34(OPEN), 37(OPEN), 40(OPEN)
| |
| 33:UNION
| | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | tuple-ids=30 row-size=8B cardinality=5.04M
| | in pipelines: 34(GETNEXT), 37(GETNEXT), 40(GETNEXT)
| |
| |--42:HASH JOIN [INNER JOIN]
| | | hash predicates: ws_sold_date_sk = d_date_sk
| | | fk/pk conjuncts: ws_sold_date_sk = d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=28,29 row-size=20B cardinality=719.38K
| | | in pipelines: 40(GETNEXT), 41(OPEN)
| | |
| | |--41:SCAN HDFS [tpcds_parquet.date_dim]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=29 row-size=8B cardinality=7.30K
| | | in pipelines: 41(GETNEXT)
| | |
| | 40:SCAN HDFS [tpcds_parquet.web_sales]
| | HDFS partitions=1/1 files=2 size=45.09MB
| | stored statistics:
| | table: rows=719.38K size=45.09MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | mem-estimate=96.00MB mem-reservation=4.00MB thread-reservation=1
| | tuple-ids=28 row-size=12B cardinality=719.38K
| | in pipelines: 40(GETNEXT)
| |
| |--39:HASH JOIN [INNER JOIN]
| | | hash predicates: cs_sold_date_sk = d_date_sk
| | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=26,27 row-size=20B cardinality=1.44M
| | | in pipelines: 37(GETNEXT), 38(OPEN)
| | |
| | |--38:SCAN HDFS [tpcds_parquet.date_dim]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=27 row-size=8B cardinality=7.30K
| | | in pipelines: 38(GETNEXT)
| | |
| | 37:SCAN HDFS [tpcds_parquet.catalog_sales]
| | HDFS partitions=1/1 files=3 size=96.62MB
| | stored statistics:
| | table: rows=1.44M size=96.62MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | mem-estimate=144.00MB mem-reservation=4.00MB thread-reservation=1
| | tuple-ids=26 row-size=12B cardinality=1.44M
| | in pipelines: 37(GETNEXT)
| |
| 36:HASH JOIN [INNER JOIN]
| | hash predicates: ss_sold_date_sk = d_date_sk
| | fk/pk conjuncts: ss_sold_date_sk = d_date_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=24,25 row-size=20B cardinality=2.88M
| | in pipelines: 34(GETNEXT), 35(OPEN)
| |
| |--35:SCAN HDFS [tpcds_parquet.date_dim]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=25 row-size=8B cardinality=7.30K
| | in pipelines: 35(GETNEXT)
| |
| 34:SCAN HDFS [tpcds_parquet.store_sales]
| HDFS partitions=1824/1824 files=1824 size=200.95MB
| stored statistics:
| table: rows=2.88M size=200.95MB
| partitions: 1824/1824 rows=2.88M
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=130.09K
| mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=24 row-size=12B cardinality=2.88M
| in pipelines: 34(GETNEXT)
|
32:AGGREGATE [FINALIZE]
| output: sum(CAST(ss_quantity AS DECIMAL(10,0)) * ss_list_price), count(*)
| group by: i_brand_id, i_class_id, i_category_id
| mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=22 row-size=36B cardinality=271
| in pipelines: 32(GETNEXT), 00(OPEN)
|
31:HASH JOIN [LEFT SEMI JOIN]
| hash predicates: d_week_seq = d_week_seq
| runtime filters: RF006[bloom] <- d_week_seq
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,1,2 row-size=48B cardinality=271
| in pipelines: 00(GETNEXT), 26(OPEN)
|
|--26:CARDINALITY CHECK
| | limit: 1
| | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | tuple-ids=20 row-size=16B cardinality=1
| | in pipelines: 26(GETNEXT), 25(OPEN)
| |
| 25:SCAN HDFS [tpcds_parquet.date_dim]
| HDFS partitions=1/1 files=1 size=2.15MB
| predicates: d_year = CAST(2000 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| stored statistics:
| table: rows=73.05K size=2.15MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=73.05K
| parquet statistics predicates: d_year = CAST(2000 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| parquet dictionary predicates: d_year = CAST(2000 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| limit: 2
| mem-estimate=64.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=20 row-size=16B cardinality=2
| in pipelines: 25(GETNEXT)
|
30:HASH JOIN [LEFT SEMI JOIN]
| hash predicates: ss_item_sk = tpcds_parquet.item.i_item_sk
| runtime filters: RF008[bloom] <- tpcds_parquet.item.i_item_sk
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,1,2 row-size=48B cardinality=2.88M
| in pipelines: 00(GETNEXT), 29(OPEN)
|
|--29:AGGREGATE [FINALIZE]
| | group by: tpcds_parquet.item.i_item_sk
| | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=91 row-size=8B cardinality=17.98K
| | in pipelines: 29(GETNEXT), 09(OPEN)
| |
| 24:HASH JOIN [INNER JOIN]
| | hash predicates: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | fk/pk conjuncts: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | runtime filters: RF014[bloom] <- i_brand_id, RF015[bloom] <- i_category_id
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=7,3 row-size=32B cardinality=148.80K
| | in pipelines: 09(GETNEXT), 03(OPEN)
| |
| |--03:SCAN HDFS [tpcds_parquet.item]
| | HDFS partitions=1/1 files=1 size=1.73MB
| | stored statistics:
| | table: rows=18.00K size=1.73MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | tuple-ids=3 row-size=20B cardinality=18.00K
| | in pipelines: 03(GETNEXT)
| |
| 23:HASH JOIN [LEFT SEMI JOIN]
| | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM iws.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM iws.i_category_id, iss.i_class_id IS NOT DISTINCT FROM iws.i_class_id
| | mem-estimate=2.88MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 09(GETNEXT), 22(OPEN)
| |
| |--22:AGGREGATE [FINALIZE]
| | | group by: iws.i_brand_id, iws.i_class_id, iws.i_category_id
| | | mem-estimate=10.00MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=89 row-size=12B cardinality=148.80K
| | | in pipelines: 22(GETNEXT), 15(OPEN)
| | |
| | 19:HASH JOIN [INNER JOIN]
| | | hash predicates: ws_sold_date_sk = d3.d_date_sk
| | | fk/pk conjuncts: ws_sold_date_sk = d3.d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=13,14,15 row-size=40B cardinality=719.38K
| | | in pipelines: 15(GETNEXT), 17(OPEN)
| | |
| | |--17:SCAN HDFS [tpcds_parquet.date_dim d3]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=15 row-size=8B cardinality=7.30K
| | | in pipelines: 17(GETNEXT)
| | |
| | 18:HASH JOIN [INNER JOIN]
| | | hash predicates: ws_item_sk = iws.i_item_sk
| | | fk/pk conjuncts: ws_item_sk = iws.i_item_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=13,14 row-size=32B cardinality=719.38K
| | | in pipelines: 15(GETNEXT), 16(OPEN)
| | |
| | |--16:SCAN HDFS [tpcds_parquet.item iws]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | tuple-ids=14 row-size=20B cardinality=18.00K
| | | in pipelines: 16(GETNEXT)
| | |
| | 15:SCAN HDFS [tpcds_parquet.web_sales]
| | HDFS partitions=1/1 files=2 size=45.09MB
| | stored statistics:
| | table: rows=719.38K size=45.09MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | mem-estimate=64.00MB mem-reservation=4.00MB thread-reservation=1
| | tuple-ids=13 row-size=12B cardinality=719.38K
| | in pipelines: 15(GETNEXT)
| |
| 21:HASH JOIN [LEFT SEMI JOIN]
| | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM ics.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM ics.i_category_id, iss.i_class_id IS NOT DISTINCT FROM ics.i_class_id
| | mem-estimate=2.88MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 09(GETNEXT), 20(OPEN)
| |
| |--20:AGGREGATE [FINALIZE]
| | | group by: ics.i_brand_id, ics.i_class_id, ics.i_category_id
| | | mem-estimate=10.00MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=88 row-size=12B cardinality=148.80K
| | | in pipelines: 20(GETNEXT), 10(OPEN)
| | |
| | 14:HASH JOIN [INNER JOIN]
| | | hash predicates: cs_sold_date_sk = d2.d_date_sk
| | | fk/pk conjuncts: cs_sold_date_sk = d2.d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=9,10,11 row-size=40B cardinality=1.44M
| | | in pipelines: 10(GETNEXT), 12(OPEN)
| | |
| | |--12:SCAN HDFS [tpcds_parquet.date_dim d2]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=11 row-size=8B cardinality=7.30K
| | | in pipelines: 12(GETNEXT)
| | |
| | 13:HASH JOIN [INNER JOIN]
| | | hash predicates: cs_item_sk = ics.i_item_sk
| | | fk/pk conjuncts: cs_item_sk = ics.i_item_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=9,10 row-size=32B cardinality=1.44M
| | | in pipelines: 10(GETNEXT), 11(OPEN)
| | |
| | |--11:SCAN HDFS [tpcds_parquet.item ics]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | tuple-ids=10 row-size=20B cardinality=18.00K
| | | in pipelines: 11(GETNEXT)
| | |
| | 10:SCAN HDFS [tpcds_parquet.catalog_sales]
| | HDFS partitions=1/1 files=3 size=96.62MB
| | stored statistics:
| | table: rows=1.44M size=96.62MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | mem-estimate=96.00MB mem-reservation=4.00MB thread-reservation=1
| | tuple-ids=9 row-size=12B cardinality=1.44M
| | in pipelines: 10(GETNEXT)
| |
| 09:AGGREGATE [FINALIZE]
| | group by: iss.i_brand_id, iss.i_class_id, iss.i_category_id
| | mem-estimate=10.00MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 09(GETNEXT), 04(OPEN)
| |
| 08:HASH JOIN [INNER JOIN]
| | hash predicates: ss_sold_date_sk = d1.d_date_sk
| | fk/pk conjuncts: ss_sold_date_sk = d1.d_date_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=4,5,6 row-size=40B cardinality=2.88M
| | in pipelines: 04(GETNEXT), 06(OPEN)
| |
| |--06:SCAN HDFS [tpcds_parquet.date_dim d1]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | parquet statistics predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | parquet dictionary predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=6 row-size=8B cardinality=7.30K
| | in pipelines: 06(GETNEXT)
| |
| 07:HASH JOIN [INNER JOIN]
| | hash predicates: ss_item_sk = iss.i_item_sk
| | fk/pk conjuncts: ss_item_sk = iss.i_item_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=4,5 row-size=32B cardinality=2.88M
| | in pipelines: 04(GETNEXT), 05(OPEN)
| |
| |--05:SCAN HDFS [tpcds_parquet.item iss]
| | HDFS partitions=1/1 files=1 size=1.73MB
| | runtime filters: RF014[bloom] -> iss.i_brand_id, RF015[bloom] -> iss.i_category_id
| | stored statistics:
| | table: rows=18.00K size=1.73MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | tuple-ids=5 row-size=20B cardinality=18.00K
| | in pipelines: 05(GETNEXT)
| |
| 04:SCAN HDFS [tpcds_parquet.store_sales]
| HDFS partitions=1824/1824 files=1824 size=200.95MB
| stored statistics:
| table: rows=2.88M size=200.95MB
| partitions: 1824/1824 rows=2.88M
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=130.09K
| mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=4 row-size=12B cardinality=2.88M
| in pipelines: 04(GETNEXT)
|
28:HASH JOIN [INNER JOIN]
| hash predicates: ss_sold_date_sk = d_date_sk
| fk/pk conjuncts: ss_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 thread-reservation=0
| tuple-ids=0,1,2 row-size=48B cardinality=2.88M
| in pipelines: 00(GETNEXT), 02(OPEN)
|
|--02:SCAN HDFS [tpcds_parquet.date_dim]
| HDFS partitions=1/1 files=1 size=2.15MB
| runtime filters: RF006[bloom] -> d_week_seq
| stored statistics:
| table: rows=73.05K size=2.15MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=73.05K
| mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=2 row-size=8B cardinality=73.05K
| in pipelines: 02(GETNEXT)
|
27:HASH JOIN [INNER JOIN]
| hash predicates: ss_item_sk = i_item_sk
| fk/pk conjuncts: ss_item_sk = i_item_sk
| runtime filters: RF012[bloom] <- i_item_sk
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,1 row-size=40B cardinality=2.88M
| in pipelines: 00(GETNEXT), 01(OPEN)
|
|--01:SCAN HDFS [tpcds_parquet.item]
| HDFS partitions=1/1 files=1 size=1.73MB
| runtime filters: RF000[bloom] -> tpcds_parquet.item.i_brand_id, RF001[bloom] -> tpcds_parquet.item.i_category_id, RF002[bloom] -> tpcds_parquet.item.i_class_id, RF008[bloom] -> tpcds_parquet.item.i_item_sk
| stored statistics:
| table: rows=18.00K size=1.73MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=18.00K
| mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| tuple-ids=1 row-size=20B cardinality=18.00K
| in pipelines: 01(GETNEXT)
|
00:SCAN HDFS [tpcds_parquet.store_sales]
HDFS partitions=1824/1824 files=1824 size=200.95MB
runtime filters: RF008[bloom] -> ss_item_sk, RF010[bloom] -> ss_sold_date_sk, RF012[bloom] -> ss_item_sk
stored statistics:
table: rows=2.88M size=200.95MB
partitions: 1824/1824 rows=2.88M
columns: all
extrapolated-rows=disabled max-scan-range-rows=130.09K
mem-estimate=48.00MB mem-reservation=1.00MB thread-reservation=1
tuple-ids=0 row-size=20B cardinality=2.88M
in pipelines: 00(GETNEXT)
---- DISTRIBUTEDPLAN
Max Per-Host Resource Reservation: Memory=157.06MB Threads=86
Per-Host Resource Estimates: Memory=2.23GB
F56:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| Per-Host Resources: mem-estimate=16.00KB mem-reservation=0B thread-reservation=1
PLAN-ROOT SINK
| output exprs: channel, i_brand_id, i_class_id, i_category_id, sales, number_sales, channel, i_brand_id, i_class_id, i_category_id, sales, number_sales
| mem-estimate=0B mem-reservation=0B thread-reservation=0
|
152:MERGING-EXCHANGE [UNPARTITIONED]
| order by: channel ASC, i_brand_id ASC, i_class_id ASC, i_category_id ASC
| limit: 100
| mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| tuple-ids=74 row-size=96B cardinality=5
| in pipelines: 91(GETNEXT)
|
F19:PLAN FRAGMENT [HASH(i_brand_id,i_class_id,i_category_id)] hosts=3 instances=3
Per-Host Resources: mem-estimate=25.00MB mem-reservation=8.81MB thread-reservation=1 runtime-filters-memory=3.00MB
91:TOP-N [LIMIT=100]
| order by: channel ASC, i_brand_id ASC, i_class_id ASC, i_category_id ASC
| mem-estimate=480B mem-reservation=0B thread-reservation=0
| tuple-ids=74 row-size=96B cardinality=5
| in pipelines: 91(GETNEXT), 115(OPEN)
|
90:HASH JOIN [INNER JOIN, PARTITIONED]
| hash predicates: i_brand_id = i_brand_id, i_category_id = i_category_id, i_class_id = i_class_id
| fk/pk conjuncts: i_brand_id = i_brand_id, i_category_id = i_category_id, i_class_id = i_class_id
| runtime filters: RF000[bloom] <- i_brand_id, RF001[bloom] <- i_category_id, RF002[bloom] <- i_class_id
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=22,33,59,70 row-size=104B cardinality=5
| in pipelines: 115(GETNEXT), 145(OPEN)
|
|--89:NESTED LOOP JOIN [INNER JOIN, BROADCAST]
| | predicates: sum(ss_quantity * ss_list_price) > avg(quantity * list_price)
| | mem-estimate=16B mem-reservation=0B thread-reservation=0
| | tuple-ids=59,70 row-size=52B cardinality=271
| | in pipelines: 145(GETNEXT), 150(OPEN)
| |
| |--151:EXCHANGE [BROADCAST]
| | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=70 row-size=16B cardinality=1
| | | in pipelines: 150(GETNEXT)
| | |
| | F55:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| | Per-Host Resources: mem-estimate=10.02MB mem-reservation=0B thread-reservation=1
| | 150:AGGREGATE [FINALIZE]
| | | output: avg:merge(quantity * list_price)
| | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
| | | tuple-ids=70 row-size=16B cardinality=1
| | | in pipelines: 150(GETNEXT), 88(OPEN)
| | |
| | 149:EXCHANGE [UNPARTITIONED]
| | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=69 row-size=16B cardinality=1
| | | in pipelines: 88(GETNEXT)
| | |
| | F54:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | Per-Host Resources: mem-estimate=156.00MB mem-reservation=5.94MB thread-reservation=2
| | 88:AGGREGATE
| | | output: avg(CAST(quantity AS DECIMAL(10,0)) * list_price)
| | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
| | | tuple-ids=69 row-size=16B cardinality=1
| | | in pipelines: 88(GETNEXT), 79(OPEN), 82(OPEN), 85(OPEN)
| | |
| | 78:UNION
| | | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | | tuple-ids=67 row-size=8B cardinality=5.04M
| | | in pipelines: 79(GETNEXT), 82(GETNEXT), 85(GETNEXT)
| | |
| | |--87:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash predicates: ws_sold_date_sk = d_date_sk
| | | | fk/pk conjuncts: ws_sold_date_sk = d_date_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=65,66 row-size=20B cardinality=719.38K
| | | | in pipelines: 85(GETNEXT), 86(OPEN)
| | | |
| | | |--148:EXCHANGE [BROADCAST]
| | | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=66 row-size=8B cardinality=7.30K
| | | | | in pipelines: 86(GETNEXT)
| | | | |
| | | | F53:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | | | 86:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | | tuple-ids=66 row-size=8B cardinality=7.30K
| | | | in pipelines: 86(GETNEXT)
| | | |
| | | 85:SCAN HDFS [tpcds_parquet.web_sales, RANDOM]
| | | HDFS partitions=1/1 files=2 size=45.09MB
| | | stored statistics:
| | | table: rows=719.38K size=45.09MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | | mem-estimate=96.00MB mem-reservation=4.00MB thread-reservation=1
| | | tuple-ids=65 row-size=12B cardinality=719.38K
| | | in pipelines: 85(GETNEXT)
| | |
| | |--84:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash predicates: cs_sold_date_sk = d_date_sk
| | | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=63,64 row-size=20B cardinality=1.44M
| | | | in pipelines: 82(GETNEXT), 83(OPEN)
| | | |
| | | |--147:EXCHANGE [BROADCAST]
| | | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=64 row-size=8B cardinality=7.30K
| | | | | in pipelines: 83(GETNEXT)
| | | | |
| | | | F51:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | | | 83:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | | tuple-ids=64 row-size=8B cardinality=7.30K
| | | | in pipelines: 83(GETNEXT)
| | | |
| | | 82:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM]
| | | HDFS partitions=1/1 files=3 size=96.62MB
| | | stored statistics:
| | | table: rows=1.44M size=96.62MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | | mem-estimate=144.00MB mem-reservation=4.00MB thread-reservation=1
| | | tuple-ids=63 row-size=12B cardinality=1.44M
| | | in pipelines: 82(GETNEXT)
| | |
| | 81:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash predicates: ss_sold_date_sk = d_date_sk
| | | fk/pk conjuncts: ss_sold_date_sk = d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=61,62 row-size=20B cardinality=2.88M
| | | in pipelines: 79(GETNEXT), 80(OPEN)
| | |
| | |--146:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=62 row-size=8B cardinality=7.30K
| | | | in pipelines: 80(GETNEXT)
| | | |
| | | F49:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | | 80:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=62 row-size=8B cardinality=7.30K
| | | in pipelines: 80(GETNEXT)
| | |
| | 79:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
| | HDFS partitions=1824/1824 files=1824 size=200.95MB
| | stored statistics:
| | table: rows=2.88M size=200.95MB
| | partitions: 1824/1824 rows=2.88M
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=130.09K
| | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=61 row-size=12B cardinality=2.88M
| | in pipelines: 79(GETNEXT)
| |
| 145:AGGREGATE [FINALIZE]
| | output: sum:merge(ss_quantity * ss_list_price), count:merge(*)
| | group by: i_brand_id, i_class_id, i_category_id
| | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=59 row-size=36B cardinality=271
| | in pipelines: 145(GETNEXT), 45(OPEN)
| |
| 144:EXCHANGE [HASH(i_brand_id,i_class_id,i_category_id)]
| | mem-estimate=34.93KB mem-reservation=0B thread-reservation=0
| | tuple-ids=59 row-size=36B cardinality=271
| | in pipelines: 45(GETNEXT)
| |
| F28:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| Per-Host Resources: mem-estimate=67.87MB mem-reservation=11.75MB thread-reservation=2 runtime-filters-memory=1.00MB
| 77:AGGREGATE [STREAMING]
| | output: sum(CAST(ss_quantity AS DECIMAL(10,0)) * ss_list_price), count(*)
| | group by: i_brand_id, i_class_id, i_category_id
| | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=59 row-size=36B cardinality=271
| | in pipelines: 45(GETNEXT)
| |
| 76:HASH JOIN [LEFT SEMI JOIN, BROADCAST]
| | hash predicates: d_week_seq = d_week_seq
| | runtime filters: RF050[bloom] <- d_week_seq
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38,39 row-size=48B cardinality=271
| | in pipelines: 45(GETNEXT), 71(OPEN)
| |
| |--143:EXCHANGE [BROADCAST]
| | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=57 row-size=16B cardinality=1
| | | in pipelines: 71(GETNEXT)
| | |
| | F46:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| | Per-Host Resources: mem-estimate=16.00KB mem-reservation=0B thread-reservation=1
| | 71:CARDINALITY CHECK
| | | limit: 1
| | | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | | tuple-ids=57 row-size=16B cardinality=1
| | | in pipelines: 71(GETNEXT), 70(OPEN)
| | |
| | 142:EXCHANGE [UNPARTITIONED]
| | | limit: 2
| | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=57 row-size=16B cardinality=2
| | | in pipelines: 70(GETNEXT)
| | |
| | F45:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Host Resources: mem-estimate=64.00MB mem-reservation=512.00KB thread-reservation=2
| | 70:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | predicates: d_year = CAST(1999 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | parquet statistics predicates: d_year = CAST(1999 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| | parquet dictionary predicates: d_year = CAST(1999 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| | limit: 2
| | mem-estimate=64.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=57 row-size=16B cardinality=2
| | in pipelines: 70(GETNEXT)
| |
| 75:HASH JOIN [LEFT SEMI JOIN, BROADCAST]
| | hash predicates: ss_item_sk = tpcds_parquet.item.i_item_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38,39 row-size=48B cardinality=2.88M
| | in pipelines: 45(GETNEXT), 140(OPEN)
| |
| |--141:EXCHANGE [BROADCAST]
| | | mem-estimate=176.43KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=114 row-size=8B cardinality=17.98K
| | | in pipelines: 140(GETNEXT)
| | |
| | F44:PLAN FRAGMENT [HASH(tpcds_parquet.item.i_item_sk)] hosts=3 instances=3
| | Per-Host Resources: mem-estimate=10.08MB mem-reservation=1.94MB thread-reservation=1
| | 140:AGGREGATE [FINALIZE]
| | | group by: tpcds_parquet.item.i_item_sk
| | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=114 row-size=8B cardinality=17.98K
| | | in pipelines: 140(GETNEXT), 127(OPEN)
| | |
| | 139:EXCHANGE [HASH(tpcds_parquet.item.i_item_sk)]
| | | mem-estimate=82.81KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=114 row-size=8B cardinality=17.98K
| | | in pipelines: 127(GETNEXT)
| | |
| | F34:PLAN FRAGMENT [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)] hosts=3 instances=3
| | Per-Host Resources: mem-estimate=28.29MB mem-reservation=9.75MB thread-reservation=1
| | 74:AGGREGATE [STREAMING]
| | | group by: tpcds_parquet.item.i_item_sk
| | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=114 row-size=8B cardinality=17.98K
| | | in pipelines: 127(GETNEXT)
| | |
| | 69:HASH JOIN [INNER JOIN, PARTITIONED]
| | | hash predicates: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | | fk/pk conjuncts: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=44,40 row-size=32B cardinality=148.80K
| | | in pipelines: 127(GETNEXT), 48(OPEN)
| | |
| | |--138:EXCHANGE [HASH(i_brand_id,i_class_id,i_category_id)]
| | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=40 row-size=20B cardinality=18.00K
| | | | in pipelines: 48(GETNEXT)
| | | |
| | | F43:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Host Resources: mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=2
| | | 48:SCAN HDFS [tpcds_parquet.item, RANDOM]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | tuple-ids=40 row-size=20B cardinality=18.00K
| | | in pipelines: 48(GETNEXT)
| | |
| | 68:HASH JOIN [LEFT SEMI JOIN, PARTITIONED]
| | | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM iws.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM iws.i_category_id, iss.i_class_id IS NOT DISTINCT FROM iws.i_class_id
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 127(GETNEXT), 136(OPEN)
| | |
| | |--137:EXCHANGE [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)]
| | | | mem-estimate=903.88KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=112 row-size=12B cardinality=148.80K
| | | | in pipelines: 136(GETNEXT)
| | | |
| | | F42:PLAN FRAGMENT [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)] hosts=2 instances=2
| | | Per-Host Resources: mem-estimate=10.88MB mem-reservation=1.94MB thread-reservation=1
| | | 136:AGGREGATE [FINALIZE]
| | | | group by: iws.i_brand_id, iws.i_class_id, iws.i_category_id
| | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=112 row-size=12B cardinality=148.80K
| | | | in pipelines: 136(GETNEXT), 60(OPEN)
| | | |
| | | 135:EXCHANGE [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)]
| | | | mem-estimate=903.88KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=112 row-size=12B cardinality=148.80K
| | | | in pipelines: 60(GETNEXT)
| | | |
| | | F39:PLAN FRAGMENT [RANDOM] hosts=2 instances=2
| | | Per-Host Resources: mem-estimate=78.31MB mem-reservation=10.88MB thread-reservation=2
| | | 67:AGGREGATE [STREAMING]
| | | | group by: iws.i_brand_id, iws.i_class_id, iws.i_category_id
| | | | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | | | tuple-ids=112 row-size=12B cardinality=148.80K
| | | | in pipelines: 60(GETNEXT)
| | | |
| | | 64:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash predicates: ws_sold_date_sk = d3.d_date_sk
| | | | fk/pk conjuncts: ws_sold_date_sk = d3.d_date_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=50,51,52 row-size=40B cardinality=719.38K
| | | | in pipelines: 60(GETNEXT), 62(OPEN)
| | | |
| | | |--134:EXCHANGE [BROADCAST]
| | | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=52 row-size=8B cardinality=7.30K
| | | | | in pipelines: 62(GETNEXT)
| | | | |
| | | | F41:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | | | 62:SCAN HDFS [tpcds_parquet.date_dim d3, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | | tuple-ids=52 row-size=8B cardinality=7.30K
| | | | in pipelines: 62(GETNEXT)
| | | |
| | | 63:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash predicates: ws_item_sk = iws.i_item_sk
| | | | fk/pk conjuncts: ws_item_sk = iws.i_item_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=50,51 row-size=32B cardinality=719.38K
| | | | in pipelines: 60(GETNEXT), 61(OPEN)
| | | |
| | | |--133:EXCHANGE [BROADCAST]
| | | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=51 row-size=20B cardinality=18.00K
| | | | | in pipelines: 61(GETNEXT)
| | | | |
| | | | F40:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Host Resources: mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=2
| | | | 61:SCAN HDFS [tpcds_parquet.item iws, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=1.73MB
| | | | stored statistics:
| | | | table: rows=18.00K size=1.73MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | | tuple-ids=51 row-size=20B cardinality=18.00K
| | | | in pipelines: 61(GETNEXT)
| | | |
| | | 60:SCAN HDFS [tpcds_parquet.web_sales, RANDOM]
| | | HDFS partitions=1/1 files=2 size=45.09MB
| | | stored statistics:
| | | table: rows=719.38K size=45.09MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | | mem-estimate=64.00MB mem-reservation=4.00MB thread-reservation=1
| | | tuple-ids=50 row-size=12B cardinality=719.38K
| | | in pipelines: 60(GETNEXT)
| | |
| | 66:HASH JOIN [LEFT SEMI JOIN, PARTITIONED]
| | | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM ics.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM ics.i_category_id, iss.i_class_id IS NOT DISTINCT FROM ics.i_class_id
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 127(GETNEXT), 131(OPEN)
| | |
| | |--132:EXCHANGE [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)]
| | | | mem-estimate=629.25KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=111 row-size=12B cardinality=148.80K
| | | | in pipelines: 131(GETNEXT)
| | | |
| | | F38:PLAN FRAGMENT [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)] hosts=3 instances=3
| | | Per-Host Resources: mem-estimate=10.61MB mem-reservation=1.94MB thread-reservation=1
| | | 131:AGGREGATE [FINALIZE]
| | | | group by: ics.i_brand_id, ics.i_class_id, ics.i_category_id
| | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=111 row-size=12B cardinality=148.80K
| | | | in pipelines: 131(GETNEXT), 55(OPEN)
| | | |
| | | 130:EXCHANGE [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)]
| | | | mem-estimate=629.25KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=111 row-size=12B cardinality=148.80K
| | | | in pipelines: 55(GETNEXT)
| | | |
| | | F35:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | Per-Host Resources: mem-estimate=110.31MB mem-reservation=10.88MB thread-reservation=2
| | | 65:AGGREGATE [STREAMING]
| | | | group by: ics.i_brand_id, ics.i_class_id, ics.i_category_id
| | | | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | | | tuple-ids=111 row-size=12B cardinality=148.80K
| | | | in pipelines: 55(GETNEXT)
| | | |
| | | 59:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash predicates: cs_sold_date_sk = d2.d_date_sk
| | | | fk/pk conjuncts: cs_sold_date_sk = d2.d_date_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=46,47,48 row-size=40B cardinality=1.44M
| | | | in pipelines: 55(GETNEXT), 57(OPEN)
| | | |
| | | |--129:EXCHANGE [BROADCAST]
| | | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=48 row-size=8B cardinality=7.30K
| | | | | in pipelines: 57(GETNEXT)
| | | | |
| | | | F37:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | | | 57:SCAN HDFS [tpcds_parquet.date_dim d2, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | | tuple-ids=48 row-size=8B cardinality=7.30K
| | | | in pipelines: 57(GETNEXT)
| | | |
| | | 58:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash predicates: cs_item_sk = ics.i_item_sk
| | | | fk/pk conjuncts: cs_item_sk = ics.i_item_sk
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=46,47 row-size=32B cardinality=1.44M
| | | | in pipelines: 55(GETNEXT), 56(OPEN)
| | | |
| | | |--128:EXCHANGE [BROADCAST]
| | | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=47 row-size=20B cardinality=18.00K
| | | | | in pipelines: 56(GETNEXT)
| | | | |
| | | | F36:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Host Resources: mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=2
| | | | 56:SCAN HDFS [tpcds_parquet.item ics, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=1.73MB
| | | | stored statistics:
| | | | table: rows=18.00K size=1.73MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | | tuple-ids=47 row-size=20B cardinality=18.00K
| | | | in pipelines: 56(GETNEXT)
| | | |
| | | 55:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM]
| | | HDFS partitions=1/1 files=3 size=96.62MB
| | | stored statistics:
| | | table: rows=1.44M size=96.62MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | | mem-estimate=96.00MB mem-reservation=4.00MB thread-reservation=1
| | | tuple-ids=46 row-size=12B cardinality=1.44M
| | | in pipelines: 55(GETNEXT)
| | |
| | 127:AGGREGATE [FINALIZE]
| | | group by: iss.i_brand_id, iss.i_class_id, iss.i_category_id
| | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 127(GETNEXT), 49(OPEN)
| | |
| | 126:EXCHANGE [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)]
| | | mem-estimate=629.25KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 49(GETNEXT)
| | |
| | F31:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | Per-Host Resources: mem-estimate=30.31MB mem-reservation=7.38MB thread-reservation=2
| | 54:AGGREGATE [STREAMING]
| | | group by: iss.i_brand_id, iss.i_class_id, iss.i_category_id
| | | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 49(GETNEXT)
| | |
| | 53:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash predicates: ss_sold_date_sk = d1.d_date_sk
| | | fk/pk conjuncts: ss_sold_date_sk = d1.d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=41,42,43 row-size=40B cardinality=2.88M
| | | in pipelines: 49(GETNEXT), 51(OPEN)
| | |
| | |--125:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=43 row-size=8B cardinality=7.30K
| | | | in pipelines: 51(GETNEXT)
| | | |
| | | F33:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | | 51:SCAN HDFS [tpcds_parquet.date_dim d1, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=43 row-size=8B cardinality=7.30K
| | | in pipelines: 51(GETNEXT)
| | |
| | 52:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash predicates: ss_item_sk = iss.i_item_sk
| | | fk/pk conjuncts: ss_item_sk = iss.i_item_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=41,42 row-size=32B cardinality=2.88M
| | | in pipelines: 49(GETNEXT), 50(OPEN)
| | |
| | |--124:EXCHANGE [BROADCAST]
| | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=42 row-size=20B cardinality=18.00K
| | | | in pipelines: 50(GETNEXT)
| | | |
| | | F32:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Host Resources: mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=2
| | | 50:SCAN HDFS [tpcds_parquet.item iss, RANDOM]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | tuple-ids=42 row-size=20B cardinality=18.00K
| | | in pipelines: 50(GETNEXT)
| | |
| | 49:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
| | HDFS partitions=1824/1824 files=1824 size=200.95MB
| | stored statistics:
| | table: rows=2.88M size=200.95MB
| | partitions: 1824/1824 rows=2.88M
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=130.09K
| | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=41 row-size=12B cardinality=2.88M
| | in pipelines: 49(GETNEXT)
| |
| 73:HASH JOIN [INNER JOIN, BROADCAST]
| | hash predicates: ss_sold_date_sk = d_date_sk
| | fk/pk conjuncts: ss_sold_date_sk = d_date_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38,39 row-size=48B cardinality=2.88M
| | in pipelines: 45(GETNEXT), 47(OPEN)
| |
| |--123:EXCHANGE [BROADCAST]
| | | mem-estimate=582.70KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=39 row-size=8B cardinality=73.05K
| | | in pipelines: 47(GETNEXT)
| | |
| | F30:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Host Resources: mem-estimate=33.00MB mem-reservation=1.50MB thread-reservation=2 runtime-filters-memory=1.00MB
| | 47:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | runtime filters: RF050[bloom] -> d_week_seq
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=39 row-size=8B cardinality=73.05K
| | in pipelines: 47(GETNEXT)
| |
| 72:HASH JOIN [INNER JOIN, BROADCAST]
| | hash predicates: ss_item_sk = i_item_sk
| | fk/pk conjuncts: ss_item_sk = i_item_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38 row-size=40B cardinality=2.88M
| | in pipelines: 45(GETNEXT), 46(OPEN)
| |
| |--122:EXCHANGE [BROADCAST]
| | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=38 row-size=20B cardinality=18.00K
| | | in pipelines: 46(GETNEXT)
| | |
| | F29:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Host Resources: mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=2
| | 46:SCAN HDFS [tpcds_parquet.item, RANDOM]
| | HDFS partitions=1/1 files=1 size=1.73MB
| | stored statistics:
| | table: rows=18.00K size=1.73MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | tuple-ids=38 row-size=20B cardinality=18.00K
| | in pipelines: 46(GETNEXT)
| |
| 45:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
| HDFS partitions=1824/1824 files=1824 size=200.95MB
| stored statistics:
| table: rows=2.88M size=200.95MB
| partitions: 1824/1824 rows=2.88M
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=130.09K
| mem-estimate=48.00MB mem-reservation=1.00MB thread-reservation=1
| tuple-ids=37 row-size=20B cardinality=2.88M
| in pipelines: 45(GETNEXT)
|
44:NESTED LOOP JOIN [INNER JOIN, BROADCAST]
| predicates: sum(ss_quantity * ss_list_price) > avg(quantity * list_price)
| mem-estimate=16B mem-reservation=0B thread-reservation=0
| tuple-ids=22,33 row-size=52B cardinality=271
| in pipelines: 115(GETNEXT), 120(OPEN)
|
|--121:EXCHANGE [BROADCAST]
| | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | tuple-ids=33 row-size=16B cardinality=1
| | in pipelines: 120(GETNEXT)
| |
| F27:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| Per-Host Resources: mem-estimate=10.02MB mem-reservation=0B thread-reservation=1
| 120:AGGREGATE [FINALIZE]
| | output: avg:merge(quantity * list_price)
| | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
| | tuple-ids=33 row-size=16B cardinality=1
| | in pipelines: 120(GETNEXT), 43(OPEN)
| |
| 119:EXCHANGE [UNPARTITIONED]
| | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | tuple-ids=32 row-size=16B cardinality=1
| | in pipelines: 43(GETNEXT)
| |
| F26:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| Per-Host Resources: mem-estimate=156.00MB mem-reservation=5.94MB thread-reservation=2
| 43:AGGREGATE
| | output: avg(CAST(quantity AS DECIMAL(10,0)) * list_price)
| | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
| | tuple-ids=32 row-size=16B cardinality=1
| | in pipelines: 43(GETNEXT), 34(OPEN), 37(OPEN), 40(OPEN)
| |
| 33:UNION
| | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | tuple-ids=30 row-size=8B cardinality=5.04M
| | in pipelines: 34(GETNEXT), 37(GETNEXT), 40(GETNEXT)
| |
| |--42:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash predicates: ws_sold_date_sk = d_date_sk
| | | fk/pk conjuncts: ws_sold_date_sk = d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=28,29 row-size=20B cardinality=719.38K
| | | in pipelines: 40(GETNEXT), 41(OPEN)
| | |
| | |--118:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=29 row-size=8B cardinality=7.30K
| | | | in pipelines: 41(GETNEXT)
| | | |
| | | F25:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | | 41:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=29 row-size=8B cardinality=7.30K
| | | in pipelines: 41(GETNEXT)
| | |
| | 40:SCAN HDFS [tpcds_parquet.web_sales, RANDOM]
| | HDFS partitions=1/1 files=2 size=45.09MB
| | stored statistics:
| | table: rows=719.38K size=45.09MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | mem-estimate=96.00MB mem-reservation=4.00MB thread-reservation=1
| | tuple-ids=28 row-size=12B cardinality=719.38K
| | in pipelines: 40(GETNEXT)
| |
| |--39:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash predicates: cs_sold_date_sk = d_date_sk
| | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=26,27 row-size=20B cardinality=1.44M
| | | in pipelines: 37(GETNEXT), 38(OPEN)
| | |
| | |--117:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=27 row-size=8B cardinality=7.30K
| | | | in pipelines: 38(GETNEXT)
| | | |
| | | F23:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | | 38:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=27 row-size=8B cardinality=7.30K
| | | in pipelines: 38(GETNEXT)
| | |
| | 37:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM]
| | HDFS partitions=1/1 files=3 size=96.62MB
| | stored statistics:
| | table: rows=1.44M size=96.62MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | mem-estimate=144.00MB mem-reservation=4.00MB thread-reservation=1
| | tuple-ids=26 row-size=12B cardinality=1.44M
| | in pipelines: 37(GETNEXT)
| |
| 36:HASH JOIN [INNER JOIN, BROADCAST]
| | hash predicates: ss_sold_date_sk = d_date_sk
| | fk/pk conjuncts: ss_sold_date_sk = d_date_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=24,25 row-size=20B cardinality=2.88M
| | in pipelines: 34(GETNEXT), 35(OPEN)
| |
| |--116:EXCHANGE [BROADCAST]
| | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=25 row-size=8B cardinality=7.30K
| | | in pipelines: 35(GETNEXT)
| | |
| | F21:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | 35:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=25 row-size=8B cardinality=7.30K
| | in pipelines: 35(GETNEXT)
| |
| 34:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
| HDFS partitions=1824/1824 files=1824 size=200.95MB
| stored statistics:
| table: rows=2.88M size=200.95MB
| partitions: 1824/1824 rows=2.88M
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=130.09K
| mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=24 row-size=12B cardinality=2.88M
| in pipelines: 34(GETNEXT)
|
115:AGGREGATE [FINALIZE]
| output: sum:merge(ss_quantity * ss_list_price), count:merge(*)
| group by: i_brand_id, i_class_id, i_category_id
| mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=22 row-size=36B cardinality=271
| in pipelines: 115(GETNEXT), 00(OPEN)
|
114:EXCHANGE [HASH(i_brand_id,i_class_id,i_category_id)]
| mem-estimate=34.93KB mem-reservation=0B thread-reservation=0
| tuple-ids=22 row-size=36B cardinality=271
| in pipelines: 00(GETNEXT)
|
F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
Per-Host Resources: mem-estimate=70.87MB mem-reservation=14.75MB thread-reservation=2 runtime-filters-memory=4.00MB
32:AGGREGATE [STREAMING]
| output: sum(CAST(ss_quantity AS DECIMAL(10,0)) * ss_list_price), count(*)
| group by: i_brand_id, i_class_id, i_category_id
| mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=22 row-size=36B cardinality=271
| in pipelines: 00(GETNEXT)
|
31:HASH JOIN [LEFT SEMI JOIN, BROADCAST]
| hash predicates: d_week_seq = d_week_seq
| runtime filters: RF006[bloom] <- d_week_seq
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,1,2 row-size=48B cardinality=271
| in pipelines: 00(GETNEXT), 26(OPEN)
|
|--113:EXCHANGE [BROADCAST]
| | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | tuple-ids=20 row-size=16B cardinality=1
| | in pipelines: 26(GETNEXT)
| |
| F18:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| Per-Host Resources: mem-estimate=16.00KB mem-reservation=0B thread-reservation=1
| 26:CARDINALITY CHECK
| | limit: 1
| | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | tuple-ids=20 row-size=16B cardinality=1
| | in pipelines: 26(GETNEXT), 25(OPEN)
| |
| 112:EXCHANGE [UNPARTITIONED]
| | limit: 2
| | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | tuple-ids=20 row-size=16B cardinality=2
| | in pipelines: 25(GETNEXT)
| |
| F17:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Host Resources: mem-estimate=64.00MB mem-reservation=512.00KB thread-reservation=2
| 25:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| HDFS partitions=1/1 files=1 size=2.15MB
| predicates: d_year = CAST(2000 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| stored statistics:
| table: rows=73.05K size=2.15MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=73.05K
| parquet statistics predicates: d_year = CAST(2000 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| parquet dictionary predicates: d_year = CAST(2000 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| limit: 2
| mem-estimate=64.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=20 row-size=16B cardinality=2
| in pipelines: 25(GETNEXT)
|
30:HASH JOIN [LEFT SEMI JOIN, BROADCAST]
| hash predicates: ss_item_sk = tpcds_parquet.item.i_item_sk
| runtime filters: RF008[bloom] <- tpcds_parquet.item.i_item_sk
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,1,2 row-size=48B cardinality=2.88M
| in pipelines: 00(GETNEXT), 110(OPEN)
|
|--111:EXCHANGE [BROADCAST]
| | mem-estimate=176.43KB mem-reservation=0B thread-reservation=0
| | tuple-ids=91 row-size=8B cardinality=17.98K
| | in pipelines: 110(GETNEXT)
| |
| F16:PLAN FRAGMENT [HASH(tpcds_parquet.item.i_item_sk)] hosts=3 instances=3
| Per-Host Resources: mem-estimate=10.08MB mem-reservation=1.94MB thread-reservation=1
| 110:AGGREGATE [FINALIZE]
| | group by: tpcds_parquet.item.i_item_sk
| | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=91 row-size=8B cardinality=17.98K
| | in pipelines: 110(GETNEXT), 97(OPEN)
| |
| 109:EXCHANGE [HASH(tpcds_parquet.item.i_item_sk)]
| | mem-estimate=82.81KB mem-reservation=0B thread-reservation=0
| | tuple-ids=91 row-size=8B cardinality=17.98K
| | in pipelines: 97(GETNEXT)
| |
| F06:PLAN FRAGMENT [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)] hosts=3 instances=3
| Per-Host Resources: mem-estimate=30.29MB mem-reservation=11.75MB thread-reservation=1 runtime-filters-memory=2.00MB
| 29:AGGREGATE [STREAMING]
| | group by: tpcds_parquet.item.i_item_sk
| | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=91 row-size=8B cardinality=17.98K
| | in pipelines: 97(GETNEXT)
| |
| 24:HASH JOIN [INNER JOIN, PARTITIONED]
| | hash predicates: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | fk/pk conjuncts: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | runtime filters: RF014[bloom] <- i_brand_id, RF015[bloom] <- i_category_id
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=7,3 row-size=32B cardinality=148.80K
| | in pipelines: 97(GETNEXT), 03(OPEN)
| |
| |--108:EXCHANGE [HASH(i_brand_id,i_class_id,i_category_id)]
| | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=3 row-size=20B cardinality=18.00K
| | | in pipelines: 03(GETNEXT)
| | |
| | F15:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Host Resources: mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=2
| | 03:SCAN HDFS [tpcds_parquet.item, RANDOM]
| | HDFS partitions=1/1 files=1 size=1.73MB
| | stored statistics:
| | table: rows=18.00K size=1.73MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | tuple-ids=3 row-size=20B cardinality=18.00K
| | in pipelines: 03(GETNEXT)
| |
| 23:HASH JOIN [LEFT SEMI JOIN, PARTITIONED]
| | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM iws.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM iws.i_category_id, iss.i_class_id IS NOT DISTINCT FROM iws.i_class_id
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 97(GETNEXT), 106(OPEN)
| |
| |--107:EXCHANGE [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)]
| | | mem-estimate=903.88KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=89 row-size=12B cardinality=148.80K
| | | in pipelines: 106(GETNEXT)
| | |
| | F14:PLAN FRAGMENT [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)] hosts=2 instances=2
| | Per-Host Resources: mem-estimate=10.88MB mem-reservation=1.94MB thread-reservation=1
| | 106:AGGREGATE [FINALIZE]
| | | group by: iws.i_brand_id, iws.i_class_id, iws.i_category_id
| | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=89 row-size=12B cardinality=148.80K
| | | in pipelines: 106(GETNEXT), 15(OPEN)
| | |
| | 105:EXCHANGE [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)]
| | | mem-estimate=903.88KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=89 row-size=12B cardinality=148.80K
| | | in pipelines: 15(GETNEXT)
| | |
| | F11:PLAN FRAGMENT [RANDOM] hosts=2 instances=2
| | Per-Host Resources: mem-estimate=78.31MB mem-reservation=10.88MB thread-reservation=2
| | 22:AGGREGATE [STREAMING]
| | | group by: iws.i_brand_id, iws.i_class_id, iws.i_category_id
| | | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=89 row-size=12B cardinality=148.80K
| | | in pipelines: 15(GETNEXT)
| | |
| | 19:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash predicates: ws_sold_date_sk = d3.d_date_sk
| | | fk/pk conjuncts: ws_sold_date_sk = d3.d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=13,14,15 row-size=40B cardinality=719.38K
| | | in pipelines: 15(GETNEXT), 17(OPEN)
| | |
| | |--104:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=15 row-size=8B cardinality=7.30K
| | | | in pipelines: 17(GETNEXT)
| | | |
| | | F13:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | | 17:SCAN HDFS [tpcds_parquet.date_dim d3, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=15 row-size=8B cardinality=7.30K
| | | in pipelines: 17(GETNEXT)
| | |
| | 18:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash predicates: ws_item_sk = iws.i_item_sk
| | | fk/pk conjuncts: ws_item_sk = iws.i_item_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=13,14 row-size=32B cardinality=719.38K
| | | in pipelines: 15(GETNEXT), 16(OPEN)
| | |
| | |--103:EXCHANGE [BROADCAST]
| | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=14 row-size=20B cardinality=18.00K
| | | | in pipelines: 16(GETNEXT)
| | | |
| | | F12:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Host Resources: mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=2
| | | 16:SCAN HDFS [tpcds_parquet.item iws, RANDOM]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | tuple-ids=14 row-size=20B cardinality=18.00K
| | | in pipelines: 16(GETNEXT)
| | |
| | 15:SCAN HDFS [tpcds_parquet.web_sales, RANDOM]
| | HDFS partitions=1/1 files=2 size=45.09MB
| | stored statistics:
| | table: rows=719.38K size=45.09MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | mem-estimate=64.00MB mem-reservation=4.00MB thread-reservation=1
| | tuple-ids=13 row-size=12B cardinality=719.38K
| | in pipelines: 15(GETNEXT)
| |
| 21:HASH JOIN [LEFT SEMI JOIN, PARTITIONED]
| | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM ics.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM ics.i_category_id, iss.i_class_id IS NOT DISTINCT FROM ics.i_class_id
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 97(GETNEXT), 101(OPEN)
| |
| |--102:EXCHANGE [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)]
| | | mem-estimate=629.25KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=88 row-size=12B cardinality=148.80K
| | | in pipelines: 101(GETNEXT)
| | |
| | F10:PLAN FRAGMENT [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)] hosts=3 instances=3
| | Per-Host Resources: mem-estimate=10.61MB mem-reservation=1.94MB thread-reservation=1
| | 101:AGGREGATE [FINALIZE]
| | | group by: ics.i_brand_id, ics.i_class_id, ics.i_category_id
| | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=88 row-size=12B cardinality=148.80K
| | | in pipelines: 101(GETNEXT), 10(OPEN)
| | |
| | 100:EXCHANGE [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)]
| | | mem-estimate=629.25KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=88 row-size=12B cardinality=148.80K
| | | in pipelines: 10(GETNEXT)
| | |
| | F07:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | Per-Host Resources: mem-estimate=110.31MB mem-reservation=10.88MB thread-reservation=2
| | 20:AGGREGATE [STREAMING]
| | | group by: ics.i_brand_id, ics.i_class_id, ics.i_category_id
| | | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=88 row-size=12B cardinality=148.80K
| | | in pipelines: 10(GETNEXT)
| | |
| | 14:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash predicates: cs_sold_date_sk = d2.d_date_sk
| | | fk/pk conjuncts: cs_sold_date_sk = d2.d_date_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=9,10,11 row-size=40B cardinality=1.44M
| | | in pipelines: 10(GETNEXT), 12(OPEN)
| | |
| | |--99:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=11 row-size=8B cardinality=7.30K
| | | | in pipelines: 12(GETNEXT)
| | | |
| | | F09:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | | 12:SCAN HDFS [tpcds_parquet.date_dim d2, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | | tuple-ids=11 row-size=8B cardinality=7.30K
| | | in pipelines: 12(GETNEXT)
| | |
| | 13:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash predicates: cs_item_sk = ics.i_item_sk
| | | fk/pk conjuncts: cs_item_sk = ics.i_item_sk
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=9,10 row-size=32B cardinality=1.44M
| | | in pipelines: 10(GETNEXT), 11(OPEN)
| | |
| | |--98:EXCHANGE [BROADCAST]
| | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=10 row-size=20B cardinality=18.00K
| | | | in pipelines: 11(GETNEXT)
| | | |
| | | F08:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Host Resources: mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=2
| | | 11:SCAN HDFS [tpcds_parquet.item ics, RANDOM]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | | tuple-ids=10 row-size=20B cardinality=18.00K
| | | in pipelines: 11(GETNEXT)
| | |
| | 10:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM]
| | HDFS partitions=1/1 files=3 size=96.62MB
| | stored statistics:
| | table: rows=1.44M size=96.62MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | mem-estimate=96.00MB mem-reservation=4.00MB thread-reservation=1
| | tuple-ids=9 row-size=12B cardinality=1.44M
| | in pipelines: 10(GETNEXT)
| |
| 97:AGGREGATE [FINALIZE]
| | group by: iss.i_brand_id, iss.i_class_id, iss.i_category_id
| | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 97(GETNEXT), 04(OPEN)
| |
| 96:EXCHANGE [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)]
| | mem-estimate=629.25KB mem-reservation=0B thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 04(GETNEXT)
| |
| F03:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| Per-Host Resources: mem-estimate=30.31MB mem-reservation=7.38MB thread-reservation=2
| 09:AGGREGATE [STREAMING]
| | group by: iss.i_brand_id, iss.i_class_id, iss.i_category_id
| | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 04(GETNEXT)
| |
| 08:HASH JOIN [INNER JOIN, BROADCAST]
| | hash predicates: ss_sold_date_sk = d1.d_date_sk
| | fk/pk conjuncts: ss_sold_date_sk = d1.d_date_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=4,5,6 row-size=40B cardinality=2.88M
| | in pipelines: 04(GETNEXT), 06(OPEN)
| |
| |--95:EXCHANGE [BROADCAST]
| | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=6 row-size=8B cardinality=7.30K
| | | in pipelines: 06(GETNEXT)
| | |
| | F05:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Host Resources: mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=2
| | 06:SCAN HDFS [tpcds_parquet.date_dim d1, RANDOM]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | parquet statistics predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | parquet dictionary predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| | tuple-ids=6 row-size=8B cardinality=7.30K
| | in pipelines: 06(GETNEXT)
| |
| 07:HASH JOIN [INNER JOIN, BROADCAST]
| | hash predicates: ss_item_sk = iss.i_item_sk
| | fk/pk conjuncts: ss_item_sk = iss.i_item_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=4,5 row-size=32B cardinality=2.88M
| | in pipelines: 04(GETNEXT), 05(OPEN)
| |
| |--94:EXCHANGE [BROADCAST]
| | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=5 row-size=20B cardinality=18.00K
| | | in pipelines: 05(GETNEXT)
| | |
| | F04:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Host Resources: mem-estimate=66.00MB mem-reservation=2.25MB thread-reservation=2 runtime-filters-memory=2.00MB
| | 05:SCAN HDFS [tpcds_parquet.item iss, RANDOM]
| | HDFS partitions=1/1 files=1 size=1.73MB
| | runtime filters: RF014[bloom] -> iss.i_brand_id, RF015[bloom] -> iss.i_category_id
| | stored statistics:
| | table: rows=18.00K size=1.73MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| | tuple-ids=5 row-size=20B cardinality=18.00K
| | in pipelines: 05(GETNEXT)
| |
| 04:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
| HDFS partitions=1824/1824 files=1824 size=200.95MB
| stored statistics:
| table: rows=2.88M size=200.95MB
| partitions: 1824/1824 rows=2.88M
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=130.09K
| mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=4 row-size=12B cardinality=2.88M
| in pipelines: 04(GETNEXT)
|
28:HASH JOIN [INNER JOIN, BROADCAST]
| hash predicates: ss_sold_date_sk = d_date_sk
| fk/pk conjuncts: ss_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 thread-reservation=0
| tuple-ids=0,1,2 row-size=48B cardinality=2.88M
| in pipelines: 00(GETNEXT), 02(OPEN)
|
|--93:EXCHANGE [BROADCAST]
| | mem-estimate=582.70KB mem-reservation=0B thread-reservation=0
| | tuple-ids=2 row-size=8B cardinality=73.05K
| | in pipelines: 02(GETNEXT)
| |
| F02:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Host Resources: mem-estimate=33.00MB mem-reservation=1.50MB thread-reservation=2 runtime-filters-memory=1.00MB
| 02:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| HDFS partitions=1/1 files=1 size=2.15MB
| runtime filters: RF006[bloom] -> d_week_seq
| stored statistics:
| table: rows=73.05K size=2.15MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=73.05K
| mem-estimate=32.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=2 row-size=8B cardinality=73.05K
| in pipelines: 02(GETNEXT)
|
27:HASH JOIN [INNER JOIN, BROADCAST]
| hash predicates: ss_item_sk = i_item_sk
| fk/pk conjuncts: ss_item_sk = i_item_sk
| runtime filters: RF012[bloom] <- i_item_sk
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,1 row-size=40B cardinality=2.88M
| in pipelines: 00(GETNEXT), 01(OPEN)
|
|--92:EXCHANGE [BROADCAST]
| | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | tuple-ids=1 row-size=20B cardinality=18.00K
| | in pipelines: 01(GETNEXT)
| |
| F01:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Host Resources: mem-estimate=68.00MB mem-reservation=4.25MB thread-reservation=2 runtime-filters-memory=4.00MB
| 01:SCAN HDFS [tpcds_parquet.item, RANDOM]
| HDFS partitions=1/1 files=1 size=1.73MB
| runtime filters: RF000[bloom] -> tpcds_parquet.item.i_brand_id, RF001[bloom] -> tpcds_parquet.item.i_category_id, RF002[bloom] -> tpcds_parquet.item.i_class_id, RF008[bloom] -> tpcds_parquet.item.i_item_sk
| stored statistics:
| table: rows=18.00K size=1.73MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=18.00K
| mem-estimate=64.00MB mem-reservation=256.00KB thread-reservation=1
| tuple-ids=1 row-size=20B cardinality=18.00K
| in pipelines: 01(GETNEXT)
|
00:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
HDFS partitions=1824/1824 files=1824 size=200.95MB
runtime filters: RF008[bloom] -> ss_item_sk, RF010[bloom] -> ss_sold_date_sk, RF012[bloom] -> ss_item_sk
stored statistics:
table: rows=2.88M size=200.95MB
partitions: 1824/1824 rows=2.88M
columns: all
extrapolated-rows=disabled max-scan-range-rows=130.09K
mem-estimate=48.00MB mem-reservation=1.00MB thread-reservation=1
tuple-ids=0 row-size=20B cardinality=2.88M
in pipelines: 00(GETNEXT)
---- PARALLELPLANS
Max Per-Host Resource Reservation: Memory=273.38MB Threads=103
Per-Host Resource Estimates: Memory=1.42GB
F56:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| Per-Instance Resources: mem-estimate=16.00KB mem-reservation=0B thread-reservation=1
PLAN-ROOT SINK
| output exprs: channel, i_brand_id, i_class_id, i_category_id, sales, number_sales, channel, i_brand_id, i_class_id, i_category_id, sales, number_sales
| mem-estimate=0B mem-reservation=0B thread-reservation=0
|
152:MERGING-EXCHANGE [UNPARTITIONED]
| order by: channel ASC, i_brand_id ASC, i_class_id ASC, i_category_id ASC
| limit: 100
| mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| tuple-ids=74 row-size=96B cardinality=5
| in pipelines: 91(GETNEXT)
|
F19:PLAN FRAGMENT [HASH(i_brand_id,i_class_id,i_category_id)] hosts=3 instances=6
Per-Instance Resources: mem-estimate=10.07MB mem-reservation=1.94MB thread-reservation=1
91:TOP-N [LIMIT=100]
| order by: channel ASC, i_brand_id ASC, i_class_id ASC, i_category_id ASC
| mem-estimate=480B mem-reservation=0B thread-reservation=0
| tuple-ids=74 row-size=96B cardinality=5
| in pipelines: 91(GETNEXT), 115(OPEN)
|
90:HASH JOIN [INNER JOIN, PARTITIONED]
| hash-table-id=00
| hash predicates: i_brand_id = i_brand_id, i_category_id = i_category_id, i_class_id = i_class_id
| fk/pk conjuncts: i_brand_id = i_brand_id, i_category_id = i_category_id, i_class_id = i_class_id
| mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| tuple-ids=22,33,59,70 row-size=104B cardinality=5
| in pipelines: 115(GETNEXT), 145(OPEN)
|
|--F57:PLAN FRAGMENT [HASH(i_brand_id,i_class_id,i_category_id)] hosts=3 instances=6
| | Per-Instance Resources: mem-estimate=14.94MB mem-reservation=6.88MB thread-reservation=1 runtime-filters-memory=3.00MB
| JOIN BUILD
| | join-table-id=00 plan-id=01 cohort-id=01
| | build expressions: i_brand_id, i_category_id, i_class_id
| | runtime filters: RF000[bloom] <- i_brand_id, RF001[bloom] <- i_category_id, RF002[bloom] <- i_class_id
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| |
| 89:NESTED LOOP JOIN [INNER JOIN, BROADCAST]
| | join table id: 01
| | predicates: sum(ss_quantity * ss_list_price) > avg(quantity * list_price)
| | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | tuple-ids=59,70 row-size=52B cardinality=271
| | in pipelines: 145(GETNEXT), 150(OPEN)
| |
| |--F58:PLAN FRAGMENT [HASH(i_brand_id,i_class_id,i_category_id)] hosts=3 instances=3
| | | Per-Instance Resources: mem-estimate=16.02KB mem-reservation=0B thread-reservation=1
| | JOIN BUILD
| | | join-table-id=01 plan-id=02 cohort-id=02
| | | mem-estimate=16B mem-reservation=0B thread-reservation=0
| | |
| | 151:EXCHANGE [BROADCAST]
| | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=70 row-size=16B cardinality=1
| | | in pipelines: 150(GETNEXT)
| | |
| | F55:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| | Per-Instance Resources: mem-estimate=10.02MB mem-reservation=0B thread-reservation=1
| | 150:AGGREGATE [FINALIZE]
| | | output: avg:merge(quantity * list_price)
| | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
| | | tuple-ids=70 row-size=16B cardinality=1
| | | in pipelines: 150(GETNEXT), 88(OPEN)
| | |
| | 149:EXCHANGE [UNPARTITIONED]
| | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=69 row-size=16B cardinality=1
| | | in pipelines: 88(GETNEXT)
| | |
| | F54:PLAN FRAGMENT [RANDOM] hosts=3 instances=6
| | Per-Instance Resources: mem-estimate=58.00MB mem-reservation=4.00MB thread-reservation=1
| | 88:AGGREGATE
| | | output: avg(CAST(quantity AS DECIMAL(10,0)) * list_price)
| | | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
| | | tuple-ids=69 row-size=16B cardinality=1
| | | in pipelines: 88(GETNEXT), 79(OPEN), 82(OPEN), 85(OPEN)
| | |
| | 78:UNION
| | | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | | tuple-ids=67 row-size=8B cardinality=5.04M
| | | in pipelines: 79(GETNEXT), 82(GETNEXT), 85(GETNEXT)
| | |
| | |--87:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash-table-id=04
| | | | hash predicates: ws_sold_date_sk = d_date_sk
| | | | fk/pk conjuncts: ws_sold_date_sk = d_date_sk
| | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=65,66 row-size=20B cardinality=719.38K
| | | | in pipelines: 85(GETNEXT), 86(OPEN)
| | | |
| | | |--F61:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | | | JOIN BUILD
| | | | | join-table-id=04 plan-id=05 cohort-id=03
| | | | | build expressions: d_date_sk
| | | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | | |
| | | | 148:EXCHANGE [BROADCAST]
| | | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=66 row-size=8B cardinality=7.30K
| | | | | in pipelines: 86(GETNEXT)
| | | | |
| | | | F53:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | | | 86:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | | | tuple-ids=66 row-size=8B cardinality=7.30K
| | | | in pipelines: 86(GETNEXT)
| | | |
| | | 85:SCAN HDFS [tpcds_parquet.web_sales, RANDOM]
| | | HDFS partitions=1/1 files=2 size=45.09MB
| | | stored statistics:
| | | table: rows=719.38K size=45.09MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | | mem-estimate=32.00MB mem-reservation=4.00MB thread-reservation=0
| | | tuple-ids=65 row-size=12B cardinality=719.38K
| | | in pipelines: 85(GETNEXT)
| | |
| | |--84:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash-table-id=03
| | | | hash predicates: cs_sold_date_sk = d_date_sk
| | | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk
| | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=63,64 row-size=20B cardinality=1.44M
| | | | in pipelines: 82(GETNEXT), 83(OPEN)
| | | |
| | | |--F60:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | | | JOIN BUILD
| | | | | join-table-id=03 plan-id=04 cohort-id=03
| | | | | build expressions: d_date_sk
| | | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | | |
| | | | 147:EXCHANGE [BROADCAST]
| | | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=64 row-size=8B cardinality=7.30K
| | | | | in pipelines: 83(GETNEXT)
| | | | |
| | | | F51:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | | | 83:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | | | tuple-ids=64 row-size=8B cardinality=7.30K
| | | | in pipelines: 83(GETNEXT)
| | | |
| | | 82:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM]
| | | HDFS partitions=1/1 files=3 size=96.62MB
| | | stored statistics:
| | | table: rows=1.44M size=96.62MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | | mem-estimate=48.00MB mem-reservation=4.00MB thread-reservation=0
| | | tuple-ids=63 row-size=12B cardinality=1.44M
| | | in pipelines: 82(GETNEXT)
| | |
| | 81:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash-table-id=02
| | | hash predicates: ss_sold_date_sk = d_date_sk
| | | fk/pk conjuncts: ss_sold_date_sk = d_date_sk
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=61,62 row-size=20B cardinality=2.88M
| | | in pipelines: 79(GETNEXT), 80(OPEN)
| | |
| | |--F59:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=02 plan-id=03 cohort-id=03
| | | | build expressions: d_date_sk
| | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 146:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=62 row-size=8B cardinality=7.30K
| | | | in pipelines: 80(GETNEXT)
| | | |
| | | F49:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | | 80:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | | tuple-ids=62 row-size=8B cardinality=7.30K
| | | in pipelines: 80(GETNEXT)
| | |
| | 79:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
| | HDFS partitions=1824/1824 files=1824 size=200.95MB
| | stored statistics:
| | table: rows=2.88M size=200.95MB
| | partitions: 1824/1824 rows=2.88M
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=130.09K
| | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | tuple-ids=61 row-size=12B cardinality=2.88M
| | in pipelines: 79(GETNEXT)
| |
| 145:AGGREGATE [FINALIZE]
| | output: sum:merge(ss_quantity * ss_list_price), count:merge(*)
| | group by: i_brand_id, i_class_id, i_category_id
| | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=59 row-size=36B cardinality=271
| | in pipelines: 145(GETNEXT), 45(OPEN)
| |
| 144:EXCHANGE [HASH(i_brand_id,i_class_id,i_category_id)]
| | mem-estimate=66.69KB mem-reservation=0B thread-reservation=0
| | tuple-ids=59 row-size=36B cardinality=271
| | in pipelines: 45(GETNEXT)
| |
| F28:PLAN FRAGMENT [RANDOM] hosts=3 instances=6
| Per-Instance Resources: mem-estimate=26.00MB mem-reservation=3.00MB thread-reservation=1
| 77:AGGREGATE [STREAMING]
| | output: sum(CAST(ss_quantity AS DECIMAL(10,0)) * ss_list_price), count(*)
| | group by: i_brand_id, i_class_id, i_category_id
| | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=59 row-size=36B cardinality=271
| | in pipelines: 45(GETNEXT)
| |
| 76:HASH JOIN [LEFT SEMI JOIN, BROADCAST]
| | hash-table-id=05
| | hash predicates: d_week_seq = d_week_seq
| | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38,39 row-size=48B cardinality=271
| | in pipelines: 45(GETNEXT), 71(OPEN)
| |
| |--F62:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | Per-Instance Resources: mem-estimate=4.89MB mem-reservation=4.88MB thread-reservation=1 runtime-filters-memory=1.00MB
| | JOIN BUILD
| | | join-table-id=05 plan-id=06 cohort-id=02
| | | build expressions: d_week_seq
| | | runtime filters: RF050[bloom] <- d_week_seq
| | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | |
| | 143:EXCHANGE [BROADCAST]
| | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=57 row-size=16B cardinality=1
| | | in pipelines: 71(GETNEXT)
| | |
| | F46:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| | Per-Instance Resources: mem-estimate=16.00KB mem-reservation=0B thread-reservation=1
| | 71:CARDINALITY CHECK
| | | limit: 1
| | | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | | tuple-ids=57 row-size=16B cardinality=1
| | | in pipelines: 71(GETNEXT), 70(OPEN)
| | |
| | 142:EXCHANGE [UNPARTITIONED]
| | | limit: 2
| | | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=57 row-size=16B cardinality=2
| | | in pipelines: 70(GETNEXT)
| | |
| | F45:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | 70:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | predicates: d_year = CAST(1999 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | parquet statistics predicates: d_year = CAST(1999 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| | parquet dictionary predicates: d_year = CAST(1999 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| | limit: 2
| | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | tuple-ids=57 row-size=16B cardinality=2
| | in pipelines: 70(GETNEXT)
| |
| 75:HASH JOIN [LEFT SEMI JOIN, BROADCAST]
| | hash-table-id=06
| | hash predicates: ss_item_sk = tpcds_parquet.item.i_item_sk
| | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38,39 row-size=48B cardinality=2.88M
| | in pipelines: 45(GETNEXT), 140(OPEN)
| |
| |--F63:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | Per-Instance Resources: mem-estimate=4.08MB mem-reservation=3.88MB thread-reservation=1
| | JOIN BUILD
| | | join-table-id=06 plan-id=07 cohort-id=02
| | | build expressions: tpcds_parquet.item.i_item_sk
| | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | |
| | 141:EXCHANGE [BROADCAST]
| | | mem-estimate=212.43KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=114 row-size=8B cardinality=17.98K
| | | in pipelines: 140(GETNEXT)
| | |
| | F44:PLAN FRAGMENT [HASH(tpcds_parquet.item.i_item_sk)] hosts=3 instances=6
| | Per-Instance Resources: mem-estimate=10.12MB mem-reservation=1.94MB thread-reservation=1
| | 140:AGGREGATE [FINALIZE]
| | | group by: tpcds_parquet.item.i_item_sk
| | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=114 row-size=8B cardinality=17.98K
| | | in pipelines: 140(GETNEXT), 127(OPEN)
| | |
| | 139:EXCHANGE [HASH(tpcds_parquet.item.i_item_sk)]
| | | mem-estimate=118.81KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=114 row-size=8B cardinality=17.98K
| | | in pipelines: 127(GETNEXT)
| | |
| | F34:PLAN FRAGMENT [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)] hosts=3 instances=6
| | Per-Instance Resources: mem-estimate=20.66MB mem-reservation=3.94MB thread-reservation=1
| | 74:AGGREGATE [STREAMING]
| | | group by: tpcds_parquet.item.i_item_sk
| | | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=114 row-size=8B cardinality=17.98K
| | | in pipelines: 127(GETNEXT)
| | |
| | 69:HASH JOIN [INNER JOIN, PARTITIONED]
| | | hash-table-id=07
| | | hash predicates: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | | fk/pk conjuncts: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=44,40 row-size=32B cardinality=148.80K
| | | in pipelines: 127(GETNEXT), 48(OPEN)
| | |
| | |--F64:PLAN FRAGMENT [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)] hosts=3 instances=6
| | | | Per-Instance Resources: mem-estimate=2.30MB mem-reservation=1.94MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=07 plan-id=08 cohort-id=04
| | | | build expressions: i_brand_id, i_category_id, i_class_id
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 138:EXCHANGE [HASH(i_brand_id,i_class_id,i_category_id)]
| | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=40 row-size=20B cardinality=18.00K
| | | | in pipelines: 48(GETNEXT)
| | | |
| | | F43:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=1
| | | 48:SCAN HDFS [tpcds_parquet.item, RANDOM]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=0
| | | tuple-ids=40 row-size=20B cardinality=18.00K
| | | in pipelines: 48(GETNEXT)
| | |
| | 68:HASH JOIN [LEFT SEMI JOIN, PARTITIONED]
| | | hash-table-id=08
| | | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM iws.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM iws.i_category_id, iss.i_class_id IS NOT DISTINCT FROM iws.i_class_id
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 127(GETNEXT), 136(OPEN)
| | |
| | |--F65:PLAN FRAGMENT [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)] hosts=3 instances=6
| | | | Per-Instance Resources: mem-estimate=2.82MB mem-reservation=1.94MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=08 plan-id=09 cohort-id=04
| | | | build expressions: iws.i_brand_id, iws.i_category_id, iws.i_class_id
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 137:EXCHANGE [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)]
| | | | mem-estimate=903.88KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=112 row-size=12B cardinality=148.80K
| | | | in pipelines: 136(GETNEXT)
| | | |
| | | F42:PLAN FRAGMENT [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)] hosts=2 instances=2
| | | Per-Instance Resources: mem-estimate=10.88MB mem-reservation=1.94MB thread-reservation=1
| | | 136:AGGREGATE [FINALIZE]
| | | | group by: iws.i_brand_id, iws.i_class_id, iws.i_category_id
| | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=112 row-size=12B cardinality=148.80K
| | | | in pipelines: 136(GETNEXT), 60(OPEN)
| | | |
| | | 135:EXCHANGE [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)]
| | | | mem-estimate=903.88KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=112 row-size=12B cardinality=148.80K
| | | | in pipelines: 60(GETNEXT)
| | | |
| | | F39:PLAN FRAGMENT [RANDOM] hosts=2 instances=2
| | | Per-Instance Resources: mem-estimate=42.00MB mem-reservation=7.00MB thread-reservation=1
| | | 67:AGGREGATE [STREAMING]
| | | | group by: iws.i_brand_id, iws.i_class_id, iws.i_category_id
| | | | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | | | tuple-ids=112 row-size=12B cardinality=148.80K
| | | | in pipelines: 60(GETNEXT)
| | | |
| | | 64:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash-table-id=09
| | | | hash predicates: ws_sold_date_sk = d3.d_date_sk
| | | | fk/pk conjuncts: ws_sold_date_sk = d3.d_date_sk
| | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=50,51,52 row-size=40B cardinality=719.38K
| | | | in pipelines: 60(GETNEXT), 62(OPEN)
| | | |
| | | |--F66:PLAN FRAGMENT [RANDOM] hosts=2 instances=2
| | | | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | | | JOIN BUILD
| | | | | join-table-id=09 plan-id=10 cohort-id=05
| | | | | build expressions: d3.d_date_sk
| | | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | | |
| | | | 134:EXCHANGE [BROADCAST]
| | | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=52 row-size=8B cardinality=7.30K
| | | | | in pipelines: 62(GETNEXT)
| | | | |
| | | | F41:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | | | 62:SCAN HDFS [tpcds_parquet.date_dim d3, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | | | tuple-ids=52 row-size=8B cardinality=7.30K
| | | | in pipelines: 62(GETNEXT)
| | | |
| | | 63:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash-table-id=10
| | | | hash predicates: ws_item_sk = iws.i_item_sk
| | | | fk/pk conjuncts: ws_item_sk = iws.i_item_sk
| | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=50,51 row-size=32B cardinality=719.38K
| | | | in pipelines: 60(GETNEXT), 61(OPEN)
| | | |
| | | |--F67:PLAN FRAGMENT [RANDOM] hosts=2 instances=2
| | | | | Per-Instance Resources: mem-estimate=4.24MB mem-reservation=3.88MB thread-reservation=1
| | | | JOIN BUILD
| | | | | join-table-id=10 plan-id=11 cohort-id=05
| | | | | build expressions: iws.i_item_sk
| | | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | | |
| | | | 133:EXCHANGE [BROADCAST]
| | | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=51 row-size=20B cardinality=18.00K
| | | | | in pipelines: 61(GETNEXT)
| | | | |
| | | | F40:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=1
| | | | 61:SCAN HDFS [tpcds_parquet.item iws, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=1.73MB
| | | | stored statistics:
| | | | table: rows=18.00K size=1.73MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | | mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=0
| | | | tuple-ids=51 row-size=20B cardinality=18.00K
| | | | in pipelines: 61(GETNEXT)
| | | |
| | | 60:SCAN HDFS [tpcds_parquet.web_sales, RANDOM]
| | | HDFS partitions=1/1 files=2 size=45.09MB
| | | stored statistics:
| | | table: rows=719.38K size=45.09MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | | mem-estimate=32.00MB mem-reservation=4.00MB thread-reservation=0
| | | tuple-ids=50 row-size=12B cardinality=719.38K
| | | in pipelines: 60(GETNEXT)
| | |
| | 66:HASH JOIN [LEFT SEMI JOIN, PARTITIONED]
| | | hash-table-id=11
| | | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM ics.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM ics.i_category_id, iss.i_class_id IS NOT DISTINCT FROM ics.i_class_id
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 127(GETNEXT), 131(OPEN)
| | |
| | |--F68:PLAN FRAGMENT [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)] hosts=3 instances=6
| | | | Per-Instance Resources: mem-estimate=2.55MB mem-reservation=1.94MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=11 plan-id=12 cohort-id=04
| | | | build expressions: ics.i_brand_id, ics.i_category_id, ics.i_class_id
| | | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 132:EXCHANGE [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)]
| | | | mem-estimate=629.25KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=111 row-size=12B cardinality=148.80K
| | | | in pipelines: 131(GETNEXT)
| | | |
| | | F38:PLAN FRAGMENT [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)] hosts=3 instances=3
| | | Per-Instance Resources: mem-estimate=10.61MB mem-reservation=1.94MB thread-reservation=1
| | | 131:AGGREGATE [FINALIZE]
| | | | group by: ics.i_brand_id, ics.i_class_id, ics.i_category_id
| | | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=111 row-size=12B cardinality=148.80K
| | | | in pipelines: 131(GETNEXT), 55(OPEN)
| | | |
| | | 130:EXCHANGE [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)]
| | | | mem-estimate=629.25KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=111 row-size=12B cardinality=148.80K
| | | | in pipelines: 55(GETNEXT)
| | | |
| | | F35:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | Per-Instance Resources: mem-estimate=58.00MB mem-reservation=7.00MB thread-reservation=1
| | | 65:AGGREGATE [STREAMING]
| | | | group by: ics.i_brand_id, ics.i_class_id, ics.i_category_id
| | | | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | | | tuple-ids=111 row-size=12B cardinality=148.80K
| | | | in pipelines: 55(GETNEXT)
| | | |
| | | 59:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash-table-id=12
| | | | hash predicates: cs_sold_date_sk = d2.d_date_sk
| | | | fk/pk conjuncts: cs_sold_date_sk = d2.d_date_sk
| | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=46,47,48 row-size=40B cardinality=1.44M
| | | | in pipelines: 55(GETNEXT), 57(OPEN)
| | | |
| | | |--F69:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | | | JOIN BUILD
| | | | | join-table-id=12 plan-id=13 cohort-id=06
| | | | | build expressions: d2.d_date_sk
| | | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | | |
| | | | 129:EXCHANGE [BROADCAST]
| | | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=48 row-size=8B cardinality=7.30K
| | | | | in pipelines: 57(GETNEXT)
| | | | |
| | | | F37:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | | | 57:SCAN HDFS [tpcds_parquet.date_dim d2, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=2.15MB
| | | | predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | | stored statistics:
| | | | table: rows=73.05K size=2.15MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | | parquet statistics predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | | parquet dictionary predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | | | tuple-ids=48 row-size=8B cardinality=7.30K
| | | | in pipelines: 57(GETNEXT)
| | | |
| | | 58:HASH JOIN [INNER JOIN, BROADCAST]
| | | | hash-table-id=13
| | | | hash predicates: cs_item_sk = ics.i_item_sk
| | | | fk/pk conjuncts: cs_item_sk = ics.i_item_sk
| | | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | | tuple-ids=46,47 row-size=32B cardinality=1.44M
| | | | in pipelines: 55(GETNEXT), 56(OPEN)
| | | |
| | | |--F70:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | | Per-Instance Resources: mem-estimate=4.24MB mem-reservation=3.88MB thread-reservation=1
| | | | JOIN BUILD
| | | | | join-table-id=13 plan-id=14 cohort-id=06
| | | | | build expressions: ics.i_item_sk
| | | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | | |
| | | | 128:EXCHANGE [BROADCAST]
| | | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | | tuple-ids=47 row-size=20B cardinality=18.00K
| | | | | in pipelines: 56(GETNEXT)
| | | | |
| | | | F36:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=1
| | | | 56:SCAN HDFS [tpcds_parquet.item ics, RANDOM]
| | | | HDFS partitions=1/1 files=1 size=1.73MB
| | | | stored statistics:
| | | | table: rows=18.00K size=1.73MB
| | | | columns: all
| | | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | | mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=0
| | | | tuple-ids=47 row-size=20B cardinality=18.00K
| | | | in pipelines: 56(GETNEXT)
| | | |
| | | 55:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM]
| | | HDFS partitions=1/1 files=3 size=96.62MB
| | | stored statistics:
| | | table: rows=1.44M size=96.62MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | | mem-estimate=48.00MB mem-reservation=4.00MB thread-reservation=0
| | | tuple-ids=46 row-size=12B cardinality=1.44M
| | | in pipelines: 55(GETNEXT)
| | |
| | 127:AGGREGATE [FINALIZE]
| | | group by: iss.i_brand_id, iss.i_class_id, iss.i_category_id
| | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 127(GETNEXT), 49(OPEN)
| | |
| | 126:EXCHANGE [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)]
| | | mem-estimate=677.25KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 49(GETNEXT)
| | |
| | F31:PLAN FRAGMENT [RANDOM] hosts=3 instances=6
| | Per-Instance Resources: mem-estimate=26.00MB mem-reservation=3.50MB thread-reservation=1
| | 54:AGGREGATE [STREAMING]
| | | group by: iss.i_brand_id, iss.i_class_id, iss.i_category_id
| | | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=44 row-size=12B cardinality=148.80K
| | | in pipelines: 49(GETNEXT)
| | |
| | 53:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash-table-id=14
| | | hash predicates: ss_sold_date_sk = d1.d_date_sk
| | | fk/pk conjuncts: ss_sold_date_sk = d1.d_date_sk
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=41,42,43 row-size=40B cardinality=2.88M
| | | in pipelines: 49(GETNEXT), 51(OPEN)
| | |
| | |--F71:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=14 plan-id=15 cohort-id=04
| | | | build expressions: d1.d_date_sk
| | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 125:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=43 row-size=8B cardinality=7.30K
| | | | in pipelines: 51(GETNEXT)
| | | |
| | | F33:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | | 51:SCAN HDFS [tpcds_parquet.date_dim d1, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | | tuple-ids=43 row-size=8B cardinality=7.30K
| | | in pipelines: 51(GETNEXT)
| | |
| | 52:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash-table-id=15
| | | hash predicates: ss_item_sk = iss.i_item_sk
| | | fk/pk conjuncts: ss_item_sk = iss.i_item_sk
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=41,42 row-size=32B cardinality=2.88M
| | | in pipelines: 49(GETNEXT), 50(OPEN)
| | |
| | |--F72:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | Per-Instance Resources: mem-estimate=4.24MB mem-reservation=3.88MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=15 plan-id=16 cohort-id=04
| | | | build expressions: iss.i_item_sk
| | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 124:EXCHANGE [BROADCAST]
| | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=42 row-size=20B cardinality=18.00K
| | | | in pipelines: 50(GETNEXT)
| | | |
| | | F32:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=1
| | | 50:SCAN HDFS [tpcds_parquet.item iss, RANDOM]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=0
| | | tuple-ids=42 row-size=20B cardinality=18.00K
| | | in pipelines: 50(GETNEXT)
| | |
| | 49:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
| | HDFS partitions=1824/1824 files=1824 size=200.95MB
| | stored statistics:
| | table: rows=2.88M size=200.95MB
| | partitions: 1824/1824 rows=2.88M
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=130.09K
| | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | tuple-ids=41 row-size=12B cardinality=2.88M
| | in pipelines: 49(GETNEXT)
| |
| 73:HASH JOIN [INNER JOIN, BROADCAST]
| | hash-table-id=16
| | hash predicates: ss_sold_date_sk = d_date_sk
| | fk/pk conjuncts: ss_sold_date_sk = d_date_sk
| | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38,39 row-size=48B cardinality=2.88M
| | in pipelines: 45(GETNEXT), 47(OPEN)
| |
| |--F73:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | Per-Instance Resources: mem-estimate=4.44MB mem-reservation=3.88MB thread-reservation=1
| | JOIN BUILD
| | | join-table-id=16 plan-id=17 cohort-id=02
| | | build expressions: d_date_sk
| | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | |
| | 123:EXCHANGE [BROADCAST]
| | | mem-estimate=582.70KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=39 row-size=8B cardinality=73.05K
| | | in pipelines: 47(GETNEXT)
| | |
| | F30:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Host Shared Resources: mem-estimate=1.00MB mem-reservation=1.00MB thread-reservation=0 runtime-filters-memory=1.00MB
| | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | 47:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | runtime filters: RF050[bloom] -> d_week_seq
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | tuple-ids=39 row-size=8B cardinality=73.05K
| | in pipelines: 47(GETNEXT)
| |
| 72:HASH JOIN [INNER JOIN, BROADCAST]
| | hash-table-id=17
| | hash predicates: ss_item_sk = i_item_sk
| | fk/pk conjuncts: ss_item_sk = i_item_sk
| | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=37,38 row-size=40B cardinality=2.88M
| | in pipelines: 45(GETNEXT), 46(OPEN)
| |
| |--F74:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | Per-Instance Resources: mem-estimate=4.24MB mem-reservation=3.88MB thread-reservation=1
| | JOIN BUILD
| | | join-table-id=17 plan-id=18 cohort-id=02
| | | build expressions: i_item_sk
| | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | |
| | 122:EXCHANGE [BROADCAST]
| | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=38 row-size=20B cardinality=18.00K
| | | in pipelines: 46(GETNEXT)
| | |
| | F29:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=1
| | 46:SCAN HDFS [tpcds_parquet.item, RANDOM]
| | HDFS partitions=1/1 files=1 size=1.73MB
| | stored statistics:
| | table: rows=18.00K size=1.73MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=0
| | tuple-ids=38 row-size=20B cardinality=18.00K
| | in pipelines: 46(GETNEXT)
| |
| 45:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
| HDFS partitions=1824/1824 files=1824 size=200.95MB
| stored statistics:
| table: rows=2.88M size=200.95MB
| partitions: 1824/1824 rows=2.88M
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=130.09K
| mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0
| tuple-ids=37 row-size=20B cardinality=2.88M
| in pipelines: 45(GETNEXT)
|
44:NESTED LOOP JOIN [INNER JOIN, BROADCAST]
| join table id: 18
| predicates: sum(ss_quantity * ss_list_price) > avg(quantity * list_price)
| mem-estimate=0B mem-reservation=0B thread-reservation=0
| tuple-ids=22,33 row-size=52B cardinality=271
| in pipelines: 115(GETNEXT), 120(OPEN)
|
|--F75:PLAN FRAGMENT [HASH(i_brand_id,i_class_id,i_category_id)] hosts=3 instances=3
| | Per-Instance Resources: mem-estimate=16.02KB mem-reservation=0B thread-reservation=1
| JOIN BUILD
| | join-table-id=18 plan-id=19 cohort-id=01
| | mem-estimate=16B mem-reservation=0B thread-reservation=0
| |
| 121:EXCHANGE [BROADCAST]
| | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | tuple-ids=33 row-size=16B cardinality=1
| | in pipelines: 120(GETNEXT)
| |
| F27:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| Per-Instance Resources: mem-estimate=10.02MB mem-reservation=0B thread-reservation=1
| 120:AGGREGATE [FINALIZE]
| | output: avg:merge(quantity * list_price)
| | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
| | tuple-ids=33 row-size=16B cardinality=1
| | in pipelines: 120(GETNEXT), 43(OPEN)
| |
| 119:EXCHANGE [UNPARTITIONED]
| | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | tuple-ids=32 row-size=16B cardinality=1
| | in pipelines: 43(GETNEXT)
| |
| F26:PLAN FRAGMENT [RANDOM] hosts=3 instances=6
| Per-Instance Resources: mem-estimate=58.00MB mem-reservation=4.00MB thread-reservation=1
| 43:AGGREGATE
| | output: avg(CAST(quantity AS DECIMAL(10,0)) * list_price)
| | mem-estimate=10.00MB mem-reservation=0B spill-buffer=2.00MB thread-reservation=0
| | tuple-ids=32 row-size=16B cardinality=1
| | in pipelines: 43(GETNEXT), 34(OPEN), 37(OPEN), 40(OPEN)
| |
| 33:UNION
| | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | tuple-ids=30 row-size=8B cardinality=5.04M
| | in pipelines: 34(GETNEXT), 37(GETNEXT), 40(GETNEXT)
| |
| |--42:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash-table-id=21
| | | hash predicates: ws_sold_date_sk = d_date_sk
| | | fk/pk conjuncts: ws_sold_date_sk = d_date_sk
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=28,29 row-size=20B cardinality=719.38K
| | | in pipelines: 40(GETNEXT), 41(OPEN)
| | |
| | |--F78:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=21 plan-id=22 cohort-id=07
| | | | build expressions: d_date_sk
| | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 118:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=29 row-size=8B cardinality=7.30K
| | | | in pipelines: 41(GETNEXT)
| | | |
| | | F25:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | | 41:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | | tuple-ids=29 row-size=8B cardinality=7.30K
| | | in pipelines: 41(GETNEXT)
| | |
| | 40:SCAN HDFS [tpcds_parquet.web_sales, RANDOM]
| | HDFS partitions=1/1 files=2 size=45.09MB
| | stored statistics:
| | table: rows=719.38K size=45.09MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | mem-estimate=32.00MB mem-reservation=4.00MB thread-reservation=0
| | tuple-ids=28 row-size=12B cardinality=719.38K
| | in pipelines: 40(GETNEXT)
| |
| |--39:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash-table-id=20
| | | hash predicates: cs_sold_date_sk = d_date_sk
| | | fk/pk conjuncts: cs_sold_date_sk = d_date_sk
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=26,27 row-size=20B cardinality=1.44M
| | | in pipelines: 37(GETNEXT), 38(OPEN)
| | |
| | |--F77:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=20 plan-id=21 cohort-id=07
| | | | build expressions: d_date_sk
| | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 117:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=27 row-size=8B cardinality=7.30K
| | | | in pipelines: 38(GETNEXT)
| | | |
| | | F23:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | | 38:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | | tuple-ids=27 row-size=8B cardinality=7.30K
| | | in pipelines: 38(GETNEXT)
| | |
| | 37:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM]
| | HDFS partitions=1/1 files=3 size=96.62MB
| | stored statistics:
| | table: rows=1.44M size=96.62MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | mem-estimate=48.00MB mem-reservation=4.00MB thread-reservation=0
| | tuple-ids=26 row-size=12B cardinality=1.44M
| | in pipelines: 37(GETNEXT)
| |
| 36:HASH JOIN [INNER JOIN, BROADCAST]
| | hash-table-id=19
| | hash predicates: ss_sold_date_sk = d_date_sk
| | fk/pk conjuncts: ss_sold_date_sk = d_date_sk
| | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=24,25 row-size=20B cardinality=2.88M
| | in pipelines: 34(GETNEXT), 35(OPEN)
| |
| |--F76:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | JOIN BUILD
| | | join-table-id=19 plan-id=20 cohort-id=07
| | | build expressions: d_date_sk
| | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | |
| | 116:EXCHANGE [BROADCAST]
| | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=25 row-size=8B cardinality=7.30K
| | | in pipelines: 35(GETNEXT)
| | |
| | F21:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | 35:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | parquet statistics predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | parquet dictionary predicates: d_year <= CAST(2001 AS INT), d_year >= CAST(1999 AS INT)
| | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | tuple-ids=25 row-size=8B cardinality=7.30K
| | in pipelines: 35(GETNEXT)
| |
| 34:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
| HDFS partitions=1824/1824 files=1824 size=200.95MB
| stored statistics:
| table: rows=2.88M size=200.95MB
| partitions: 1824/1824 rows=2.88M
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=130.09K
| mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| tuple-ids=24 row-size=12B cardinality=2.88M
| in pipelines: 34(GETNEXT)
|
115:AGGREGATE [FINALIZE]
| output: sum:merge(ss_quantity * ss_list_price), count:merge(*)
| group by: i_brand_id, i_class_id, i_category_id
| mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=22 row-size=36B cardinality=271
| in pipelines: 115(GETNEXT), 00(OPEN)
|
114:EXCHANGE [HASH(i_brand_id,i_class_id,i_category_id)]
| mem-estimate=66.69KB mem-reservation=0B thread-reservation=0
| tuple-ids=22 row-size=36B cardinality=271
| in pipelines: 00(GETNEXT)
|
F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=6
Per-Host Shared Resources: mem-estimate=3.00MB mem-reservation=3.00MB thread-reservation=0 runtime-filters-memory=3.00MB
Per-Instance Resources: mem-estimate=26.00MB mem-reservation=3.00MB thread-reservation=1
32:AGGREGATE [STREAMING]
| output: sum(CAST(ss_quantity AS DECIMAL(10,0)) * ss_list_price), count(*)
| group by: i_brand_id, i_class_id, i_category_id
| mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=22 row-size=36B cardinality=271
| in pipelines: 00(GETNEXT)
|
31:HASH JOIN [LEFT SEMI JOIN, BROADCAST]
| hash-table-id=22
| hash predicates: d_week_seq = d_week_seq
| mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,1,2 row-size=48B cardinality=271
| in pipelines: 00(GETNEXT), 26(OPEN)
|
|--F79:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | Per-Instance Resources: mem-estimate=4.89MB mem-reservation=4.88MB thread-reservation=1 runtime-filters-memory=1.00MB
| JOIN BUILD
| | join-table-id=22 plan-id=23 cohort-id=01
| | build expressions: d_week_seq
| | runtime filters: RF006[bloom] <- d_week_seq
| | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| |
| 113:EXCHANGE [BROADCAST]
| | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | tuple-ids=20 row-size=16B cardinality=1
| | in pipelines: 26(GETNEXT)
| |
| F18:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| Per-Instance Resources: mem-estimate=16.00KB mem-reservation=0B thread-reservation=1
| 26:CARDINALITY CHECK
| | limit: 1
| | mem-estimate=0B mem-reservation=0B thread-reservation=0
| | tuple-ids=20 row-size=16B cardinality=1
| | in pipelines: 26(GETNEXT), 25(OPEN)
| |
| 112:EXCHANGE [UNPARTITIONED]
| | limit: 2
| | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | tuple-ids=20 row-size=16B cardinality=2
| | in pipelines: 25(GETNEXT)
| |
| F17:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| 25:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| HDFS partitions=1/1 files=1 size=2.15MB
| predicates: d_year = CAST(2000 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| stored statistics:
| table: rows=73.05K size=2.15MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=73.05K
| parquet statistics predicates: d_year = CAST(2000 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| parquet dictionary predicates: d_year = CAST(2000 AS INT), d_dom = CAST(11 AS INT), d_moy = CAST(12 AS INT)
| limit: 2
| mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| tuple-ids=20 row-size=16B cardinality=2
| in pipelines: 25(GETNEXT)
|
30:HASH JOIN [LEFT SEMI JOIN, BROADCAST]
| hash-table-id=23
| hash predicates: ss_item_sk = tpcds_parquet.item.i_item_sk
| mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,1,2 row-size=48B cardinality=2.88M
| in pipelines: 00(GETNEXT), 110(OPEN)
|
|--F80:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | Per-Instance Resources: mem-estimate=5.08MB mem-reservation=4.88MB thread-reservation=1 runtime-filters-memory=1.00MB
| JOIN BUILD
| | join-table-id=23 plan-id=24 cohort-id=01
| | build expressions: tpcds_parquet.item.i_item_sk
| | runtime filters: RF008[bloom] <- tpcds_parquet.item.i_item_sk
| | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| |
| 111:EXCHANGE [BROADCAST]
| | mem-estimate=212.43KB mem-reservation=0B thread-reservation=0
| | tuple-ids=91 row-size=8B cardinality=17.98K
| | in pipelines: 110(GETNEXT)
| |
| F16:PLAN FRAGMENT [HASH(tpcds_parquet.item.i_item_sk)] hosts=3 instances=6
| Per-Instance Resources: mem-estimate=10.12MB mem-reservation=1.94MB thread-reservation=1
| 110:AGGREGATE [FINALIZE]
| | group by: tpcds_parquet.item.i_item_sk
| | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=91 row-size=8B cardinality=17.98K
| | in pipelines: 110(GETNEXT), 97(OPEN)
| |
| 109:EXCHANGE [HASH(tpcds_parquet.item.i_item_sk)]
| | mem-estimate=118.81KB mem-reservation=0B thread-reservation=0
| | tuple-ids=91 row-size=8B cardinality=17.98K
| | in pipelines: 97(GETNEXT)
| |
| F06:PLAN FRAGMENT [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)] hosts=3 instances=6
| Per-Instance Resources: mem-estimate=20.66MB mem-reservation=3.94MB thread-reservation=1
| 29:AGGREGATE [STREAMING]
| | group by: tpcds_parquet.item.i_item_sk
| | mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=91 row-size=8B cardinality=17.98K
| | in pipelines: 97(GETNEXT)
| |
| 24:HASH JOIN [INNER JOIN, PARTITIONED]
| | hash-table-id=24
| | hash predicates: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | fk/pk conjuncts: iss.i_brand_id = i_brand_id, iss.i_category_id = i_category_id, iss.i_class_id = i_class_id
| | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=7,3 row-size=32B cardinality=148.80K
| | in pipelines: 97(GETNEXT), 03(OPEN)
| |
| |--F81:PLAN FRAGMENT [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)] hosts=3 instances=6
| | | Per-Instance Resources: mem-estimate=4.30MB mem-reservation=3.94MB thread-reservation=1 runtime-filters-memory=2.00MB
| | JOIN BUILD
| | | join-table-id=24 plan-id=25 cohort-id=08
| | | build expressions: i_brand_id, i_category_id, i_class_id
| | | runtime filters: RF014[bloom] <- i_brand_id, RF015[bloom] <- i_category_id
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | |
| | 108:EXCHANGE [HASH(i_brand_id,i_class_id,i_category_id)]
| | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=3 row-size=20B cardinality=18.00K
| | | in pipelines: 03(GETNEXT)
| | |
| | F15:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=1
| | 03:SCAN HDFS [tpcds_parquet.item, RANDOM]
| | HDFS partitions=1/1 files=1 size=1.73MB
| | stored statistics:
| | table: rows=18.00K size=1.73MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=0
| | tuple-ids=3 row-size=20B cardinality=18.00K
| | in pipelines: 03(GETNEXT)
| |
| 23:HASH JOIN [LEFT SEMI JOIN, PARTITIONED]
| | hash-table-id=25
| | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM iws.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM iws.i_category_id, iss.i_class_id IS NOT DISTINCT FROM iws.i_class_id
| | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 97(GETNEXT), 106(OPEN)
| |
| |--F82:PLAN FRAGMENT [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)] hosts=3 instances=6
| | | Per-Instance Resources: mem-estimate=2.82MB mem-reservation=1.94MB thread-reservation=1
| | JOIN BUILD
| | | join-table-id=25 plan-id=26 cohort-id=08
| | | build expressions: iws.i_brand_id, iws.i_category_id, iws.i_class_id
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | |
| | 107:EXCHANGE [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)]
| | | mem-estimate=903.88KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=89 row-size=12B cardinality=148.80K
| | | in pipelines: 106(GETNEXT)
| | |
| | F14:PLAN FRAGMENT [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)] hosts=2 instances=2
| | Per-Instance Resources: mem-estimate=10.88MB mem-reservation=1.94MB thread-reservation=1
| | 106:AGGREGATE [FINALIZE]
| | | group by: iws.i_brand_id, iws.i_class_id, iws.i_category_id
| | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=89 row-size=12B cardinality=148.80K
| | | in pipelines: 106(GETNEXT), 15(OPEN)
| | |
| | 105:EXCHANGE [HASH(iws.i_brand_id,iws.i_class_id,iws.i_category_id)]
| | | mem-estimate=903.88KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=89 row-size=12B cardinality=148.80K
| | | in pipelines: 15(GETNEXT)
| | |
| | F11:PLAN FRAGMENT [RANDOM] hosts=2 instances=2
| | Per-Instance Resources: mem-estimate=42.00MB mem-reservation=7.00MB thread-reservation=1
| | 22:AGGREGATE [STREAMING]
| | | group by: iws.i_brand_id, iws.i_class_id, iws.i_category_id
| | | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=89 row-size=12B cardinality=148.80K
| | | in pipelines: 15(GETNEXT)
| | |
| | 19:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash-table-id=26
| | | hash predicates: ws_sold_date_sk = d3.d_date_sk
| | | fk/pk conjuncts: ws_sold_date_sk = d3.d_date_sk
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=13,14,15 row-size=40B cardinality=719.38K
| | | in pipelines: 15(GETNEXT), 17(OPEN)
| | |
| | |--F83:PLAN FRAGMENT [RANDOM] hosts=2 instances=2
| | | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=26 plan-id=27 cohort-id=09
| | | | build expressions: d3.d_date_sk
| | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 104:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=15 row-size=8B cardinality=7.30K
| | | | in pipelines: 17(GETNEXT)
| | | |
| | | F13:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | | 17:SCAN HDFS [tpcds_parquet.date_dim d3, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d3.d_year <= CAST(2001 AS INT), d3.d_year >= CAST(1999 AS INT)
| | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | | tuple-ids=15 row-size=8B cardinality=7.30K
| | | in pipelines: 17(GETNEXT)
| | |
| | 18:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash-table-id=27
| | | hash predicates: ws_item_sk = iws.i_item_sk
| | | fk/pk conjuncts: ws_item_sk = iws.i_item_sk
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=13,14 row-size=32B cardinality=719.38K
| | | in pipelines: 15(GETNEXT), 16(OPEN)
| | |
| | |--F84:PLAN FRAGMENT [RANDOM] hosts=2 instances=2
| | | | Per-Instance Resources: mem-estimate=4.24MB mem-reservation=3.88MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=27 plan-id=28 cohort-id=09
| | | | build expressions: iws.i_item_sk
| | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 103:EXCHANGE [BROADCAST]
| | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=14 row-size=20B cardinality=18.00K
| | | | in pipelines: 16(GETNEXT)
| | | |
| | | F12:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=1
| | | 16:SCAN HDFS [tpcds_parquet.item iws, RANDOM]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=0
| | | tuple-ids=14 row-size=20B cardinality=18.00K
| | | in pipelines: 16(GETNEXT)
| | |
| | 15:SCAN HDFS [tpcds_parquet.web_sales, RANDOM]
| | HDFS partitions=1/1 files=2 size=45.09MB
| | stored statistics:
| | table: rows=719.38K size=45.09MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=644.77K
| | mem-estimate=32.00MB mem-reservation=4.00MB thread-reservation=0
| | tuple-ids=13 row-size=12B cardinality=719.38K
| | in pipelines: 15(GETNEXT)
| |
| 21:HASH JOIN [LEFT SEMI JOIN, PARTITIONED]
| | hash-table-id=28
| | hash predicates: iss.i_brand_id IS NOT DISTINCT FROM ics.i_brand_id, iss.i_category_id IS NOT DISTINCT FROM ics.i_category_id, iss.i_class_id IS NOT DISTINCT FROM ics.i_class_id
| | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 97(GETNEXT), 101(OPEN)
| |
| |--F85:PLAN FRAGMENT [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)] hosts=3 instances=6
| | | Per-Instance Resources: mem-estimate=2.55MB mem-reservation=1.94MB thread-reservation=1
| | JOIN BUILD
| | | join-table-id=28 plan-id=29 cohort-id=08
| | | build expressions: ics.i_brand_id, ics.i_category_id, ics.i_class_id
| | | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | |
| | 102:EXCHANGE [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)]
| | | mem-estimate=629.25KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=88 row-size=12B cardinality=148.80K
| | | in pipelines: 101(GETNEXT)
| | |
| | F10:PLAN FRAGMENT [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)] hosts=3 instances=3
| | Per-Instance Resources: mem-estimate=10.61MB mem-reservation=1.94MB thread-reservation=1
| | 101:AGGREGATE [FINALIZE]
| | | group by: ics.i_brand_id, ics.i_class_id, ics.i_category_id
| | | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=88 row-size=12B cardinality=148.80K
| | | in pipelines: 101(GETNEXT), 10(OPEN)
| | |
| | 100:EXCHANGE [HASH(ics.i_brand_id,ics.i_class_id,ics.i_category_id)]
| | | mem-estimate=629.25KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=88 row-size=12B cardinality=148.80K
| | | in pipelines: 10(GETNEXT)
| | |
| | F07:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | Per-Instance Resources: mem-estimate=58.00MB mem-reservation=7.00MB thread-reservation=1
| | 20:AGGREGATE [STREAMING]
| | | group by: ics.i_brand_id, ics.i_class_id, ics.i_category_id
| | | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | | tuple-ids=88 row-size=12B cardinality=148.80K
| | | in pipelines: 10(GETNEXT)
| | |
| | 14:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash-table-id=29
| | | hash predicates: cs_sold_date_sk = d2.d_date_sk
| | | fk/pk conjuncts: cs_sold_date_sk = d2.d_date_sk
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=9,10,11 row-size=40B cardinality=1.44M
| | | in pipelines: 10(GETNEXT), 12(OPEN)
| | |
| | |--F86:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=29 plan-id=30 cohort-id=10
| | | | build expressions: d2.d_date_sk
| | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 99:EXCHANGE [BROADCAST]
| | | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=11 row-size=8B cardinality=7.30K
| | | | in pipelines: 12(GETNEXT)
| | | |
| | | F09:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | | 12:SCAN HDFS [tpcds_parquet.date_dim d2, RANDOM]
| | | HDFS partitions=1/1 files=1 size=2.15MB
| | | predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | stored statistics:
| | | table: rows=73.05K size=2.15MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | | parquet statistics predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | parquet dictionary predicates: d2.d_year <= CAST(2001 AS INT), d2.d_year >= CAST(1999 AS INT)
| | | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | | tuple-ids=11 row-size=8B cardinality=7.30K
| | | in pipelines: 12(GETNEXT)
| | |
| | 13:HASH JOIN [INNER JOIN, BROADCAST]
| | | hash-table-id=30
| | | hash predicates: cs_item_sk = ics.i_item_sk
| | | fk/pk conjuncts: cs_item_sk = ics.i_item_sk
| | | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | | tuple-ids=9,10 row-size=32B cardinality=1.44M
| | | in pipelines: 10(GETNEXT), 11(OPEN)
| | |
| | |--F87:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | | Per-Instance Resources: mem-estimate=4.24MB mem-reservation=3.88MB thread-reservation=1
| | | JOIN BUILD
| | | | join-table-id=30 plan-id=31 cohort-id=10
| | | | build expressions: ics.i_item_sk
| | | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | | |
| | | 98:EXCHANGE [BROADCAST]
| | | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | | tuple-ids=10 row-size=20B cardinality=18.00K
| | | | in pipelines: 11(GETNEXT)
| | | |
| | | F08:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=1
| | | 11:SCAN HDFS [tpcds_parquet.item ics, RANDOM]
| | | HDFS partitions=1/1 files=1 size=1.73MB
| | | stored statistics:
| | | table: rows=18.00K size=1.73MB
| | | columns: all
| | | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | | mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=0
| | | tuple-ids=10 row-size=20B cardinality=18.00K
| | | in pipelines: 11(GETNEXT)
| | |
| | 10:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM]
| | HDFS partitions=1/1 files=3 size=96.62MB
| | stored statistics:
| | table: rows=1.44M size=96.62MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=650.14K
| | mem-estimate=48.00MB mem-reservation=4.00MB thread-reservation=0
| | tuple-ids=9 row-size=12B cardinality=1.44M
| | in pipelines: 10(GETNEXT)
| |
| 97:AGGREGATE [FINALIZE]
| | group by: iss.i_brand_id, iss.i_class_id, iss.i_category_id
| | mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 97(GETNEXT), 04(OPEN)
| |
| 96:EXCHANGE [HASH(iss.i_brand_id,iss.i_class_id,iss.i_category_id)]
| | mem-estimate=677.25KB mem-reservation=0B thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 04(GETNEXT)
| |
| F03:PLAN FRAGMENT [RANDOM] hosts=3 instances=6
| Per-Instance Resources: mem-estimate=26.00MB mem-reservation=3.50MB thread-reservation=1
| 09:AGGREGATE [STREAMING]
| | group by: iss.i_brand_id, iss.i_class_id, iss.i_category_id
| | mem-estimate=10.00MB mem-reservation=3.00MB spill-buffer=128.00KB thread-reservation=0
| | tuple-ids=7 row-size=12B cardinality=148.80K
| | in pipelines: 04(GETNEXT)
| |
| 08:HASH JOIN [INNER JOIN, BROADCAST]
| | hash-table-id=31
| | hash predicates: ss_sold_date_sk = d1.d_date_sk
| | fk/pk conjuncts: ss_sold_date_sk = d1.d_date_sk
| | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=4,5,6 row-size=40B cardinality=2.88M
| | in pipelines: 04(GETNEXT), 06(OPEN)
| |
| |--F88:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | Per-Instance Resources: mem-estimate=3.94MB mem-reservation=3.88MB thread-reservation=1
| | JOIN BUILD
| | | join-table-id=31 plan-id=32 cohort-id=08
| | | build expressions: d1.d_date_sk
| | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | |
| | 95:EXCHANGE [BROADCAST]
| | | mem-estimate=69.07KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=6 row-size=8B cardinality=7.30K
| | | in pipelines: 06(GETNEXT)
| | |
| | F05:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| | 06:SCAN HDFS [tpcds_parquet.date_dim d1, RANDOM]
| | HDFS partitions=1/1 files=1 size=2.15MB
| | predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | stored statistics:
| | table: rows=73.05K size=2.15MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=73.05K
| | parquet statistics predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | parquet dictionary predicates: d1.d_year <= CAST(2001 AS INT), d1.d_year >= CAST(1999 AS INT)
| | mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| | tuple-ids=6 row-size=8B cardinality=7.30K
| | in pipelines: 06(GETNEXT)
| |
| 07:HASH JOIN [INNER JOIN, BROADCAST]
| | hash-table-id=32
| | hash predicates: ss_item_sk = iss.i_item_sk
| | fk/pk conjuncts: ss_item_sk = iss.i_item_sk
| | mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| | tuple-ids=4,5 row-size=32B cardinality=2.88M
| | in pipelines: 04(GETNEXT), 05(OPEN)
| |
| |--F89:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | | Per-Instance Resources: mem-estimate=4.24MB mem-reservation=3.88MB thread-reservation=1
| | JOIN BUILD
| | | join-table-id=32 plan-id=33 cohort-id=08
| | | build expressions: iss.i_item_sk
| | | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| | |
| | 94:EXCHANGE [BROADCAST]
| | | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | | tuple-ids=5 row-size=20B cardinality=18.00K
| | | in pipelines: 05(GETNEXT)
| | |
| | F04:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| | Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB
| | Per-Instance Resources: mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=1
| | 05:SCAN HDFS [tpcds_parquet.item iss, RANDOM]
| | HDFS partitions=1/1 files=1 size=1.73MB
| | runtime filters: RF014[bloom] -> iss.i_brand_id, RF015[bloom] -> iss.i_category_id
| | stored statistics:
| | table: rows=18.00K size=1.73MB
| | columns: all
| | extrapolated-rows=disabled max-scan-range-rows=18.00K
| | mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=0
| | tuple-ids=5 row-size=20B cardinality=18.00K
| | in pipelines: 05(GETNEXT)
| |
| 04:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
| HDFS partitions=1824/1824 files=1824 size=200.95MB
| stored statistics:
| table: rows=2.88M size=200.95MB
| partitions: 1824/1824 rows=2.88M
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=130.09K
| mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| tuple-ids=4 row-size=12B cardinality=2.88M
| in pipelines: 04(GETNEXT)
|
28:HASH JOIN [INNER JOIN, BROADCAST]
| hash-table-id=33
| hash predicates: ss_sold_date_sk = d_date_sk
| fk/pk conjuncts: ss_sold_date_sk = d_date_sk
| mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,1,2 row-size=48B cardinality=2.88M
| in pipelines: 00(GETNEXT), 02(OPEN)
|
|--F90:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | Per-Instance Resources: mem-estimate=5.44MB mem-reservation=4.88MB thread-reservation=1 runtime-filters-memory=1.00MB
| JOIN BUILD
| | join-table-id=33 plan-id=34 cohort-id=01
| | build expressions: d_date_sk
| | runtime filters: RF010[bloom] <- d_date_sk
| | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| |
| 93:EXCHANGE [BROADCAST]
| | mem-estimate=582.70KB mem-reservation=0B thread-reservation=0
| | tuple-ids=2 row-size=8B cardinality=73.05K
| | in pipelines: 02(GETNEXT)
| |
| F02:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Host Shared Resources: mem-estimate=1.00MB mem-reservation=1.00MB thread-reservation=0 runtime-filters-memory=1.00MB
| Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| 02:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| HDFS partitions=1/1 files=1 size=2.15MB
| runtime filters: RF006[bloom] -> d_week_seq
| stored statistics:
| table: rows=73.05K size=2.15MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=73.05K
| mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| tuple-ids=2 row-size=8B cardinality=73.05K
| in pipelines: 02(GETNEXT)
|
27:HASH JOIN [INNER JOIN, BROADCAST]
| hash-table-id=34
| hash predicates: ss_item_sk = i_item_sk
| fk/pk conjuncts: ss_item_sk = i_item_sk
| mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,1 row-size=40B cardinality=2.88M
| in pipelines: 00(GETNEXT), 01(OPEN)
|
|--F91:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
| | Per-Instance Resources: mem-estimate=5.24MB mem-reservation=4.88MB thread-reservation=1 runtime-filters-memory=1.00MB
| JOIN BUILD
| | join-table-id=34 plan-id=35 cohort-id=01
| | build expressions: i_item_sk
| | runtime filters: RF012[bloom] <- i_item_sk
| | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| |
| 92:EXCHANGE [BROADCAST]
| | mem-estimate=375.56KB mem-reservation=0B thread-reservation=0
| | tuple-ids=1 row-size=20B cardinality=18.00K
| | in pipelines: 01(GETNEXT)
| |
| F01:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Host Shared Resources: mem-estimate=4.00MB mem-reservation=4.00MB thread-reservation=0 runtime-filters-memory=4.00MB
| Per-Instance Resources: mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=1
| 01:SCAN HDFS [tpcds_parquet.item, RANDOM]
| HDFS partitions=1/1 files=1 size=1.73MB
| runtime filters: RF000[bloom] -> tpcds_parquet.item.i_brand_id, RF001[bloom] -> tpcds_parquet.item.i_category_id, RF002[bloom] -> tpcds_parquet.item.i_class_id, RF008[bloom] -> tpcds_parquet.item.i_item_sk
| stored statistics:
| table: rows=18.00K size=1.73MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=18.00K
| mem-estimate=16.00MB mem-reservation=256.00KB thread-reservation=0
| tuple-ids=1 row-size=20B cardinality=18.00K
| in pipelines: 01(GETNEXT)
|
00:SCAN HDFS [tpcds_parquet.store_sales, RANDOM]
HDFS partitions=1824/1824 files=1824 size=200.95MB
runtime filters: RF008[bloom] -> ss_item_sk, RF010[bloom] -> ss_sold_date_sk, RF012[bloom] -> ss_item_sk
stored statistics:
table: rows=2.88M size=200.95MB
partitions: 1824/1824 rows=2.88M
columns: all
extrapolated-rows=disabled max-scan-range-rows=130.09K
mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0
tuple-ids=0 row-size=20B cardinality=2.88M
in pipelines: 00(GETNEXT)
====