blob: 9700f93955e7c72804e6c46f0342eb8023024195 [file] [log] [blame]
# TPCDS-Q15
SELECT ca_zip,
sum(cs_sales_price)
FROM catalog_sales,
customer,
customer_address,
date_dim
WHERE cs_bill_customer_sk = c_customer_sk
AND c_current_addr_sk = ca_address_sk
AND (SUBSTRING(ca_zip, 1, 5) IN ('85669',
'86197',
'88274',
'83405',
'86475',
'85392',
'85460',
'80348',
'81792')
OR ca_state IN ('CA',
'WA',
'GA')
OR cs_sales_price > 500)
AND cs_sold_date_sk = d_date_sk
AND d_qoy = 2
AND d_year = 2001
GROUP BY ca_zip
ORDER BY ca_zip
LIMIT 100;
---- PLAN
Max Per-Host Resource Reservation: Memory=15.75MB Threads=5
Per-Host Resource Estimates: Memory=282MB
F00:PLAN FRAGMENT [UNPARTITIONED] hosts=1 instances=1
| Per-Host Resources: mem-estimate=281.75MB mem-reservation=15.75MB thread-reservation=5 runtime-filters-memory=3.00MB
PLAN-ROOT SINK
| output exprs: ca_zip, sum(cs_sales_price)
| mem-estimate=0B mem-reservation=0B thread-reservation=0
|
08:TOP-N [LIMIT=100]
| order by: ca_zip ASC
| mem-estimate=3.22KB mem-reservation=0B thread-reservation=0
| tuple-ids=5 row-size=33B cardinality=100
| in pipelines: 08(GETNEXT), 07(OPEN)
|
07:AGGREGATE [FINALIZE]
| output: sum(cs_sales_price)
| group by: ca_zip
| mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=4 row-size=33B cardinality=3.96K
| in pipelines: 07(GETNEXT), 00(OPEN)
|
06:HASH JOIN [INNER JOIN]
| hash predicates: c_current_addr_sk = ca_address_sk
| fk/pk conjuncts: c_current_addr_sk = ca_address_sk
| other predicates: (substring(ca_zip, CAST(1 AS BIGINT), CAST(5 AS BIGINT)) IN ('85669', '86197', '88274', '83405', '86475', '85392', '85460', '80348', '81792') OR ca_state IN ('CA', 'WA', 'GA') OR cs_sales_price > CAST(500 AS DECIMAL(5,0)))
| runtime filters: RF000[bloom] <- ca_address_sk
| mem-estimate=2.88MB mem-reservation=2.88MB spill-buffer=128.00KB thread-reservation=0
| tuple-ids=0,3,1,2 row-size=67B cardinality=146.92K
| in pipelines: 00(GETNEXT), 02(OPEN)
|
|--02:SCAN HDFS [tpcds_parquet.customer_address]
| HDFS partitions=1/1 files=1 size=1.16MB
| stored statistics:
| table: rows=50.00K size=1.16MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=50.00K
| mem-estimate=48.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=2 row-size=35B cardinality=50.00K
| in pipelines: 02(GETNEXT)
|
05:HASH JOIN [INNER JOIN]
| hash predicates: cs_bill_customer_sk = c_customer_sk
| fk/pk conjuncts: cs_bill_customer_sk = c_customer_sk
| runtime filters: RF002[bloom] <- c_customer_sk
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,3,1 row-size=32B cardinality=146.92K
| in pipelines: 00(GETNEXT), 01(OPEN)
|
|--01:SCAN HDFS [tpcds_parquet.customer]
| HDFS partitions=1/1 files=1 size=5.49MB
| runtime filters: RF000[bloom] -> c_current_addr_sk
| stored statistics:
| table: rows=100.00K size=5.49MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=100.00K
| mem-estimate=32.00MB mem-reservation=1.00MB thread-reservation=1
| tuple-ids=1 row-size=8B cardinality=100.00K
| in pipelines: 01(GETNEXT)
|
04:HASH JOIN [INNER JOIN]
| hash predicates: cs_sold_date_sk = d_date_sk
| fk/pk conjuncts: cs_sold_date_sk = d_date_sk
| runtime filters: RF004[bloom] <- d_date_sk
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,3 row-size=24B cardinality=146.92K
| in pipelines: 00(GETNEXT), 03(OPEN)
|
|--03:SCAN HDFS [tpcds_parquet.date_dim]
| HDFS partitions=1/1 files=1 size=2.15MB
| predicates: d_year = CAST(2001 AS INT), d_qoy = CAST(2 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_qoy = CAST(2 AS INT)
| parquet dictionary predicates: d_year = CAST(2001 AS INT), d_qoy = CAST(2 AS INT)
| mem-estimate=48.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=3 row-size=12B cardinality=186
| in pipelines: 03(GETNEXT)
|
00:SCAN HDFS [tpcds_parquet.catalog_sales]
HDFS partitions=1/1 files=3 size=96.62MB
runtime filters: RF002[bloom] -> cs_bill_customer_sk, RF004[bloom] -> cs_sold_date_sk
stored statistics:
table: rows=1.44M size=96.62MB
columns: all
extrapolated-rows=disabled max-scan-range-rows=650.14K
mem-estimate=144.00MB mem-reservation=4.00MB thread-reservation=1
tuple-ids=0 row-size=12B cardinality=1.44M
in pipelines: 00(GETNEXT)
---- DISTRIBUTEDPLAN
Max Per-Host Resource Reservation: Memory=20.75MB Threads=12
Per-Host Resource Estimates: Memory=308MB
F07: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: ca_zip, sum(cs_sales_price)
| mem-estimate=0B mem-reservation=0B thread-reservation=0
|
16:MERGING-EXCHANGE [UNPARTITIONED]
| order by: ca_zip ASC
| limit: 100
| mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| tuple-ids=5 row-size=33B cardinality=100
| in pipelines: 08(GETNEXT)
|
F06:PLAN FRAGMENT [HASH(ca_zip)] hosts=3 instances=3
Per-Host Resources: mem-estimate=10.15MB mem-reservation=1.94MB thread-reservation=1
08:TOP-N [LIMIT=100]
| order by: ca_zip ASC
| mem-estimate=3.22KB mem-reservation=0B thread-reservation=0
| tuple-ids=5 row-size=33B cardinality=100
| in pipelines: 08(GETNEXT), 15(OPEN)
|
15:AGGREGATE [FINALIZE]
| output: sum:merge(cs_sales_price)
| group by: ca_zip
| mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=4 row-size=33B cardinality=3.96K
| in pipelines: 15(GETNEXT), 00(OPEN)
|
14:EXCHANGE [HASH(ca_zip)]
| mem-estimate=153.55KB mem-reservation=0B thread-reservation=0
| tuple-ids=4 row-size=33B cardinality=3.96K
| in pipelines: 00(GETNEXT)
|
F05:PLAN FRAGMENT [HASH(c_current_addr_sk)] hosts=3 instances=3
Per-Host Resources: mem-estimate=16.27MB mem-reservation=4.94MB thread-reservation=1 runtime-filters-memory=1.00MB
07:AGGREGATE [STREAMING]
| output: sum(cs_sales_price)
| group by: ca_zip
| mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=4 row-size=33B cardinality=3.96K
| in pipelines: 00(GETNEXT)
|
06:HASH JOIN [INNER JOIN, PARTITIONED]
| hash predicates: c_current_addr_sk = ca_address_sk
| fk/pk conjuncts: c_current_addr_sk = ca_address_sk
| other predicates: (substring(ca_zip, CAST(1 AS BIGINT), CAST(5 AS BIGINT)) IN ('85669', '86197', '88274', '83405', '86475', '85392', '85460', '80348', '81792') OR ca_state IN ('CA', 'WA', 'GA') OR cs_sales_price > CAST(500 AS DECIMAL(5,0)))
| runtime filters: RF000[bloom] <- ca_address_sk
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,3,1,2 row-size=67B cardinality=146.92K
| in pipelines: 00(GETNEXT), 02(OPEN)
|
|--13:EXCHANGE [HASH(ca_address_sk)]
| | mem-estimate=1.71MB mem-reservation=0B thread-reservation=0
| | tuple-ids=2 row-size=35B cardinality=50.00K
| | in pipelines: 02(GETNEXT)
| |
| F04:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Host Resources: mem-estimate=48.00MB mem-reservation=512.00KB thread-reservation=2
| 02:SCAN HDFS [tpcds_parquet.customer_address, RANDOM]
| HDFS partitions=1/1 files=1 size=1.16MB
| stored statistics:
| table: rows=50.00K size=1.16MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=50.00K
| mem-estimate=48.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=2 row-size=35B cardinality=50.00K
| in pipelines: 02(GETNEXT)
|
12:EXCHANGE [HASH(c_current_addr_sk)]
| mem-estimate=1.62MB mem-reservation=0B thread-reservation=0
| tuple-ids=0,3,1 row-size=32B cardinality=146.92K
| in pipelines: 00(GETNEXT)
|
F03:PLAN FRAGMENT [HASH(cs_bill_customer_sk)] hosts=3 instances=3
Per-Host Resources: mem-estimate=4.93MB mem-reservation=2.94MB thread-reservation=1 runtime-filters-memory=1.00MB
05:HASH JOIN [INNER JOIN, PARTITIONED]
| hash predicates: cs_bill_customer_sk = c_customer_sk
| fk/pk conjuncts: cs_bill_customer_sk = c_customer_sk
| runtime filters: RF002[bloom] <- c_customer_sk
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,3,1 row-size=32B cardinality=146.92K
| in pipelines: 00(GETNEXT), 01(OPEN)
|
|--11:EXCHANGE [HASH(c_customer_sk)]
| | mem-estimate=793.25KB mem-reservation=0B thread-reservation=0
| | tuple-ids=1 row-size=8B cardinality=100.00K
| | in pipelines: 01(GETNEXT)
| |
| F02:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Host Resources: mem-estimate=33.00MB mem-reservation=2.00MB thread-reservation=2 runtime-filters-memory=1.00MB
| 01:SCAN HDFS [tpcds_parquet.customer, RANDOM]
| HDFS partitions=1/1 files=1 size=5.49MB
| runtime filters: RF000[bloom] -> c_current_addr_sk
| stored statistics:
| table: rows=100.00K size=5.49MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=100.00K
| mem-estimate=32.00MB mem-reservation=1.00MB thread-reservation=1
| tuple-ids=1 row-size=8B cardinality=100.00K
| in pipelines: 01(GETNEXT)
|
10:EXCHANGE [HASH(cs_bill_customer_sk)]
| mem-estimate=1.21MB mem-reservation=0B thread-reservation=0
| tuple-ids=0,3 row-size=24B cardinality=146.92K
| in pipelines: 00(GETNEXT)
|
F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
Per-Host Resources: mem-estimate=147.95MB mem-reservation=7.94MB thread-reservation=2 runtime-filters-memory=2.00MB
04:HASH JOIN [INNER JOIN, BROADCAST]
| hash predicates: cs_sold_date_sk = d_date_sk
| fk/pk conjuncts: cs_sold_date_sk = d_date_sk
| runtime filters: RF004[bloom] <- d_date_sk
| mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,3 row-size=24B cardinality=146.92K
| in pipelines: 00(GETNEXT), 03(OPEN)
|
|--09:EXCHANGE [BROADCAST]
| | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | tuple-ids=3 row-size=12B cardinality=186
| | in pipelines: 03(GETNEXT)
| |
| F01:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Host Resources: mem-estimate=48.00MB mem-reservation=512.00KB thread-reservation=2
| 03:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| HDFS partitions=1/1 files=1 size=2.15MB
| predicates: d_year = CAST(2001 AS INT), d_qoy = CAST(2 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_qoy = CAST(2 AS INT)
| parquet dictionary predicates: d_year = CAST(2001 AS INT), d_qoy = CAST(2 AS INT)
| mem-estimate=48.00MB mem-reservation=512.00KB thread-reservation=1
| tuple-ids=3 row-size=12B cardinality=186
| in pipelines: 03(GETNEXT)
|
00:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM]
HDFS partitions=1/1 files=3 size=96.62MB
runtime filters: RF002[bloom] -> cs_bill_customer_sk, RF004[bloom] -> cs_sold_date_sk
stored statistics:
table: rows=1.44M size=96.62MB
columns: all
extrapolated-rows=disabled max-scan-range-rows=650.14K
mem-estimate=144.00MB mem-reservation=4.00MB thread-reservation=1
tuple-ids=0 row-size=12B cardinality=1.44M
in pipelines: 00(GETNEXT)
---- PARALLELPLANS
Max Per-Host Resource Reservation: Memory=23.69MB Threads=11
Per-Host Resource Estimates: Memory=135MB
F07: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: ca_zip, sum(cs_sales_price)
| mem-estimate=0B mem-reservation=0B thread-reservation=0
|
16:MERGING-EXCHANGE [UNPARTITIONED]
| order by: ca_zip ASC
| limit: 100
| mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| tuple-ids=5 row-size=33B cardinality=100
| in pipelines: 08(GETNEXT)
|
F06:PLAN FRAGMENT [HASH(ca_zip)] hosts=3 instances=3
Per-Instance Resources: mem-estimate=10.15MB mem-reservation=1.94MB thread-reservation=1
08:TOP-N [LIMIT=100]
| order by: ca_zip ASC
| mem-estimate=3.22KB mem-reservation=0B thread-reservation=0
| tuple-ids=5 row-size=33B cardinality=100
| in pipelines: 08(GETNEXT), 15(OPEN)
|
15:AGGREGATE [FINALIZE]
| output: sum:merge(cs_sales_price)
| group by: ca_zip
| mem-estimate=10.00MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=4 row-size=33B cardinality=3.96K
| in pipelines: 15(GETNEXT), 00(OPEN)
|
14:EXCHANGE [HASH(ca_zip)]
| mem-estimate=153.55KB mem-reservation=0B thread-reservation=0
| tuple-ids=4 row-size=33B cardinality=3.96K
| in pipelines: 00(GETNEXT)
|
F05:PLAN FRAGMENT [HASH(c_current_addr_sk)] hosts=3 instances=3
Per-Instance Resources: mem-estimate=11.62MB mem-reservation=2.00MB thread-reservation=1
07:AGGREGATE [STREAMING]
| output: sum(cs_sales_price)
| group by: ca_zip
| mem-estimate=10.00MB mem-reservation=2.00MB spill-buffer=64.00KB thread-reservation=0
| tuple-ids=4 row-size=33B cardinality=3.96K
| in pipelines: 00(GETNEXT)
|
06:HASH JOIN [INNER JOIN, PARTITIONED]
| hash-table-id=00
| hash predicates: c_current_addr_sk = ca_address_sk
| fk/pk conjuncts: c_current_addr_sk = ca_address_sk
| other predicates: (substring(ca_zip, CAST(1 AS BIGINT), CAST(5 AS BIGINT)) IN ('85669', '86197', '88274', '83405', '86475', '85392', '85460', '80348', '81792') OR ca_state IN ('CA', 'WA', 'GA') OR cs_sales_price > CAST(500 AS DECIMAL(5,0)))
| mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,3,1,2 row-size=67B cardinality=146.92K
| in pipelines: 00(GETNEXT), 02(OPEN)
|
|--F08:PLAN FRAGMENT [HASH(c_current_addr_sk)] hosts=3 instances=3
| | Per-Instance Resources: mem-estimate=4.64MB mem-reservation=2.94MB thread-reservation=1 runtime-filters-memory=1.00MB
| JOIN BUILD
| | join-table-id=00 plan-id=01 cohort-id=01
| | build expressions: ca_address_sk
| | runtime filters: RF000[bloom] <- ca_address_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| |
| 13:EXCHANGE [HASH(ca_address_sk)]
| | mem-estimate=1.71MB mem-reservation=0B thread-reservation=0
| | tuple-ids=2 row-size=35B cardinality=50.00K
| | in pipelines: 02(GETNEXT)
| |
| F04:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| 02:SCAN HDFS [tpcds_parquet.customer_address, RANDOM]
| HDFS partitions=1/1 files=1 size=1.16MB
| stored statistics:
| table: rows=50.00K size=1.16MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=50.00K
| mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| tuple-ids=2 row-size=35B cardinality=50.00K
| in pipelines: 02(GETNEXT)
|
12:EXCHANGE [HASH(c_current_addr_sk)]
| mem-estimate=1.62MB mem-reservation=0B thread-reservation=0
| tuple-ids=0,3,1 row-size=32B cardinality=146.92K
| in pipelines: 00(GETNEXT)
|
F03:PLAN FRAGMENT [HASH(cs_bill_customer_sk)] hosts=3 instances=3
Per-Instance Resources: mem-estimate=1.21MB mem-reservation=0B thread-reservation=1
05:HASH JOIN [INNER JOIN, PARTITIONED]
| hash-table-id=01
| hash predicates: cs_bill_customer_sk = c_customer_sk
| fk/pk conjuncts: cs_bill_customer_sk = c_customer_sk
| mem-estimate=0B mem-reservation=0B spill-buffer=64.00KB thread-reservation=0
| tuple-ids=0,3,1 row-size=32B cardinality=146.92K
| in pipelines: 00(GETNEXT), 01(OPEN)
|
|--F09:PLAN FRAGMENT [HASH(cs_bill_customer_sk)] hosts=3 instances=3
| | Per-Instance Resources: mem-estimate=3.71MB mem-reservation=2.94MB thread-reservation=1 runtime-filters-memory=1.00MB
| JOIN BUILD
| | join-table-id=01 plan-id=02 cohort-id=01
| | build expressions: c_customer_sk
| | runtime filters: RF002[bloom] <- c_customer_sk
| | mem-estimate=1.94MB mem-reservation=1.94MB spill-buffer=64.00KB thread-reservation=0
| |
| 11:EXCHANGE [HASH(c_customer_sk)]
| | mem-estimate=793.25KB mem-reservation=0B thread-reservation=0
| | tuple-ids=1 row-size=8B cardinality=100.00K
| | in pipelines: 01(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=1.00MB thread-reservation=1
| 01:SCAN HDFS [tpcds_parquet.customer, RANDOM]
| HDFS partitions=1/1 files=1 size=5.49MB
| runtime filters: RF000[bloom] -> c_current_addr_sk
| stored statistics:
| table: rows=100.00K size=5.49MB
| columns: all
| extrapolated-rows=disabled max-scan-range-rows=100.00K
| mem-estimate=16.00MB mem-reservation=1.00MB thread-reservation=0
| tuple-ids=1 row-size=8B cardinality=100.00K
| in pipelines: 01(GETNEXT)
|
10:EXCHANGE [HASH(cs_bill_customer_sk)]
| mem-estimate=1.21MB mem-reservation=0B thread-reservation=0
| tuple-ids=0,3 row-size=24B cardinality=146.92K
| in pipelines: 00(GETNEXT)
|
F00:PLAN FRAGMENT [RANDOM] hosts=3 instances=3
Per-Host Shared Resources: mem-estimate=2.00MB mem-reservation=2.00MB thread-reservation=0 runtime-filters-memory=2.00MB
Per-Instance Resources: mem-estimate=48.00MB mem-reservation=4.00MB thread-reservation=1
04:HASH JOIN [INNER JOIN, BROADCAST]
| hash-table-id=02
| 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=0,3 row-size=24B cardinality=146.92K
| in pipelines: 00(GETNEXT), 03(OPEN)
|
|--F10: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=02 plan-id=03 cohort-id=01
| | build expressions: d_date_sk
| | runtime filters: RF004[bloom] <- d_date_sk
| | mem-estimate=3.88MB mem-reservation=3.88MB spill-buffer=64.00KB thread-reservation=0
| |
| 09:EXCHANGE [BROADCAST]
| | mem-estimate=16.00KB mem-reservation=0B thread-reservation=0
| | tuple-ids=3 row-size=12B cardinality=186
| | in pipelines: 03(GETNEXT)
| |
| F01:PLAN FRAGMENT [RANDOM] hosts=1 instances=1
| Per-Instance Resources: mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=1
| 03:SCAN HDFS [tpcds_parquet.date_dim, RANDOM]
| HDFS partitions=1/1 files=1 size=2.15MB
| predicates: d_year = CAST(2001 AS INT), d_qoy = CAST(2 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_qoy = CAST(2 AS INT)
| parquet dictionary predicates: d_year = CAST(2001 AS INT), d_qoy = CAST(2 AS INT)
| mem-estimate=16.00MB mem-reservation=512.00KB thread-reservation=0
| tuple-ids=3 row-size=12B cardinality=186
| in pipelines: 03(GETNEXT)
|
00:SCAN HDFS [tpcds_parquet.catalog_sales, RANDOM]
HDFS partitions=1/1 files=3 size=96.62MB
runtime filters: RF002[bloom] -> cs_bill_customer_sk, RF004[bloom] -> cs_sold_date_sk
stored statistics:
table: rows=1.44M size=96.62MB
columns: all
extrapolated-rows=disabled max-scan-range-rows=650.14K
mem-estimate=48.00MB mem-reservation=4.00MB thread-reservation=0
tuple-ids=0 row-size=12B cardinality=1.44M
in pipelines: 00(GETNEXT)
====