Skip to content

FilterExec : expose push_batch_with_filter on LimitedBatchCoalescer - #25503

Open
Rich-T-kid wants to merge 4 commits into
apache:mainfrom
Rich-T-kid:rich-T-kid/expose-push-batch-with-filter
Open

Rich-T-kid wants to merge 4 commits into
apache:mainfrom
Rich-T-kid:rich-T-kid/expose-push-batch-with-filter

Conversation

@Rich-T-kid

@Rich-T-kid Rich-T-kid commented Sep 19, 2026

Copy link
Copy Markdown
Contributor

Which issue does this PR close?

Rationale for this change

we should be able to avoid an intermediate record batch allocation by using push_batch_with_filter

What changes are included in this PR?

Exposes push_batch_with_filter on LimitedBatchCoalescer and switches FilterExec to use it instead of calling filter_record_batch followed by push_batch.

What is the testing strategy for this PR?

Are there any user-facing changes?

no

@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

run benchmarks

@github-actions github-actions Bot added the physical-plan Changes to the physical-plan crate label Sep 19, 2026
Arrow's BatchCoalescer already has push_batch_with_filter, which writes
surviving rows directly into the coalescer buffer in a single pass.
LimitedBatchCoalescer was not exposing it, forcing FilterExec to call
filter_record_batch first (materialising a new allocation) and then
push_batch (a second copy).

Wire push_batch_with_filter through LimitedBatchCoalescer with correct
fetch-limit accounting, and update FilterExec to use it, eliminating
the intermediate allocation on the hot filter path.
@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

run benchmarks

@Rich-T-kid
Rich-T-kid marked this pull request as draft September 19, 2026 15:59
@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5743288880-2492-52v8p 6.12.94+ #1 SMP Tue Aug 4 08:44:15 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpch

Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5743288880-2491-llk9h 6.12.94+ #1 SMP Tue Aug 4 08:44:15 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpcds

Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5743290891-2493-prcjz 6.12.94+ #1 SMP Tue Aug 4 08:44:15 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark clickbench_partitioned

Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5743290891-2494-hx4fn 6.12.94+ #1 SMP Tue Aug 4 08:44:15 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpcds

Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5743288880-2490-2wpvr 6.12.94+ #1 SMP Tue Aug 4 08:44:15 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark clickbench_partitioned

Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5743290891-2495-wpctd 6.12.94+ #1 SMP Tue Aug 4 08:44:15 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpch

Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpch
CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃     HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │ 40.83 ms │                                 40.57 ms │    no change │
│ QQuery 2  │ 18.47 ms │                                 18.65 ms │    no change │
│ QQuery 3  │ 28.58 ms │                                 28.36 ms │    no change │
│ QQuery 4  │ 17.30 ms │                                 17.36 ms │    no change │
│ QQuery 5  │ 35.84 ms │                                 35.14 ms │    no change │
│ QQuery 6  │ 16.16 ms │                                 16.32 ms │    no change │
│ QQuery 7  │ 41.26 ms │                                 41.26 ms │    no change │
│ QQuery 8  │ 40.01 ms │                                 40.82 ms │    no change │
│ QQuery 9  │ 48.65 ms │                                 47.77 ms │    no change │
│ QQuery 10 │ 40.34 ms │                                 40.59 ms │    no change │
│ QQuery 11 │ 13.53 ms │                                 13.59 ms │    no change │
│ QQuery 12 │ 21.09 ms │                                 21.38 ms │    no change │
│ QQuery 13 │ 39.83 ms │                                 39.55 ms │    no change │
│ QQuery 14 │ 24.66 ms │                                 24.63 ms │    no change │
│ QQuery 15 │ 30.92 ms │                                 30.78 ms │    no change │
│ QQuery 16 │ 13.98 ms │                                 14.09 ms │    no change │
│ QQuery 17 │ 72.66 ms │                                 73.28 ms │    no change │
│ QQuery 18 │ 61.44 ms │                                 60.73 ms │    no change │
│ QQuery 19 │ 31.80 ms │                                 31.83 ms │    no change │
│ QQuery 20 │ 31.77 ms │                                 32.10 ms │    no change │
│ QQuery 21 │ 55.02 ms │                                 54.67 ms │    no change │
│ QQuery 22 │ 13.51 ms │                                 14.19 ms │ 1.05x slower │
└───────────┴──────────┴──────────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 737.66ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 737.66ms │
│ Average Time (HEAD)                                     │  33.53ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │  33.53ms │
│ Queries Faster                                          │        0 │
│ Queries Slower                                          │        1 │
│ Queries with No Change                                  │       21 │
│ Queries with Failure                                    │        0 │
└─────────────────────────────────────────────────────────┴──────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃    Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ QQuery 1  │ 40.83 / 42.19 ±1.12 / 43.32 ms │           40.57 / 41.62 ±1.24 / 44.02 ms │ no change │
│ QQuery 2  │ 18.47 / 18.70 ±0.24 / 19.14 ms │           18.65 / 18.80 ±0.19 / 19.16 ms │ no change │
│ QQuery 3  │ 28.58 / 29.47 ±1.07 / 31.56 ms │           28.36 / 28.50 ±0.12 / 28.69 ms │ no change │
│ QQuery 4  │ 17.30 / 17.52 ±0.14 / 17.73 ms │           17.36 / 17.48 ±0.18 / 17.84 ms │ no change │
│ QQuery 5  │ 35.84 / 36.85 ±0.72 / 38.02 ms │           35.14 / 35.33 ±0.14 / 35.53 ms │ no change │
│ QQuery 6  │ 16.16 / 16.55 ±0.35 / 17.18 ms │           16.32 / 16.57 ±0.19 / 16.77 ms │ no change │
│ QQuery 7  │ 41.26 / 44.28 ±2.49 / 48.54 ms │           41.26 / 42.92 ±1.21 / 44.18 ms │ no change │
│ QQuery 8  │ 40.01 / 40.67 ±0.51 / 41.37 ms │           40.82 / 41.10 ±0.19 / 41.30 ms │ no change │
│ QQuery 9  │ 48.65 / 49.90 ±0.91 / 51.39 ms │           47.77 / 49.69 ±1.28 / 51.64 ms │ no change │
│ QQuery 10 │ 40.34 / 40.63 ±0.27 / 41.03 ms │           40.59 / 40.82 ±0.17 / 41.00 ms │ no change │
│ QQuery 11 │ 13.53 / 13.91 ±0.44 / 14.73 ms │           13.59 / 13.72 ±0.11 / 13.87 ms │ no change │
│ QQuery 12 │ 21.09 / 21.35 ±0.23 / 21.76 ms │           21.38 / 21.88 ±0.34 / 22.44 ms │ no change │
│ QQuery 13 │ 39.83 / 40.22 ±0.32 / 40.63 ms │           39.55 / 40.50 ±1.00 / 42.40 ms │ no change │
│ QQuery 14 │ 24.66 / 24.75 ±0.06 / 24.86 ms │           24.63 / 24.73 ±0.11 / 24.92 ms │ no change │
│ QQuery 15 │ 30.92 / 31.99 ±0.93 / 33.21 ms │           30.78 / 31.05 ±0.27 / 31.46 ms │ no change │
│ QQuery 16 │ 13.98 / 14.15 ±0.10 / 14.30 ms │           14.09 / 14.64 ±0.48 / 15.50 ms │ no change │
│ QQuery 17 │ 72.66 / 73.61 ±0.85 / 74.81 ms │           73.28 / 73.99 ±0.99 / 75.94 ms │ no change │
│ QQuery 18 │ 61.44 / 62.11 ±0.80 / 63.68 ms │           60.73 / 63.14 ±1.44 / 64.86 ms │ no change │
│ QQuery 19 │ 31.80 / 31.98 ±0.10 / 32.09 ms │           31.83 / 32.81 ±1.37 / 35.50 ms │ no change │
│ QQuery 20 │ 31.77 / 32.03 ±0.22 / 32.38 ms │           32.10 / 32.67 ±0.55 / 33.71 ms │ no change │
│ QQuery 21 │ 55.02 / 56.57 ±1.22 / 58.39 ms │           54.67 / 55.92 ±1.03 / 57.61 ms │ no change │
│ QQuery 22 │ 13.51 / 14.11 ±0.47 / 14.93 ms │           14.19 / 14.80 ±0.77 / 16.31 ms │ no change │
└───────────┴────────────────────────────────┴──────────────────────────────────────────┴───────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 753.56ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 752.69ms │
│ Average Time (HEAD)                                     │  34.25ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │  34.21ms │
│ Queries Faster                                          │        0 │
│ Queries Slower                                          │        0 │
│ Queries with No Change                                  │       22 │
│ Queries with Failure                                    │        0 │
└─────────────────────────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 1.3 GiB
Avg memory 518.4 MiB
CPU user 21.0s
CPU sys 1.8s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.3 GiB
Avg memory 507.3 MiB
CPU user 21.0s
CPU sys 1.8s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpch
CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃     HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 41.81 ms │                                 40.93 ms │     no change │
│ QQuery 2  │ 19.39 ms │                                 18.53 ms │     no change │
│ QQuery 3  │ 29.56 ms │                                 28.18 ms │     no change │
│ QQuery 4  │ 18.03 ms │                                 17.26 ms │     no change │
│ QQuery 5  │ 37.14 ms │                                 34.91 ms │ +1.06x faster │
│ QQuery 6  │ 16.75 ms │                                 16.02 ms │     no change │
│ QQuery 7  │ 44.74 ms │                                 41.52 ms │ +1.08x faster │
│ QQuery 8  │ 43.07 ms │                                 40.30 ms │ +1.07x faster │
│ QQuery 9  │ 53.75 ms │                                 49.05 ms │ +1.10x faster │
│ QQuery 10 │ 40.76 ms │                                 40.77 ms │     no change │
│ QQuery 11 │ 13.12 ms │                                 13.22 ms │     no change │
│ QQuery 12 │ 21.35 ms │                                 20.92 ms │     no change │
│ QQuery 13 │ 46.19 ms │                                 43.40 ms │ +1.06x faster │
│ QQuery 14 │ 24.59 ms │                                 24.67 ms │     no change │
│ QQuery 15 │ 30.93 ms │                                 30.75 ms │     no change │
│ QQuery 16 │ 14.10 ms │                                 14.13 ms │     no change │
│ QQuery 17 │ 71.70 ms │                                 72.57 ms │     no change │
│ QQuery 18 │ 61.68 ms │                                 63.82 ms │     no change │
│ QQuery 19 │ 31.83 ms │                                 31.89 ms │     no change │
│ QQuery 20 │ 31.66 ms │                                 32.04 ms │     no change │
│ QQuery 21 │ 54.62 ms │                                 55.08 ms │     no change │
│ QQuery 22 │ 13.89 ms │                                 13.88 ms │     no change │
└───────────┴──────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 760.67ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 743.86ms │
│ Average Time (HEAD)                                     │  34.58ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │  33.81ms │
│ Queries Faster                                          │        5 │
│ Queries Slower                                          │        0 │
│ Queries with No Change                                  │       17 │
│ Queries with Failure                                    │        0 │
└─────────────────────────────────────────────────────────┴──────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 41.81 / 42.52 ±0.89 / 44.26 ms │           40.93 / 43.12 ±1.47 / 45.56 ms │     no change │
│ QQuery 2  │ 19.39 / 19.52 ±0.14 / 19.79 ms │           18.53 / 18.78 ±0.16 / 18.99 ms │     no change │
│ QQuery 3  │ 29.56 / 29.86 ±0.26 / 30.21 ms │           28.18 / 29.16 ±0.83 / 30.54 ms │     no change │
│ QQuery 4  │ 18.03 / 18.38 ±0.48 / 19.33 ms │           17.26 / 17.51 ±0.35 / 18.21 ms │     no change │
│ QQuery 5  │ 37.14 / 37.40 ±0.27 / 37.88 ms │           34.91 / 35.67 ±1.14 / 37.92 ms │     no change │
│ QQuery 6  │ 16.75 / 16.85 ±0.07 / 16.94 ms │           16.02 / 16.44 ±0.46 / 17.33 ms │     no change │
│ QQuery 7  │ 44.74 / 45.93 ±1.42 / 48.72 ms │           41.52 / 46.65 ±3.99 / 52.78 ms │     no change │
│ QQuery 8  │ 43.07 / 43.47 ±0.23 / 43.79 ms │           40.30 / 42.74 ±1.94 / 44.99 ms │     no change │
│ QQuery 9  │ 53.75 / 55.57 ±1.14 / 57.15 ms │           49.05 / 50.14 ±1.12 / 52.08 ms │ +1.11x faster │
│ QQuery 10 │ 40.76 / 43.54 ±1.60 / 45.49 ms │           40.77 / 41.15 ±0.36 / 41.80 ms │ +1.06x faster │
│ QQuery 11 │ 13.12 / 13.52 ±0.33 / 14.10 ms │           13.22 / 13.72 ±0.59 / 14.84 ms │     no change │
│ QQuery 12 │ 21.35 / 21.99 ±0.53 / 22.67 ms │           20.92 / 21.44 ±0.39 / 22.11 ms │     no change │
│ QQuery 13 │ 46.19 / 46.93 ±0.65 / 47.81 ms │           43.40 / 46.92 ±2.78 / 51.95 ms │     no change │
│ QQuery 14 │ 24.59 / 25.12 ±0.58 / 25.90 ms │           24.67 / 24.98 ±0.40 / 25.75 ms │     no change │
│ QQuery 15 │ 30.93 / 31.58 ±0.80 / 33.13 ms │           30.75 / 31.72 ±0.81 / 32.85 ms │     no change │
│ QQuery 16 │ 14.10 / 14.21 ±0.11 / 14.41 ms │           14.13 / 14.31 ±0.14 / 14.50 ms │     no change │
│ QQuery 17 │ 71.70 / 73.17 ±1.29 / 75.55 ms │           72.57 / 74.22 ±1.39 / 76.17 ms │     no change │
│ QQuery 18 │ 61.68 / 68.18 ±3.39 / 71.40 ms │           63.82 / 68.12 ±2.65 / 71.35 ms │     no change │
│ QQuery 19 │ 31.83 / 32.11 ±0.29 / 32.54 ms │           31.89 / 33.73 ±1.58 / 36.29 ms │  1.05x slower │
│ QQuery 20 │ 31.66 / 31.82 ±0.11 / 31.95 ms │           32.04 / 32.47 ±0.36 / 32.91 ms │     no change │
│ QQuery 21 │ 54.62 / 55.77 ±0.94 / 56.72 ms │           55.08 / 55.48 ±0.29 / 55.86 ms │     no change │
│ QQuery 22 │ 13.89 / 14.10 ±0.15 / 14.29 ms │           13.88 / 14.24 ±0.27 / 14.64 ms │     no change │
└───────────┴────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 781.54ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 772.69ms │
│ Average Time (HEAD)                                     │  35.52ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │  35.12ms │
│ Queries Faster                                          │        2 │
│ Queries Slower                                          │        1 │
│ Queries with No Change                                  │       19 │
│ Queries with Failure                                    │        0 │
└─────────────────────────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 1.2 GiB
Avg memory 493.0 MiB
CPU user 22.1s
CPU sys 1.9s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.3 GiB
Avg memory 511.9 MiB
CPU user 21.8s
CPU sys 1.8s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpcds
CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │    5.57 ms │                                  6.05 ms │  1.09x slower │
│ QQuery 2  │   80.66 ms │                                 80.36 ms │     no change │
│ QQuery 3  │   28.30 ms │                                 28.12 ms │     no change │
│ QQuery 4  │  429.15 ms │                                438.57 ms │     no change │
│ QQuery 5  │   51.97 ms │                                 51.07 ms │     no change │
│ QQuery 6  │   38.38 ms │                                 37.73 ms │     no change │
│ QQuery 7  │   74.63 ms │                                 76.03 ms │     no change │
│ QQuery 8  │   36.84 ms │                                 37.33 ms │     no change │
│ QQuery 9  │   53.08 ms │                                 53.62 ms │     no change │
│ QQuery 10 │   62.61 ms │                                 62.53 ms │     no change │
│ QQuery 11 │  263.64 ms │                                308.53 ms │  1.17x slower │
│ QQuery 12 │   28.82 ms │                                 30.31 ms │  1.05x slower │
│ QQuery 13 │  115.59 ms │                                119.50 ms │     no change │
│ QQuery 14 │  392.29 ms │                                403.84 ms │     no change │
│ QQuery 15 │   59.31 ms │                                 52.52 ms │ +1.13x faster │
│ QQuery 16 │    7.05 ms │                                  6.51 ms │ +1.08x faster │
│ QQuery 17 │   80.89 ms │                                 79.37 ms │     no change │
│ QQuery 18 │  107.61 ms │                                102.15 ms │ +1.05x faster │
│ QQuery 19 │   43.74 ms │                                 40.97 ms │ +1.07x faster │
│ QQuery 20 │   39.90 ms │                                 39.58 ms │     no change │
│ QQuery 21 │   17.14 ms │                                 16.88 ms │     no change │
│ QQuery 22 │   66.50 ms │                                 63.98 ms │     no change │
│ QQuery 23 │  308.27 ms │                                307.38 ms │     no change │
│ QQuery 24 │  187.93 ms │                                205.86 ms │  1.10x slower │
│ QQuery 25 │  106.23 ms │                                107.58 ms │     no change │
│ QQuery 26 │   47.07 ms │                                 48.09 ms │     no change │
│ QQuery 27 │    5.92 ms │                                  6.89 ms │  1.16x slower │
│ QQuery 28 │   60.34 ms │                                 59.71 ms │     no change │
│ QQuery 29 │   94.70 ms │                                 93.22 ms │     no change │
│ QQuery 30 │   31.76 ms │                                 34.21 ms │  1.08x slower │
│ QQuery 31 │  107.22 ms │                                108.22 ms │     no change │
│ QQuery 32 │   21.09 ms │                                 20.03 ms │ +1.05x faster │
│ QQuery 33 │   36.62 ms │                                 37.14 ms │     no change │
│ QQuery 34 │    9.77 ms │                                 10.93 ms │  1.12x slower │
│ QQuery 35 │   70.34 ms │                                 72.65 ms │     no change │
│ QQuery 36 │    5.50 ms │                                  5.65 ms │     no change │
│ QQuery 37 │    6.62 ms │                                  6.71 ms │     no change │
│ QQuery 38 │   61.49 ms │                                 60.79 ms │     no change │
│ QQuery 39 │   72.28 ms │                                 73.68 ms │     no change │
│ QQuery 40 │   23.23 ms │                                 23.67 ms │     no change │
│ QQuery 41 │   10.80 ms │                                 11.09 ms │     no change │
│ QQuery 42 │   23.22 ms │                                 23.98 ms │     no change │
│ QQuery 43 │    5.06 ms │                                  5.06 ms │     no change │
│ QQuery 44 │    9.16 ms │                                  9.00 ms │     no change │
│ QQuery 45 │   43.49 ms │                                 36.90 ms │ +1.18x faster │
│ QQuery 46 │   11.48 ms │                                 11.58 ms │     no change │
│ QQuery 47 │  223.53 ms │                                241.17 ms │  1.08x slower │
│ QQuery 48 │   93.75 ms │                                 97.63 ms │     no change │
│ QQuery 49 │   73.76 ms │                                 73.71 ms │     no change │
│ QQuery 50 │   57.91 ms │                                 61.20 ms │  1.06x slower │
│ QQuery 51 │   92.54 ms │                                 94.18 ms │     no change │
│ QQuery 52 │   25.31 ms │                                 25.11 ms │     no change │
│ QQuery 53 │   28.47 ms │                                 28.79 ms │     no change │
│ QQuery 54 │   52.42 ms │                                 53.51 ms │     no change │
│ QQuery 55 │   23.19 ms │                                 23.11 ms │     no change │
│ QQuery 56 │   37.26 ms │                                 37.95 ms │     no change │
│ QQuery 57 │  167.87 ms │                                166.56 ms │     no change │
│ QQuery 58 │  108.75 ms │                                108.13 ms │     no change │
│ QQuery 59 │  119.15 ms │                                116.11 ms │     no change │
│ QQuery 60 │   39.88 ms │                                 41.20 ms │     no change │
│ QQuery 61 │   11.94 ms │                                 11.66 ms │     no change │
│ QQuery 62 │   44.99 ms │                                 43.63 ms │     no change │
│ QQuery 63 │   29.31 ms │                                 28.40 ms │     no change │
│ QQuery 64 │  370.89 ms │                                355.59 ms │     no change │
│ QQuery 65 │  138.24 ms │                                131.45 ms │     no change │
│ QQuery 66 │   80.24 ms │                                 75.98 ms │ +1.06x faster │
│ QQuery 67 │  254.10 ms │                                246.51 ms │     no change │
│ QQuery 68 │   11.70 ms │                                 11.48 ms │     no change │
│ QQuery 69 │   55.89 ms │                                 55.66 ms │     no change │
│ QQuery 70 │  104.22 ms │                                103.14 ms │     no change │
│ QQuery 71 │   34.60 ms │                                 35.13 ms │     no change │
│ QQuery 72 │ 1826.19 ms │                               1870.05 ms │     no change │
│ QQuery 73 │   10.48 ms │                                 10.78 ms │     no change │
│ QQuery 74 │  181.95 ms │                                152.49 ms │ +1.19x faster │
│ QQuery 75 │  148.59 ms │                                139.40 ms │ +1.07x faster │
│ QQuery 76 │   34.85 ms │                                 34.22 ms │     no change │
│ QQuery 77 │   60.76 ms │                                 60.06 ms │     no change │
│ QQuery 78 │  163.72 ms │                                159.08 ms │     no change │
│ QQuery 79 │   66.24 ms │                                 66.85 ms │     no change │
│ QQuery 80 │   95.31 ms │                                 93.20 ms │     no change │
│ QQuery 81 │   28.60 ms │                                 26.25 ms │ +1.09x faster │
│ QQuery 82 │   15.86 ms │                                 16.16 ms │     no change │
│ QQuery 83 │   32.97 ms │                                 35.96 ms │  1.09x slower │
│ QQuery 84 │   29.15 ms │                                 29.73 ms │     no change │
│ QQuery 85 │  101.34 ms │                                102.19 ms │     no change │
│ QQuery 86 │   26.55 ms │                                 25.14 ms │ +1.06x faster │
│ QQuery 87 │   60.41 ms │                                 62.96 ms │     no change │
│ QQuery 88 │   60.47 ms │                                 60.31 ms │     no change │
│ QQuery 89 │   36.36 ms │                                 34.56 ms │     no change │
│ QQuery 90 │   17.67 ms │                                 16.20 ms │ +1.09x faster │
│ QQuery 91 │   43.70 ms │                                 44.10 ms │     no change │
│ QQuery 92 │   28.45 ms │                                 31.55 ms │  1.11x slower │
│ QQuery 93 │   48.16 ms │                                 47.62 ms │     no change │
│ QQuery 94 │   38.39 ms │                                 37.25 ms │     no change │
│ QQuery 95 │   80.49 ms │                                 78.54 ms │     no change │
│ QQuery 96 │   23.19 ms │                                 24.53 ms │  1.06x slower │
│ QQuery 97 │   50.40 ms │                                 50.13 ms │     no change │
│ QQuery 98 │   42.34 ms │                                 42.12 ms │     no change │
│ QQuery 99 │   65.78 ms │                                 65.33 ms │     no change │
└───────────┴────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 9141.49ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 9199.34ms │
│ Average Time (HEAD)                                     │   92.34ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   92.92ms │
│ Queries Faster                                          │        12 │
│ Queries Slower                                          │        12 │
│ Queries with No Change                                  │        75 │
│ Queries with Failure                                    │         0 │
└─────────────────────────────────────────────────────────┴───────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.57 / 6.10 ±0.98 / 8.05 ms │              6.05 / 6.59 ±0.99 / 8.56 ms │  1.08x slower │
│ QQuery 2  │        80.66 / 82.51 ±1.35 / 83.93 ms │           80.36 / 82.08 ±1.46 / 83.99 ms │     no change │
│ QQuery 3  │        28.30 / 28.56 ±0.14 / 28.72 ms │           28.12 / 28.48 ±0.25 / 28.88 ms │     no change │
│ QQuery 4  │    429.15 / 471.01 ±30.32 / 496.17 ms │       438.57 / 454.53 ±15.23 / 480.48 ms │     no change │
│ QQuery 5  │        51.97 / 54.76 ±3.98 / 62.63 ms │           51.07 / 55.05 ±3.98 / 61.79 ms │     no change │
│ QQuery 6  │        38.38 / 38.70 ±0.36 / 39.39 ms │           37.73 / 39.13 ±1.15 / 41.14 ms │     no change │
│ QQuery 7  │        74.63 / 75.54 ±0.95 / 76.71 ms │           76.03 / 76.92 ±0.72 / 77.78 ms │     no change │
│ QQuery 8  │        36.84 / 37.18 ±0.26 / 37.48 ms │           37.33 / 37.50 ±0.13 / 37.66 ms │     no change │
│ QQuery 9  │        53.08 / 54.87 ±1.79 / 58.29 ms │           53.62 / 56.00 ±1.33 / 57.26 ms │     no change │
│ QQuery 10 │        62.61 / 63.25 ±0.42 / 63.74 ms │           62.53 / 63.28 ±0.51 / 64.13 ms │     no change │
│ QQuery 11 │    263.64 / 288.68 ±19.79 / 312.22 ms │        308.53 / 311.32 ±1.64 / 313.64 ms │  1.08x slower │
│ QQuery 12 │        28.82 / 31.81 ±2.35 / 35.02 ms │           30.31 / 30.79 ±0.43 / 31.44 ms │     no change │
│ QQuery 13 │     115.59 / 119.19 ±4.16 / 126.49 ms │        119.50 / 123.60 ±2.25 / 126.33 ms │     no change │
│ QQuery 14 │     392.29 / 402.77 ±6.71 / 413.17 ms │        403.84 / 409.31 ±6.83 / 420.55 ms │     no change │
│ QQuery 15 │        59.31 / 62.30 ±2.62 / 66.80 ms │           52.52 / 55.37 ±2.36 / 58.94 ms │ +1.13x faster │
│ QQuery 16 │           7.05 / 7.21 ±0.12 / 7.38 ms │              6.51 / 6.74 ±0.35 / 7.44 ms │ +1.07x faster │
│ QQuery 17 │        80.89 / 81.81 ±1.41 / 84.62 ms │           79.37 / 82.64 ±2.18 / 84.76 ms │     no change │
│ QQuery 18 │     107.61 / 113.38 ±3.29 / 117.63 ms │        102.15 / 103.96 ±1.19 / 104.99 ms │ +1.09x faster │
│ QQuery 19 │        43.74 / 44.86 ±1.35 / 47.46 ms │           40.97 / 41.42 ±0.75 / 42.92 ms │ +1.08x faster │
│ QQuery 20 │        39.90 / 40.51 ±0.48 / 41.06 ms │           39.58 / 40.51 ±0.66 / 41.31 ms │     no change │
│ QQuery 21 │        17.14 / 17.47 ±0.36 / 18.11 ms │           16.88 / 18.15 ±1.16 / 20.21 ms │     no change │
│ QQuery 22 │        66.50 / 70.48 ±3.12 / 73.20 ms │           63.98 / 64.30 ±0.32 / 64.81 ms │ +1.10x faster │
│ QQuery 23 │    308.27 / 317.90 ±13.02 / 342.97 ms │       307.38 / 337.88 ±17.76 / 360.31 ms │  1.06x slower │
│ QQuery 24 │    187.93 / 198.13 ±10.12 / 216.59 ms │        205.86 / 211.65 ±6.54 / 224.38 ms │  1.07x slower │
│ QQuery 25 │     106.23 / 112.02 ±4.62 / 117.52 ms │        107.58 / 111.40 ±2.85 / 116.32 ms │     no change │
│ QQuery 26 │        47.07 / 47.79 ±0.42 / 48.24 ms │           48.09 / 49.78 ±0.98 / 50.73 ms │     no change │
│ QQuery 27 │           5.92 / 6.05 ±0.17 / 6.36 ms │              6.89 / 6.99 ±0.10 / 7.16 ms │  1.16x slower │
│ QQuery 28 │        60.34 / 60.54 ±0.25 / 61.02 ms │           59.71 / 62.07 ±4.15 / 70.37 ms │     no change │
│ QQuery 29 │      94.70 / 101.18 ±5.66 / 110.11 ms │          93.22 / 96.01 ±2.55 / 100.07 ms │ +1.05x faster │
│ QQuery 30 │        31.76 / 32.17 ±0.28 / 32.47 ms │           34.21 / 35.53 ±0.82 / 36.50 ms │  1.10x slower │
│ QQuery 31 │     107.22 / 111.88 ±5.31 / 119.70 ms │        108.22 / 111.42 ±4.81 / 120.92 ms │     no change │
│ QQuery 32 │        21.09 / 22.14 ±0.59 / 22.60 ms │           20.03 / 20.70 ±0.55 / 21.53 ms │ +1.07x faster │
│ QQuery 33 │        36.62 / 37.35 ±1.13 / 39.55 ms │           37.14 / 37.49 ±0.20 / 37.70 ms │     no change │
│ QQuery 34 │         9.77 / 10.02 ±0.28 / 10.54 ms │           10.93 / 11.31 ±0.30 / 11.80 ms │  1.13x slower │
│ QQuery 35 │        70.34 / 71.31 ±0.72 / 72.39 ms │           72.65 / 76.24 ±3.28 / 81.11 ms │  1.07x slower │
│ QQuery 36 │           5.50 / 5.64 ±0.22 / 6.07 ms │              5.65 / 5.79 ±0.22 / 6.23 ms │     no change │
│ QQuery 37 │           6.62 / 6.73 ±0.12 / 6.92 ms │              6.71 / 7.05 ±0.20 / 7.27 ms │     no change │
│ QQuery 38 │        61.49 / 66.45 ±2.76 / 69.15 ms │           60.79 / 61.46 ±0.62 / 62.51 ms │ +1.08x faster │
│ QQuery 39 │        72.28 / 72.89 ±0.57 / 73.58 ms │           73.68 / 77.64 ±3.33 / 81.77 ms │  1.07x slower │
│ QQuery 40 │        23.23 / 23.48 ±0.23 / 23.79 ms │           23.67 / 25.33 ±2.38 / 29.99 ms │  1.08x slower │
│ QQuery 41 │        10.80 / 11.18 ±0.28 / 11.66 ms │           11.09 / 11.30 ±0.17 / 11.62 ms │     no change │
│ QQuery 42 │        23.22 / 23.44 ±0.12 / 23.59 ms │           23.98 / 24.28 ±0.31 / 24.74 ms │     no change │
│ QQuery 43 │           5.06 / 5.20 ±0.18 / 5.55 ms │              5.06 / 5.20 ±0.18 / 5.55 ms │     no change │
│ QQuery 44 │         9.16 / 10.59 ±2.65 / 15.90 ms │              9.00 / 9.12 ±0.12 / 9.29 ms │ +1.16x faster │
│ QQuery 45 │        43.49 / 48.90 ±2.72 / 50.76 ms │           36.90 / 38.55 ±1.60 / 41.60 ms │ +1.27x faster │
│ QQuery 46 │        11.48 / 11.89 ±0.36 / 12.36 ms │           11.58 / 12.01 ±0.43 / 12.79 ms │     no change │
│ QQuery 47 │    223.53 / 235.60 ±18.38 / 272.00 ms │        241.17 / 250.27 ±6.16 / 259.18 ms │  1.06x slower │
│ QQuery 48 │        93.75 / 94.68 ±0.57 / 95.53 ms │          97.63 / 99.47 ±3.28 / 106.02 ms │  1.05x slower │
│ QQuery 49 │        73.76 / 75.77 ±3.36 / 82.45 ms │           73.71 / 75.91 ±2.63 / 81.05 ms │     no change │
│ QQuery 50 │        57.91 / 58.55 ±0.51 / 59.46 ms │           61.20 / 61.88 ±0.69 / 63.21 ms │  1.06x slower │
│ QQuery 51 │       92.54 / 95.97 ±3.13 / 101.52 ms │          94.18 / 98.87 ±5.04 / 108.52 ms │     no change │
│ QQuery 52 │        25.31 / 25.52 ±0.11 / 25.60 ms │           25.11 / 25.49 ±0.41 / 26.26 ms │     no change │
│ QQuery 53 │        28.47 / 29.13 ±0.64 / 30.11 ms │           28.79 / 29.00 ±0.20 / 29.36 ms │     no change │
│ QQuery 54 │        52.42 / 52.97 ±0.40 / 53.42 ms │           53.51 / 54.44 ±1.34 / 57.07 ms │     no change │
│ QQuery 55 │        23.19 / 23.47 ±0.40 / 24.26 ms │           23.11 / 23.67 ±0.37 / 24.10 ms │     no change │
│ QQuery 56 │        37.26 / 38.01 ±0.55 / 38.80 ms │           37.95 / 38.58 ±0.72 / 39.68 ms │     no change │
│ QQuery 57 │     167.87 / 173.95 ±8.66 / 190.67 ms │        166.56 / 172.40 ±7.59 / 187.09 ms │     no change │
│ QQuery 58 │     108.75 / 114.22 ±3.04 / 117.60 ms │        108.13 / 112.09 ±2.54 / 115.45 ms │     no change │
│ QQuery 59 │     119.15 / 119.40 ±0.19 / 119.65 ms │        116.11 / 116.67 ±0.32 / 117.07 ms │     no change │
│ QQuery 60 │        39.88 / 40.93 ±0.84 / 41.77 ms │           41.20 / 42.19 ±0.77 / 43.57 ms │     no change │
│ QQuery 61 │        11.94 / 12.08 ±0.10 / 12.25 ms │           11.66 / 12.44 ±0.43 / 12.79 ms │     no change │
│ QQuery 62 │        44.99 / 45.82 ±1.09 / 47.93 ms │           43.63 / 43.94 ±0.21 / 44.25 ms │     no change │
│ QQuery 63 │        29.31 / 29.69 ±0.27 / 30.15 ms │           28.40 / 28.69 ±0.19 / 28.92 ms │     no change │
│ QQuery 64 │     370.89 / 379.00 ±4.49 / 383.93 ms │        355.59 / 369.36 ±8.82 / 378.72 ms │     no change │
│ QQuery 65 │     138.24 / 140.29 ±2.04 / 144.20 ms │        131.45 / 137.23 ±3.46 / 141.19 ms │     no change │
│ QQuery 66 │        80.24 / 84.01 ±1.99 / 85.87 ms │           75.98 / 77.73 ±1.45 / 80.15 ms │ +1.08x faster │
│ QQuery 67 │     254.10 / 263.96 ±5.32 / 269.73 ms │        246.51 / 252.81 ±7.76 / 267.89 ms │     no change │
│ QQuery 68 │        11.70 / 14.11 ±4.25 / 22.59 ms │           11.48 / 11.80 ±0.30 / 12.36 ms │ +1.20x faster │
│ QQuery 69 │        55.89 / 56.73 ±0.49 / 57.27 ms │           55.66 / 58.03 ±1.72 / 59.80 ms │     no change │
│ QQuery 70 │     104.22 / 107.20 ±2.56 / 110.35 ms │        103.14 / 104.76 ±2.19 / 109.03 ms │     no change │
│ QQuery 71 │        34.60 / 35.24 ±0.71 / 36.55 ms │           35.13 / 38.50 ±5.83 / 50.13 ms │  1.09x slower │
│ QQuery 72 │ 1826.19 / 1864.83 ±21.96 / 1894.08 ms │    1870.05 / 1934.51 ±46.29 / 2001.78 ms │     no change │
│ QQuery 73 │        10.48 / 11.42 ±0.86 / 12.47 ms │           10.78 / 11.19 ±0.30 / 11.54 ms │     no change │
│ QQuery 74 │     181.95 / 185.94 ±3.23 / 191.61 ms │       152.49 / 162.94 ±14.43 / 191.56 ms │ +1.14x faster │
│ QQuery 75 │     148.59 / 151.64 ±1.59 / 152.76 ms │        139.40 / 145.84 ±5.04 / 153.21 ms │     no change │
│ QQuery 76 │        34.85 / 36.19 ±1.29 / 38.32 ms │           34.22 / 35.07 ±1.35 / 37.75 ms │     no change │
│ QQuery 77 │        60.76 / 63.82 ±2.33 / 66.62 ms │           60.06 / 62.16 ±2.08 / 65.36 ms │     no change │
│ QQuery 78 │     163.72 / 170.26 ±6.49 / 182.57 ms │        159.08 / 165.26 ±7.71 / 179.71 ms │     no change │
│ QQuery 79 │        66.24 / 66.82 ±0.52 / 67.57 ms │           66.85 / 72.33 ±4.70 / 81.09 ms │  1.08x slower │
│ QQuery 80 │       95.31 / 98.21 ±2.41 / 101.08 ms │           93.20 / 96.03 ±1.80 / 98.78 ms │     no change │
│ QQuery 81 │        28.60 / 29.11 ±0.79 / 30.68 ms │           26.25 / 26.46 ±0.21 / 26.76 ms │ +1.10x faster │
│ QQuery 82 │        15.86 / 17.08 ±1.11 / 19.08 ms │           16.16 / 17.12 ±0.89 / 18.63 ms │     no change │
│ QQuery 83 │        32.97 / 33.31 ±0.23 / 33.68 ms │           35.96 / 36.34 ±0.32 / 36.73 ms │  1.09x slower │
│ QQuery 84 │        29.15 / 29.59 ±0.29 / 29.93 ms │           29.73 / 32.32 ±3.96 / 40.05 ms │  1.09x slower │
│ QQuery 85 │     101.34 / 106.30 ±4.78 / 113.93 ms │        102.19 / 103.23 ±0.61 / 103.87 ms │     no change │
│ QQuery 86 │        26.55 / 27.97 ±0.75 / 28.56 ms │           25.14 / 25.34 ±0.12 / 25.48 ms │ +1.10x faster │
│ QQuery 87 │        60.41 / 61.39 ±0.82 / 62.64 ms │           62.96 / 69.01 ±4.12 / 75.63 ms │  1.12x slower │
│ QQuery 88 │        60.47 / 61.42 ±1.38 / 64.13 ms │           60.31 / 60.79 ±0.33 / 61.31 ms │     no change │
│ QQuery 89 │        36.36 / 37.11 ±0.61 / 37.82 ms │           34.56 / 35.21 ±0.76 / 36.65 ms │ +1.05x faster │
│ QQuery 90 │        17.67 / 17.88 ±0.15 / 18.12 ms │           16.20 / 16.50 ±0.23 / 16.84 ms │ +1.08x faster │
│ QQuery 91 │        43.70 / 46.02 ±2.86 / 51.39 ms │           44.10 / 45.41 ±0.99 / 46.50 ms │     no change │
│ QQuery 92 │        28.45 / 28.92 ±0.32 / 29.36 ms │           31.55 / 32.94 ±2.38 / 37.69 ms │  1.14x slower │
│ QQuery 93 │        48.16 / 49.48 ±0.72 / 50.15 ms │           47.62 / 48.83 ±0.76 / 49.94 ms │     no change │
│ QQuery 94 │        38.39 / 39.82 ±1.94 / 43.63 ms │           37.25 / 37.63 ±0.33 / 38.16 ms │ +1.06x faster │
│ QQuery 95 │        80.49 / 84.21 ±3.11 / 87.35 ms │           78.54 / 81.79 ±2.12 / 85.02 ms │     no change │
│ QQuery 96 │        23.19 / 23.54 ±0.35 / 24.16 ms │           24.53 / 24.81 ±0.21 / 25.12 ms │  1.05x slower │
│ QQuery 97 │        50.40 / 51.40 ±0.88 / 52.49 ms │           50.13 / 53.89 ±4.99 / 63.71 ms │     no change │
│ QQuery 98 │        42.34 / 44.96 ±3.09 / 50.97 ms │           42.12 / 43.14 ±0.69 / 43.99 ms │     no change │
│ QQuery 99 │        65.78 / 67.46 ±1.37 / 68.93 ms │           65.33 / 66.22 ±1.39 / 68.97 ms │     no change │
└───────────┴───────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 9460.22ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 9512.41ms │
│ Average Time (HEAD)                                     │   95.56ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   96.08ms │
│ Queries Faster                                          │        18 │
│ Queries Slower                                          │        20 │
│ Queries with No Change                                  │        61 │
│ Queries with Failure                                    │         0 │
└─────────────────────────────────────────────────────────┴───────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 50.0s
Peak memory 2.1 GiB
Avg memory 1.4 GiB
CPU user 206.7s
CPU sys 5.5s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 50.0s
Peak memory 2.0 GiB
Avg memory 1.4 GiB
CPU user 204.6s
CPU sys 5.6s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpcds
CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃    Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ QQuery 1  │    6.06 ms │                                  5.92 ms │ no change │
│ QQuery 2  │   81.84 ms │                                 81.55 ms │ no change │
│ QQuery 3  │   29.13 ms │                                 28.85 ms │ no change │
│ QQuery 4  │  497.05 ms │                                499.87 ms │ no change │
│ QQuery 5  │   52.17 ms │                                 52.40 ms │ no change │
│ QQuery 6  │   37.40 ms │                                 37.15 ms │ no change │
│ QQuery 7  │   76.02 ms │                                 75.24 ms │ no change │
│ QQuery 8  │   37.24 ms │                                 37.38 ms │ no change │
│ QQuery 9  │   53.59 ms │                                 53.38 ms │ no change │
│ QQuery 10 │   62.74 ms │                                 62.41 ms │ no change │
│ QQuery 11 │  312.72 ms │                                312.80 ms │ no change │
│ QQuery 12 │   30.18 ms │                                 30.18 ms │ no change │
│ QQuery 13 │  121.34 ms │                                120.94 ms │ no change │
│ QQuery 14 │  397.89 ms │                                402.25 ms │ no change │
│ QQuery 15 │   59.99 ms │                                 60.24 ms │ no change │
│ QQuery 16 │    7.07 ms │                                  6.90 ms │ no change │
│ QQuery 17 │   80.29 ms │                                 79.45 ms │ no change │
│ QQuery 18 │  108.21 ms │                                107.66 ms │ no change │
│ QQuery 19 │   42.39 ms │                                 42.38 ms │ no change │
│ QQuery 20 │   37.43 ms │                                 36.90 ms │ no change │
│ QQuery 21 │   17.84 ms │                                 17.51 ms │ no change │
│ QQuery 22 │   69.57 ms │                                 69.01 ms │ no change │
│ QQuery 23 │  339.90 ms │                                334.18 ms │ no change │
│ QQuery 24 │  209.12 ms │                                208.28 ms │ no change │
│ QQuery 25 │  110.72 ms │                                110.13 ms │ no change │
│ QQuery 26 │   49.33 ms │                                 49.23 ms │ no change │
│ QQuery 27 │    6.67 ms │                                  6.36 ms │ no change │
│ QQuery 28 │   58.43 ms │                                 57.16 ms │ no change │
│ QQuery 29 │   96.50 ms │                                 96.31 ms │ no change │
│ QQuery 30 │   34.29 ms │                                 33.88 ms │ no change │
│ QQuery 31 │  112.17 ms │                                111.42 ms │ no change │
│ QQuery 32 │   21.18 ms │                                 21.24 ms │ no change │
│ QQuery 33 │   38.44 ms │                                 38.15 ms │ no change │
│ QQuery 34 │   10.65 ms │                                 10.65 ms │ no change │
│ QQuery 35 │   78.30 ms │                                 76.14 ms │ no change │
│ QQuery 36 │    6.29 ms │                                  6.30 ms │ no change │
│ QQuery 37 │    7.41 ms │                                  7.33 ms │ no change │
│ QQuery 38 │   64.74 ms │                                 64.46 ms │ no change │
│ QQuery 39 │   77.48 ms │                                 77.29 ms │ no change │
│ QQuery 40 │   25.59 ms │                                 25.67 ms │ no change │
│ QQuery 41 │   11.86 ms │                                 12.10 ms │ no change │
│ QQuery 42 │   24.42 ms │                                 24.35 ms │ no change │
│ QQuery 43 │    5.59 ms │                                  5.69 ms │ no change │
│ QQuery 44 │    9.76 ms │                                  9.90 ms │ no change │
│ QQuery 45 │   44.03 ms │                                 44.47 ms │ no change │
│ QQuery 46 │   12.54 ms │                                 12.52 ms │ no change │
│ QQuery 47 │  251.61 ms │                                254.77 ms │ no change │
│ QQuery 48 │   96.75 ms │                                 98.03 ms │ no change │
│ QQuery 49 │   72.25 ms │                                 72.71 ms │ no change │
│ QQuery 50 │   59.75 ms │                                 59.80 ms │ no change │
│ QQuery 51 │   95.34 ms │                                 94.49 ms │ no change │
│ QQuery 52 │   24.55 ms │                                 24.58 ms │ no change │
│ QQuery 53 │   29.72 ms │                                 29.82 ms │ no change │
│ QQuery 54 │   56.07 ms │                                 55.62 ms │ no change │
│ QQuery 55 │   23.83 ms │                                 24.07 ms │ no change │
│ QQuery 56 │   39.52 ms │                                 39.24 ms │ no change │
│ QQuery 57 │  174.91 ms │                                173.89 ms │ no change │
│ QQuery 58 │  110.66 ms │                                110.34 ms │ no change │
│ QQuery 59 │  118.82 ms │                                118.73 ms │ no change │
│ QQuery 60 │   39.70 ms │                                 39.60 ms │ no change │
│ QQuery 61 │   12.36 ms │                                 12.17 ms │ no change │
│ QQuery 62 │   45.71 ms │                                 45.08 ms │ no change │
│ QQuery 63 │   29.89 ms │                                 30.11 ms │ no change │
│ QQuery 64 │  374.35 ms │                                378.16 ms │ no change │
│ QQuery 65 │  134.85 ms │                                136.22 ms │ no change │
│ QQuery 66 │   81.89 ms │                                 80.58 ms │ no change │
│ QQuery 67 │  266.56 ms │                                268.61 ms │ no change │
│ QQuery 68 │   12.65 ms │                                 12.58 ms │ no change │
│ QQuery 69 │   57.90 ms │                                 57.48 ms │ no change │
│ QQuery 70 │  105.96 ms │                                105.45 ms │ no change │
│ QQuery 71 │   36.14 ms │                                 35.72 ms │ no change │
│ QQuery 72 │ 1790.95 ms │                               1746.55 ms │ no change │
│ QQuery 73 │   10.73 ms │                                 10.29 ms │ no change │
│ QQuery 74 │  181.42 ms │                                179.13 ms │ no change │
│ QQuery 75 │  145.75 ms │                                144.98 ms │ no change │
│ QQuery 76 │   35.56 ms │                                 35.36 ms │ no change │
│ QQuery 77 │   62.55 ms │                                 62.33 ms │ no change │
│ QQuery 78 │  171.67 ms │                                168.68 ms │ no change │
│ QQuery 79 │   69.51 ms │                                 68.46 ms │ no change │
│ QQuery 80 │   99.81 ms │                                100.96 ms │ no change │
│ QQuery 81 │   28.33 ms │                                 27.29 ms │ no change │
│ QQuery 82 │   17.51 ms │                                 18.02 ms │ no change │
│ QQuery 83 │   34.92 ms │                                 35.02 ms │ no change │
│ QQuery 84 │   30.29 ms │                                 30.25 ms │ no change │
│ QQuery 85 │  105.13 ms │                                105.68 ms │ no change │
│ QQuery 86 │   26.79 ms │                                 26.11 ms │ no change │
│ QQuery 87 │   65.15 ms │                                 65.50 ms │ no change │
│ QQuery 88 │   62.34 ms │                                 62.42 ms │ no change │
│ QQuery 89 │   36.16 ms │                                 35.88 ms │ no change │
│ QQuery 90 │   17.32 ms │                                 17.43 ms │ no change │
│ QQuery 91 │   45.49 ms │                                 45.56 ms │ no change │
│ QQuery 92 │   31.23 ms │                                 31.03 ms │ no change │
│ QQuery 93 │   50.64 ms │                                 50.28 ms │ no change │
│ QQuery 94 │   39.91 ms │                                 39.65 ms │ no change │
│ QQuery 95 │   81.79 ms │                                 80.84 ms │ no change │
│ QQuery 96 │   24.20 ms │                                 24.22 ms │ no change │
│ QQuery 97 │   52.42 ms │                                 52.01 ms │ no change │
│ QQuery 98 │   44.44 ms │                                 43.18 ms │ no change │
│ QQuery 99 │   66.56 ms │                                 66.58 ms │ no change │
└───────────┴────────────┴──────────────────────────────────────────┴───────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 9453.90ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 9395.06ms │
│ Average Time (HEAD)                                     │   95.49ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   94.90ms │
│ Queries Faster                                          │         0 │
│ Queries Slower                                          │         0 │
│ Queries with No Change                                  │        99 │
│ Queries with Failure                                    │         0 │
└─────────────────────────────────────────────────────────┴───────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           6.06 / 6.56 ±0.92 / 8.40 ms │              5.92 / 6.44 ±0.99 / 8.41 ms │     no change │
│ QQuery 2  │        81.84 / 82.06 ±0.18 / 82.27 ms │           81.55 / 81.91 ±0.22 / 82.16 ms │     no change │
│ QQuery 3  │        29.13 / 29.39 ±0.19 / 29.69 ms │           28.85 / 29.20 ±0.26 / 29.53 ms │     no change │
│ QQuery 4  │     497.05 / 503.67 ±3.87 / 507.97 ms │        499.87 / 503.77 ±3.05 / 508.32 ms │     no change │
│ QQuery 5  │        52.17 / 52.66 ±0.33 / 53.04 ms │           52.40 / 52.72 ±0.23 / 53.07 ms │     no change │
│ QQuery 6  │        37.40 / 37.93 ±0.33 / 38.25 ms │           37.15 / 37.37 ±0.29 / 37.89 ms │     no change │
│ QQuery 7  │        76.02 / 76.59 ±0.46 / 77.03 ms │           75.24 / 75.72 ±0.51 / 76.42 ms │     no change │
│ QQuery 8  │        37.24 / 39.29 ±2.91 / 45.06 ms │           37.38 / 39.24 ±2.21 / 43.43 ms │     no change │
│ QQuery 9  │        53.59 / 55.78 ±2.05 / 59.01 ms │           53.38 / 55.73 ±1.99 / 59.36 ms │     no change │
│ QQuery 10 │        62.74 / 63.37 ±0.43 / 63.96 ms │           62.41 / 63.08 ±0.35 / 63.43 ms │     no change │
│ QQuery 11 │     312.72 / 316.54 ±2.74 / 319.90 ms │        312.80 / 315.93 ±3.35 / 322.42 ms │     no change │
│ QQuery 12 │        30.18 / 30.62 ±0.38 / 31.21 ms │           30.18 / 30.64 ±0.26 / 30.90 ms │     no change │
│ QQuery 13 │     121.34 / 122.45 ±1.51 / 125.42 ms │        120.94 / 121.61 ±0.49 / 122.30 ms │     no change │
│ QQuery 14 │     397.89 / 401.81 ±3.58 / 408.18 ms │        402.25 / 407.22 ±2.90 / 410.22 ms │     no change │
│ QQuery 15 │        59.99 / 62.45 ±1.37 / 63.66 ms │           60.24 / 62.51 ±1.79 / 65.68 ms │     no change │
│ QQuery 16 │           7.07 / 7.31 ±0.15 / 7.48 ms │              6.90 / 7.02 ±0.09 / 7.15 ms │     no change │
│ QQuery 17 │        80.29 / 81.68 ±1.14 / 83.71 ms │           79.45 / 81.56 ±2.26 / 85.96 ms │     no change │
│ QQuery 18 │     108.21 / 110.77 ±1.78 / 113.47 ms │        107.66 / 109.56 ±1.17 / 110.86 ms │     no change │
│ QQuery 19 │        42.39 / 42.91 ±0.39 / 43.44 ms │           42.38 / 42.63 ±0.22 / 42.94 ms │     no change │
│ QQuery 20 │        37.43 / 38.01 ±0.45 / 38.47 ms │           36.90 / 38.62 ±2.13 / 42.81 ms │     no change │
│ QQuery 21 │        17.84 / 18.26 ±0.71 / 19.67 ms │           17.51 / 17.71 ±0.23 / 18.10 ms │     no change │
│ QQuery 22 │        69.57 / 70.88 ±0.82 / 71.79 ms │           69.01 / 70.81 ±2.35 / 75.43 ms │     no change │
│ QQuery 23 │     339.90 / 345.58 ±5.82 / 354.29 ms │        334.18 / 340.08 ±4.99 / 348.98 ms │     no change │
│ QQuery 24 │     209.12 / 213.66 ±6.62 / 226.77 ms │        208.28 / 212.63 ±6.62 / 225.77 ms │     no change │
│ QQuery 25 │     110.72 / 111.85 ±1.81 / 115.46 ms │        110.13 / 112.17 ±2.11 / 115.97 ms │     no change │
│ QQuery 26 │        49.33 / 51.20 ±3.26 / 57.72 ms │           49.23 / 50.81 ±2.51 / 55.79 ms │     no change │
│ QQuery 27 │           6.67 / 6.82 ±0.12 / 6.96 ms │              6.36 / 6.62 ±0.17 / 6.78 ms │     no change │
│ QQuery 28 │        58.43 / 61.34 ±1.74 / 62.82 ms │           57.16 / 61.15 ±2.13 / 63.13 ms │     no change │
│ QQuery 29 │        96.50 / 97.77 ±1.13 / 99.84 ms │          96.31 / 98.14 ±1.95 / 101.23 ms │     no change │
│ QQuery 30 │        34.29 / 36.25 ±3.17 / 42.57 ms │           33.88 / 34.79 ±1.36 / 37.47 ms │     no change │
│ QQuery 31 │     112.17 / 112.68 ±0.33 / 113.09 ms │        111.42 / 112.37 ±0.85 / 113.67 ms │     no change │
│ QQuery 32 │        21.18 / 21.45 ±0.18 / 21.70 ms │           21.24 / 21.59 ±0.31 / 22.15 ms │     no change │
│ QQuery 33 │        38.44 / 38.80 ±0.35 / 39.41 ms │           38.15 / 38.65 ±0.41 / 39.40 ms │     no change │
│ QQuery 34 │        10.65 / 10.79 ±0.12 / 10.97 ms │           10.65 / 10.81 ±0.11 / 10.94 ms │     no change │
│ QQuery 35 │        78.30 / 80.63 ±2.45 / 85.14 ms │           76.14 / 79.66 ±3.31 / 85.96 ms │     no change │
│ QQuery 36 │           6.29 / 6.35 ±0.08 / 6.51 ms │              6.30 / 6.37 ±0.10 / 6.57 ms │     no change │
│ QQuery 37 │           7.41 / 7.52 ±0.08 / 7.64 ms │              7.33 / 7.52 ±0.12 / 7.70 ms │     no change │
│ QQuery 38 │        64.74 / 65.50 ±0.55 / 66.42 ms │           64.46 / 65.75 ±0.90 / 66.75 ms │     no change │
│ QQuery 39 │        77.48 / 78.59 ±0.78 / 79.80 ms │           77.29 / 78.47 ±1.34 / 80.68 ms │     no change │
│ QQuery 40 │        25.59 / 26.18 ±0.54 / 27.10 ms │           25.67 / 26.19 ±0.64 / 27.42 ms │     no change │
│ QQuery 41 │        11.86 / 11.94 ±0.06 / 12.03 ms │           12.10 / 12.23 ±0.17 / 12.55 ms │     no change │
│ QQuery 42 │        24.42 / 25.24 ±0.55 / 26.14 ms │           24.35 / 25.04 ±0.73 / 26.43 ms │     no change │
│ QQuery 43 │           5.59 / 5.66 ±0.07 / 5.78 ms │              5.69 / 5.74 ±0.04 / 5.80 ms │     no change │
│ QQuery 44 │           9.76 / 9.87 ±0.06 / 9.92 ms │            9.90 / 10.10 ±0.15 / 10.25 ms │     no change │
│ QQuery 45 │        44.03 / 44.59 ±0.45 / 45.38 ms │           44.47 / 45.43 ±0.75 / 46.79 ms │     no change │
│ QQuery 46 │        12.54 / 12.63 ±0.06 / 12.70 ms │           12.52 / 12.78 ±0.17 / 13.03 ms │     no change │
│ QQuery 47 │     251.61 / 257.55 ±3.45 / 261.90 ms │        254.77 / 257.73 ±2.22 / 260.78 ms │     no change │
│ QQuery 48 │        96.75 / 97.82 ±0.95 / 99.33 ms │           98.03 / 98.37 ±0.34 / 98.95 ms │     no change │
│ QQuery 49 │        72.25 / 72.95 ±0.59 / 73.79 ms │           72.71 / 73.19 ±0.50 / 74.12 ms │     no change │
│ QQuery 50 │        59.75 / 63.20 ±3.92 / 70.44 ms │           59.80 / 62.09 ±2.45 / 66.69 ms │     no change │
│ QQuery 51 │        95.34 / 96.76 ±1.05 / 98.28 ms │           94.49 / 96.18 ±1.54 / 98.93 ms │     no change │
│ QQuery 52 │        24.55 / 24.98 ±0.34 / 25.59 ms │           24.58 / 25.05 ±0.53 / 26.08 ms │     no change │
│ QQuery 53 │        29.72 / 30.00 ±0.20 / 30.35 ms │           29.82 / 31.50 ±3.00 / 37.48 ms │  1.05x slower │
│ QQuery 54 │        56.07 / 59.86 ±5.17 / 69.95 ms │           55.62 / 56.15 ±0.56 / 56.93 ms │ +1.07x faster │
│ QQuery 55 │        23.83 / 24.56 ±0.38 / 24.92 ms │           24.07 / 24.35 ±0.31 / 24.76 ms │     no change │
│ QQuery 56 │        39.52 / 40.23 ±0.56 / 41.19 ms │           39.24 / 39.95 ±0.41 / 40.49 ms │     no change │
│ QQuery 57 │     174.91 / 176.62 ±1.91 / 180.29 ms │        173.89 / 175.75 ±1.62 / 177.75 ms │     no change │
│ QQuery 58 │     110.66 / 113.14 ±2.21 / 117.06 ms │        110.34 / 112.70 ±2.83 / 118.20 ms │     no change │
│ QQuery 59 │     118.82 / 120.04 ±1.14 / 122.15 ms │        118.73 / 119.92 ±0.69 / 120.86 ms │     no change │
│ QQuery 60 │        39.70 / 40.15 ±0.47 / 40.92 ms │           39.60 / 40.00 ±0.31 / 40.42 ms │     no change │
│ QQuery 61 │        12.36 / 12.61 ±0.14 / 12.77 ms │           12.17 / 12.39 ±0.15 / 12.56 ms │     no change │
│ QQuery 62 │        45.71 / 47.32 ±2.92 / 53.15 ms │           45.08 / 46.57 ±2.36 / 51.21 ms │     no change │
│ QQuery 63 │        29.89 / 30.26 ±0.33 / 30.74 ms │           30.11 / 31.00 ±0.96 / 32.79 ms │     no change │
│ QQuery 64 │     374.35 / 387.68 ±7.67 / 394.44 ms │        378.16 / 379.97 ±1.50 / 382.28 ms │     no change │
│ QQuery 65 │     134.85 / 138.92 ±2.17 / 141.36 ms │        136.22 / 137.37 ±0.88 / 138.91 ms │     no change │
│ QQuery 66 │        81.89 / 82.66 ±1.13 / 84.88 ms │           80.58 / 83.80 ±4.17 / 91.73 ms │     no change │
│ QQuery 67 │     266.56 / 271.89 ±2.81 / 274.35 ms │        268.61 / 271.38 ±2.34 / 274.02 ms │     no change │
│ QQuery 68 │        12.65 / 12.78 ±0.15 / 13.07 ms │           12.58 / 12.80 ±0.14 / 12.99 ms │     no change │
│ QQuery 69 │        57.90 / 58.35 ±0.32 / 58.82 ms │           57.48 / 58.17 ±0.38 / 58.54 ms │     no change │
│ QQuery 70 │     105.96 / 110.77 ±7.50 / 125.72 ms │        105.45 / 108.70 ±3.05 / 113.27 ms │     no change │
│ QQuery 71 │        36.14 / 36.38 ±0.22 / 36.79 ms │           35.72 / 35.97 ±0.15 / 36.14 ms │     no change │
│ QQuery 72 │ 1790.95 / 1874.97 ±45.15 / 1915.60 ms │    1746.55 / 1856.44 ±76.12 / 1981.16 ms │     no change │
│ QQuery 73 │        10.73 / 11.47 ±0.69 / 12.62 ms │           10.29 / 10.56 ±0.22 / 10.93 ms │ +1.09x faster │
│ QQuery 74 │     181.42 / 187.45 ±4.88 / 196.12 ms │        179.13 / 182.07 ±2.15 / 184.19 ms │     no change │
│ QQuery 75 │     145.75 / 147.25 ±1.49 / 150.03 ms │        144.98 / 148.28 ±2.61 / 151.65 ms │     no change │
│ QQuery 76 │        35.56 / 35.92 ±0.27 / 36.30 ms │           35.36 / 35.68 ±0.28 / 36.14 ms │     no change │
│ QQuery 77 │        62.55 / 66.50 ±5.67 / 77.75 ms │           62.33 / 62.91 ±0.34 / 63.24 ms │ +1.06x faster │
│ QQuery 78 │     171.67 / 177.20 ±4.22 / 181.37 ms │        168.68 / 173.46 ±3.31 / 178.35 ms │     no change │
│ QQuery 79 │        69.51 / 70.23 ±0.74 / 71.39 ms │           68.46 / 69.50 ±0.80 / 70.85 ms │     no change │
│ QQuery 80 │      99.81 / 100.69 ±0.99 / 102.34 ms │        100.96 / 101.63 ±0.64 / 102.83 ms │     no change │
│ QQuery 81 │        28.33 / 29.32 ±1.27 / 31.83 ms │           27.29 / 27.69 ±0.37 / 28.12 ms │ +1.06x faster │
│ QQuery 82 │        17.51 / 17.88 ±0.43 / 18.67 ms │           18.02 / 19.90 ±2.34 / 24.04 ms │  1.11x slower │
│ QQuery 83 │        34.92 / 35.24 ±0.35 / 35.87 ms │           35.02 / 35.47 ±0.41 / 36.23 ms │     no change │
│ QQuery 84 │        30.29 / 30.72 ±0.33 / 31.26 ms │           30.25 / 31.73 ±2.30 / 36.29 ms │     no change │
│ QQuery 85 │     105.13 / 108.46 ±4.20 / 116.38 ms │        105.68 / 106.08 ±0.26 / 106.46 ms │     no change │
│ QQuery 86 │        26.79 / 27.06 ±0.22 / 27.38 ms │           26.11 / 27.98 ±2.05 / 31.96 ms │     no change │
│ QQuery 87 │        65.15 / 66.54 ±1.08 / 68.15 ms │           65.50 / 66.83 ±1.18 / 68.53 ms │     no change │
│ QQuery 88 │        62.34 / 62.95 ±0.38 / 63.41 ms │           62.42 / 63.05 ±0.49 / 63.62 ms │     no change │
│ QQuery 89 │        36.16 / 38.53 ±3.24 / 44.97 ms │           35.88 / 36.21 ±0.32 / 36.77 ms │ +1.06x faster │
│ QQuery 90 │        17.32 / 17.61 ±0.30 / 18.19 ms │           17.43 / 17.59 ±0.15 / 17.88 ms │     no change │
│ QQuery 91 │        45.49 / 45.93 ±0.23 / 46.13 ms │           45.56 / 46.22 ±0.41 / 46.73 ms │     no change │
│ QQuery 92 │        31.23 / 31.48 ±0.23 / 31.81 ms │           31.03 / 31.54 ±0.55 / 32.56 ms │     no change │
│ QQuery 93 │        50.64 / 51.38 ±0.83 / 52.86 ms │           50.28 / 51.22 ±0.91 / 52.52 ms │     no change │
│ QQuery 94 │        39.91 / 42.19 ±3.94 / 50.05 ms │           39.65 / 39.90 ±0.23 / 40.28 ms │ +1.06x faster │
│ QQuery 95 │        81.79 / 83.43 ±0.94 / 84.52 ms │           80.84 / 82.91 ±1.84 / 85.95 ms │     no change │
│ QQuery 96 │        24.20 / 24.44 ±0.17 / 24.71 ms │           24.22 / 24.48 ±0.21 / 24.78 ms │     no change │
│ QQuery 97 │        52.42 / 53.56 ±0.85 / 54.82 ms │           52.01 / 53.84 ±1.28 / 55.65 ms │     no change │
│ QQuery 98 │        44.44 / 44.83 ±0.28 / 45.28 ms │           43.18 / 43.82 ±0.49 / 44.49 ms │     no change │
│ QQuery 99 │        66.56 / 66.97 ±0.53 / 67.96 ms │           66.58 / 68.62 ±2.58 / 73.66 ms │     no change │
└───────────┴───────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 9691.56ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 9632.78ms │
│ Average Time (HEAD)                                     │   97.89ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   97.30ms │
│ Queries Faster                                          │         6 │
│ Queries Slower                                          │         2 │
│ Queries with No Change                                  │        91 │
│ Queries with Failure                                    │         0 │
└─────────────────────────────────────────────────────────┴───────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 50.0s
Peak memory 2.2 GiB
Avg memory 1.5 GiB
CPU user 210.7s
CPU sys 6.0s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 50.0s
Peak memory 2.3 GiB
Avg memory 1.6 GiB
CPU user 206.8s
CPU sys 5.9s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark clickbench_partitioned
CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │    1.22 ms │                                  1.22 ms │     no change │
│ QQuery 1  │   11.70 ms │                                 11.51 ms │     no change │
│ QQuery 2  │   36.88 ms │                                 36.65 ms │     no change │
│ QQuery 3  │   31.64 ms │                                 31.32 ms │     no change │
│ QQuery 4  │  241.17 ms │                                229.67 ms │     no change │
│ QQuery 5  │  275.18 ms │                                274.38 ms │     no change │
│ QQuery 6  │    1.31 ms │                                  1.26 ms │     no change │
│ QQuery 7  │   13.08 ms │                                 12.80 ms │     no change │
│ QQuery 8  │  336.94 ms │                                331.26 ms │     no change │
│ QQuery 9  │  518.14 ms │                                485.95 ms │ +1.07x faster │
│ QQuery 10 │   63.76 ms │                                 64.01 ms │     no change │
│ QQuery 11 │   74.92 ms │                                 73.83 ms │     no change │
│ QQuery 12 │  264.99 ms │                                259.18 ms │     no change │
│ QQuery 13 │  377.29 ms │                                360.15 ms │     no change │
│ QQuery 14 │  282.98 ms │                                276.13 ms │     no change │
│ QQuery 15 │  307.62 ms │                                281.89 ms │ +1.09x faster │
│ QQuery 16 │  619.66 ms │                                640.18 ms │     no change │
│ QQuery 17 │  623.28 ms │                                671.99 ms │  1.08x slower │
│ QQuery 18 │ 1290.36 ms │                               1349.09 ms │     no change │
│ QQuery 19 │   27.62 ms │                                 26.96 ms │     no change │
│ QQuery 20 │  520.42 ms │                                517.80 ms │     no change │
│ QQuery 21 │  508.02 ms │                                515.88 ms │     no change │
│ QQuery 22 │  984.04 ms │                               1000.06 ms │     no change │
│ QQuery 23 │ 3086.66 ms │                               3113.49 ms │     no change │
│ QQuery 24 │   40.33 ms │                                 41.55 ms │     no change │
│ QQuery 25 │  105.21 ms │                                105.14 ms │     no change │
│ QQuery 26 │   40.77 ms │                                 40.73 ms │     no change │
│ QQuery 27 │  513.32 ms │                                523.09 ms │     no change │
│ QQuery 28 │ 2952.37 ms │                               2883.79 ms │     no change │
│ QQuery 29 │   44.03 ms │                                 43.58 ms │     no change │
│ QQuery 30 │  330.05 ms │                                307.58 ms │ +1.07x faster │
│ QQuery 31 │  283.27 ms │                                303.16 ms │  1.07x slower │
│ QQuery 32 │  972.19 ms │                               1221.15 ms │  1.26x slower │
│ QQuery 33 │ 1466.24 ms │                               1650.28 ms │  1.13x slower │
│ QQuery 34 │ 1532.87 ms │                               1598.82 ms │     no change │
│ QQuery 35 │  287.46 ms │                                311.10 ms │  1.08x slower │
│ QQuery 36 │   68.68 ms │                                 72.03 ms │     no change │
│ QQuery 37 │   35.59 ms │                                 37.16 ms │     no change │
│ QQuery 38 │   40.48 ms │                                 41.88 ms │     no change │
│ QQuery 39 │  149.81 ms │                                143.13 ms │     no change │
│ QQuery 40 │   14.24 ms │                                 15.18 ms │  1.07x slower │
│ QQuery 41 │   13.85 ms │                                 14.22 ms │     no change │
│ QQuery 42 │   13.66 ms │                                 13.84 ms │     no change │
└───────────┴────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 19403.30ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 19934.06ms │
│ Average Time (HEAD)                                     │   451.24ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   463.58ms │
│ Queries Faster                                          │          3 │
│ Queries Slower                                          │          6 │
│ Queries with No Change                                  │         34 │
│ Queries with Failure                                    │          0 │
└─────────────────────────────────────────────────────────┴────────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.22 / 3.97 ±5.41 / 14.79 ms │             1.22 / 3.94 ±5.37 / 14.69 ms │     no change │
│ QQuery 1  │        11.70 / 11.77 ±0.06 / 11.86 ms │           11.51 / 11.72 ±0.20 / 12.10 ms │     no change │
│ QQuery 2  │        36.88 / 37.05 ±0.12 / 37.27 ms │           36.65 / 36.79 ±0.11 / 36.98 ms │     no change │
│ QQuery 3  │        31.64 / 32.76 ±1.05 / 34.56 ms │           31.32 / 31.49 ±0.20 / 31.81 ms │     no change │
│ QQuery 4  │    241.17 / 273.02 ±18.94 / 291.43 ms │        229.67 / 238.27 ±4.58 / 242.86 ms │ +1.15x faster │
│ QQuery 5  │    275.18 / 294.33 ±12.66 / 308.46 ms │        274.38 / 279.00 ±5.49 / 289.48 ms │ +1.05x faster │
│ QQuery 6  │           1.31 / 1.48 ±0.25 / 1.96 ms │              1.26 / 1.42 ±0.25 / 1.91 ms │     no change │
│ QQuery 7  │        13.08 / 13.31 ±0.18 / 13.60 ms │           12.80 / 12.91 ±0.08 / 13.05 ms │     no change │
│ QQuery 8  │    336.94 / 368.34 ±17.22 / 387.84 ms │       331.26 / 339.92 ±10.22 / 353.08 ms │ +1.08x faster │
│ QQuery 9  │     518.14 / 525.54 ±9.60 / 544.45 ms │        485.95 / 495.19 ±9.88 / 509.19 ms │ +1.06x faster │
│ QQuery 10 │        63.76 / 68.94 ±2.86 / 72.38 ms │           64.01 / 64.68 ±0.97 / 66.60 ms │ +1.07x faster │
│ QQuery 11 │        74.92 / 80.51 ±7.40 / 94.87 ms │           73.83 / 75.77 ±2.36 / 80.09 ms │ +1.06x faster │
│ QQuery 12 │    264.99 / 296.15 ±19.48 / 317.44 ms │        259.18 / 268.94 ±7.48 / 280.64 ms │ +1.10x faster │
│ QQuery 13 │    377.29 / 393.46 ±21.08 / 433.09 ms │        360.15 / 373.41 ±8.90 / 383.71 ms │ +1.05x faster │
│ QQuery 14 │    282.98 / 297.43 ±10.75 / 308.80 ms │        276.13 / 283.41 ±7.53 / 296.30 ms │     no change │
│ QQuery 15 │     307.62 / 320.17 ±9.23 / 332.83 ms │       281.89 / 313.74 ±20.34 / 340.33 ms │     no change │
│ QQuery 16 │    619.66 / 639.97 ±15.48 / 660.39 ms │       640.18 / 677.59 ±24.28 / 701.97 ms │  1.06x slower │
│ QQuery 17 │     623.28 / 636.43 ±8.15 / 646.35 ms │       671.99 / 696.94 ±19.92 / 717.95 ms │  1.10x slower │
│ QQuery 18 │ 1290.36 / 1309.85 ±14.68 / 1326.07 ms │    1349.09 / 1391.18 ±24.57 / 1422.75 ms │  1.06x slower │
│ QQuery 19 │        27.62 / 28.64 ±1.17 / 30.86 ms │           26.96 / 27.69 ±0.60 / 28.51 ms │     no change │
│ QQuery 20 │    520.42 / 546.30 ±26.31 / 590.00 ms │        517.80 / 529.22 ±9.01 / 544.10 ms │     no change │
│ QQuery 21 │     508.02 / 511.38 ±3.37 / 517.78 ms │        515.88 / 528.79 ±7.33 / 536.37 ms │     no change │
│ QQuery 22 │   984.04 / 995.36 ±11.93 / 1018.21 ms │     1000.06 / 1015.29 ±9.46 / 1028.53 ms │     no change │
│ QQuery 23 │ 3086.66 / 3132.17 ±41.05 / 3203.60 ms │   3113.49 / 3290.78 ±102.79 / 3406.67 ms │  1.05x slower │
│ QQuery 24 │        40.33 / 41.10 ±0.83 / 42.12 ms │       41.55 / 189.48 ±174.31 / 489.66 ms │  4.61x slower │
│ QQuery 25 │     105.21 / 107.79 ±2.05 / 110.26 ms │        105.14 / 106.61 ±1.46 / 108.83 ms │     no change │
│ QQuery 26 │        40.77 / 44.96 ±6.40 / 57.68 ms │           40.73 / 41.14 ±0.26 / 41.38 ms │ +1.09x faster │
│ QQuery 27 │     513.32 / 519.59 ±5.64 / 528.40 ms │        523.09 / 533.32 ±8.40 / 548.04 ms │     no change │
│ QQuery 28 │ 2952.37 / 2996.22 ±23.84 / 3019.00 ms │    2883.79 / 2959.42 ±40.85 / 2995.85 ms │     no change │
│ QQuery 29 │        44.03 / 47.18 ±3.29 / 51.21 ms │          43.58 / 54.93 ±15.84 / 84.90 ms │  1.16x slower │
│ QQuery 30 │    330.05 / 344.24 ±10.09 / 359.65 ms │       307.58 / 328.74 ±14.08 / 347.14 ms │     no change │
│ QQuery 31 │    283.27 / 296.87 ±10.10 / 310.63 ms │       303.16 / 325.14 ±19.38 / 361.26 ms │  1.10x slower │
│ QQuery 32 │   972.19 / 997.39 ±21.27 / 1028.38 ms │    1221.15 / 1302.70 ±75.28 / 1424.07 ms │  1.31x slower │
│ QQuery 33 │ 1466.24 / 1516.49 ±42.17 / 1582.26 ms │   1650.28 / 1796.31 ±118.48 / 1940.34 ms │  1.18x slower │
│ QQuery 34 │ 1532.87 / 1589.82 ±50.34 / 1672.20 ms │    1598.82 / 1624.62 ±19.88 / 1650.16 ms │     no change │
│ QQuery 35 │    287.46 / 355.86 ±53.23 / 450.74 ms │      311.10 / 411.89 ±148.32 / 701.06 ms │  1.16x slower │
│ QQuery 36 │        68.68 / 75.25 ±7.55 / 87.81 ms │         72.03 / 88.60 ±19.85 / 116.08 ms │  1.18x slower │
│ QQuery 37 │        35.59 / 37.72 ±1.82 / 40.59 ms │           37.16 / 42.52 ±4.83 / 49.82 ms │  1.13x slower │
│ QQuery 38 │        40.48 / 41.79 ±1.62 / 44.79 ms │           41.88 / 48.79 ±8.42 / 65.15 ms │  1.17x slower │
│ QQuery 39 │    149.81 / 163.10 ±10.40 / 177.46 ms │       143.13 / 165.38 ±16.80 / 192.74 ms │     no change │
│ QQuery 40 │        14.24 / 14.82 ±0.45 / 15.31 ms │           15.18 / 16.19 ±1.53 / 19.19 ms │  1.09x slower │
│ QQuery 41 │        13.85 / 14.21 ±0.22 / 14.46 ms │           14.22 / 17.08 ±3.31 / 23.09 ms │  1.20x slower │
│ QQuery 42 │        13.66 / 14.37 ±0.47 / 14.79 ms │           13.84 / 15.96 ±3.69 / 23.34 ms │  1.11x slower │
└───────────┴───────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 20037.09ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 21056.91ms │
│ Average Time (HEAD)                                     │   465.98ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   489.70ms │
│ Queries Faster                                          │          9 │
│ Queries Slower                                          │         16 │
│ Queries with No Change                                  │         18 │
│ Queries with Failure                                    │          0 │
└─────────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 11.8 GiB
Avg memory 4.3 GiB
CPU user 1022.2s
CPU sys 74.9s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 110.0s
Peak memory 16.7 GiB
Avg memory 5.7 GiB
CPU user 1022.7s
CPU sys 108.5s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

Comparing rich-T-kid/expose-push-batch-with-filter (d418c19) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark clickbench_partitioned
CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 0  │    1.28 ms │                                  1.30 ms │    no change │
│ QQuery 1  │   11.87 ms │                                 12.15 ms │    no change │
│ QQuery 2  │   37.00 ms │                                 37.45 ms │    no change │
│ QQuery 3  │   32.01 ms │                                 32.22 ms │    no change │
│ QQuery 4  │  255.44 ms │                                256.24 ms │    no change │
│ QQuery 5  │  289.26 ms │                                287.45 ms │    no change │
│ QQuery 6  │    1.31 ms │                                  1.39 ms │ 1.06x slower │
│ QQuery 7  │   13.40 ms │                                 13.52 ms │    no change │
│ QQuery 8  │  354.58 ms │                                353.96 ms │    no change │
│ QQuery 9  │  500.85 ms │                                507.65 ms │    no change │
│ QQuery 10 │   65.78 ms │                                 66.26 ms │    no change │
│ QQuery 11 │   77.49 ms │                                 77.18 ms │    no change │
│ QQuery 12 │  278.24 ms │                                277.75 ms │    no change │
│ QQuery 13 │  381.30 ms │                                380.60 ms │    no change │
│ QQuery 14 │  295.29 ms │                                296.90 ms │    no change │
│ QQuery 15 │  308.52 ms │                                306.53 ms │    no change │
│ QQuery 16 │  649.93 ms │                                657.21 ms │    no change │
│ QQuery 17 │  656.91 ms │                                654.55 ms │    no change │
│ QQuery 18 │ 1325.08 ms │                               1328.33 ms │    no change │
│ QQuery 19 │   28.74 ms │                                 27.95 ms │    no change │
│ QQuery 20 │  531.10 ms │                                528.30 ms │    no change │
│ QQuery 21 │  515.85 ms │                                520.44 ms │    no change │
│ QQuery 22 │ 1011.54 ms │                               1030.42 ms │    no change │
│ QQuery 23 │ 3174.22 ms │                               3139.41 ms │    no change │
│ QQuery 24 │   40.49 ms │                                 41.07 ms │    no change │
│ QQuery 25 │  107.25 ms │                                107.40 ms │    no change │
│ QQuery 26 │   41.26 ms │                                 41.64 ms │    no change │
│ QQuery 27 │  516.61 ms │                                524.71 ms │    no change │
│ QQuery 28 │ 2955.76 ms │                               2994.75 ms │    no change │
│ QQuery 29 │   42.41 ms │                                 43.15 ms │    no change │
│ QQuery 30 │  327.11 ms │                                321.62 ms │    no change │
│ QQuery 31 │  286.45 ms │                                294.92 ms │    no change │
│ QQuery 32 │  992.69 ms │                               1170.91 ms │ 1.18x slower │
│ QQuery 33 │ 1558.07 ms │                               1721.40 ms │ 1.10x slower │
│ QQuery 34 │ 1586.44 ms │                               1773.05 ms │ 1.12x slower │
│ QQuery 35 │  332.86 ms │                                334.92 ms │    no change │
│ QQuery 36 │   69.80 ms │                                 67.93 ms │    no change │
│ QQuery 37 │   36.55 ms │                                 36.73 ms │    no change │
│ QQuery 38 │   42.55 ms │                                 42.74 ms │    no change │
│ QQuery 39 │  141.04 ms │                                153.36 ms │ 1.09x slower │
│ QQuery 40 │   15.21 ms │                                 15.44 ms │    no change │
│ QQuery 41 │   14.84 ms │                                 14.81 ms │    no change │
│ QQuery 42 │   14.36 ms │                                 14.20 ms │    no change │
└───────────┴────────────┴──────────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 19918.76ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 20509.92ms │
│ Average Time (HEAD)                                     │   463.23ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   476.97ms │
│ Queries Faster                                          │          0 │
│ Queries Slower                                          │          5 │
│ Queries with No Change                                  │         38 │
│ Queries with Failure                                    │          0 │
└─────────────────────────────────────────────────────────┴────────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.28 / 4.24 ±5.73 / 15.69 ms │             1.30 / 4.29 ±5.68 / 15.65 ms │     no change │
│ QQuery 1  │        11.87 / 12.15 ±0.17 / 12.35 ms │           12.15 / 12.85 ±1.02 / 14.86 ms │  1.06x slower │
│ QQuery 2  │        37.00 / 37.59 ±0.39 / 38.16 ms │           37.45 / 37.83 ±0.45 / 38.55 ms │     no change │
│ QQuery 3  │        32.01 / 33.03 ±0.87 / 34.34 ms │           32.22 / 32.86 ±0.67 / 33.69 ms │     no change │
│ QQuery 4  │     255.44 / 260.05 ±3.61 / 265.51 ms │        256.24 / 260.56 ±2.62 / 263.70 ms │     no change │
│ QQuery 5  │     289.26 / 291.17 ±1.16 / 292.80 ms │        287.45 / 290.92 ±1.78 / 292.33 ms │     no change │
│ QQuery 6  │           1.31 / 1.46 ±0.24 / 1.94 ms │              1.39 / 1.53 ±0.20 / 1.93 ms │     no change │
│ QQuery 7  │        13.40 / 13.79 ±0.23 / 14.07 ms │           13.52 / 13.66 ±0.09 / 13.77 ms │     no change │
│ QQuery 8  │     354.58 / 358.31 ±4.22 / 363.56 ms │        353.96 / 361.11 ±4.98 / 365.86 ms │     no change │
│ QQuery 9  │     500.85 / 505.60 ±6.37 / 518.05 ms │        507.65 / 521.20 ±9.94 / 533.40 ms │     no change │
│ QQuery 10 │        65.78 / 70.37 ±7.29 / 84.92 ms │           66.26 / 69.54 ±6.03 / 81.60 ms │     no change │
│ QQuery 11 │        77.49 / 77.90 ±0.47 / 78.79 ms │           77.18 / 78.19 ±0.65 / 78.99 ms │     no change │
│ QQuery 12 │     278.24 / 289.78 ±7.52 / 300.16 ms │       277.75 / 290.12 ±14.59 / 316.05 ms │     no change │
│ QQuery 13 │     381.30 / 390.44 ±5.02 / 396.40 ms │       380.60 / 396.92 ±24.08 / 443.56 ms │     no change │
│ QQuery 14 │    295.29 / 308.63 ±15.24 / 334.59 ms │        296.90 / 304.94 ±6.07 / 313.70 ms │     no change │
│ QQuery 15 │     308.52 / 317.78 ±6.86 / 328.75 ms │        306.53 / 313.77 ±6.72 / 325.50 ms │     no change │
│ QQuery 16 │     649.93 / 663.08 ±8.89 / 674.37 ms │        657.21 / 667.17 ±5.98 / 673.06 ms │     no change │
│ QQuery 17 │     656.91 / 662.88 ±5.29 / 671.09 ms │        654.55 / 670.93 ±9.84 / 684.25 ms │     no change │
│ QQuery 18 │ 1325.08 / 1357.93 ±21.91 / 1393.30 ms │    1328.33 / 1365.41 ±27.79 / 1399.90 ms │     no change │
│ QQuery 19 │        28.74 / 33.42 ±6.19 / 45.55 ms │           27.95 / 29.19 ±1.50 / 32.08 ms │ +1.14x faster │
│ QQuery 20 │     531.10 / 533.89 ±2.14 / 536.41 ms │        528.30 / 534.82 ±8.28 / 550.98 ms │     no change │
│ QQuery 21 │     515.85 / 518.98 ±2.80 / 523.25 ms │        520.44 / 528.87 ±4.42 / 533.42 ms │     no change │
│ QQuery 22 │ 1011.54 / 1033.39 ±17.18 / 1063.68 ms │    1030.42 / 1046.18 ±11.81 / 1065.31 ms │     no change │
│ QQuery 23 │ 3174.22 / 3195.59 ±20.09 / 3231.24 ms │   3139.41 / 3343.21 ±132.33 / 3556.95 ms │     no change │
│ QQuery 24 │        40.49 / 43.62 ±5.07 / 53.70 ms │       41.07 / 190.06 ±273.25 / 735.14 ms │  4.36x slower │
│ QQuery 25 │     107.25 / 111.64 ±4.67 / 120.70 ms │        107.40 / 109.68 ±1.94 / 113.04 ms │     no change │
│ QQuery 26 │        41.26 / 41.92 ±0.40 / 42.31 ms │           41.64 / 42.74 ±0.73 / 43.71 ms │     no change │
│ QQuery 27 │    516.61 / 534.33 ±10.41 / 545.26 ms │       524.71 / 533.98 ±10.89 / 554.34 ms │     no change │
│ QQuery 28 │ 2955.76 / 3007.91 ±29.35 / 3046.42 ms │    2994.75 / 3010.01 ±14.08 / 3034.72 ms │     no change │
│ QQuery 29 │        42.41 / 45.40 ±5.54 / 56.48 ms │           43.15 / 43.36 ±0.15 / 43.60 ms │     no change │
│ QQuery 30 │    327.11 / 350.15 ±30.28 / 409.21 ms │        321.62 / 331.04 ±9.18 / 345.48 ms │ +1.06x faster │
│ QQuery 31 │    286.45 / 305.14 ±12.19 / 319.65 ms │        294.92 / 302.80 ±5.05 / 309.10 ms │     no change │
│ QQuery 32 │  992.69 / 1019.66 ±24.42 / 1063.02 ms │    1170.91 / 1257.21 ±54.74 / 1317.92 ms │  1.23x slower │
│ QQuery 33 │ 1558.07 / 1580.47 ±12.44 / 1595.83 ms │    1721.40 / 1750.67 ±31.77 / 1795.46 ms │  1.11x slower │
│ QQuery 34 │ 1586.44 / 1625.57 ±34.82 / 1687.97 ms │    1773.05 / 1804.30 ±25.85 / 1832.08 ms │  1.11x slower │
│ QQuery 35 │    332.86 / 354.23 ±23.00 / 390.96 ms │       334.92 / 391.57 ±63.04 / 489.72 ms │  1.11x slower │
│ QQuery 36 │        69.80 / 77.83 ±6.59 / 85.57 ms │           67.93 / 72.58 ±4.96 / 81.37 ms │ +1.07x faster │
│ QQuery 37 │        36.55 / 38.97 ±2.68 / 44.17 ms │           36.73 / 40.01 ±5.92 / 51.84 ms │     no change │
│ QQuery 38 │        42.55 / 47.19 ±4.38 / 53.65 ms │           42.74 / 52.64 ±8.07 / 65.75 ms │  1.12x slower │
│ QQuery 39 │    141.04 / 161.85 ±12.72 / 175.87 ms │        153.36 / 164.22 ±6.48 / 171.98 ms │     no change │
│ QQuery 40 │        15.21 / 16.29 ±1.41 / 18.95 ms │           15.44 / 22.53 ±5.69 / 28.57 ms │  1.38x slower │
│ QQuery 41 │        14.84 / 16.40 ±2.68 / 21.73 ms │           14.81 / 17.48 ±4.10 / 25.60 ms │  1.07x slower │
│ QQuery 42 │        14.36 / 15.62 ±2.33 / 20.27 ms │           14.20 / 14.49 ±0.22 / 14.85 ms │ +1.08x faster │
└───────────┴───────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 20365.66ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 21327.43ms │
│ Average Time (HEAD)                                     │   473.62ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   495.99ms │
│ Queries Faster                                          │          4 │
│ Queries Slower                                          │          9 │
│ Queries with No Change                                  │         30 │
│ Queries with Failure                                    │          0 │
└─────────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 11.8 GiB
Avg memory 4.5 GiB
CPU user 1043.2s
CPU sys 74.0s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 110.0s
Peak memory 18.3 GiB
Avg memory 6.1 GiB
CPU user 1046.2s
CPU sys 107.7s
Peak spill 0 B

File an issue against this benchmark runner

@codecov-commenter

codecov-commenter commented Sep 19, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 93.43066% with 9 lines in your changes missing coverage. Please review.
✅ Project coverage is 82.41%. Comparing base (6e4d9ba) to head (6b1623c).
⚠️ Report is 27 commits behind head on main.

Files with missing lines Patch % Lines
datafusion/physical-plan/src/filter.rs 82.35% 2 Missing and 4 partials ⚠️
datafusion/physical-plan/src/coalesce/mod.rs 97.08% 0 Missing and 3 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main   #25503      +/-   ##
==========================================
+ Coverage   82.36%   82.41%   +0.05%     
==========================================
  Files        1137     1138       +1     
  Lines      433123   435454    +2331     
  Branches   433123   435454    +2331     
==========================================
+ Hits       356746   358892    +2146     
- Misses      54846    54849       +3     
- Partials    21531    21713     +182     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@Rich-T-kid
Rich-T-kid force-pushed the rich-T-kid/expose-push-batch-with-filter branch from d418c19 to f471266 Compare September 19, 2026 20:19
@Rich-T-kid Rich-T-kid changed the title WIP: coalesce: expose push_batch_with_filter on LimitedBatchCoalescer FilterExec : expose push_batch_with_filter on LimitedBatchCoalescer Sep 19, 2026
@Rich-T-kid
Rich-T-kid marked this pull request as ready for review September 19, 2026 20:32
@jayzhan211

Copy link
Copy Markdown
Contributor

Thanks @Rich-T-kid , test coverage issue

Fetch logic of push_batch_with_filter is covered by one FilterExec test (single batch, no nulls). Uncovered: null filter values under fetch (the None arm of first_n_true), limit spanning several batches, exact-boundary LimitReached, push after limit, fetch = 0. I checked these locally and they pass; please add unit tests next to the existing push_batch ones. Fine to handle in a follow-up.

#[test]
fn test_push_batch_with_filter_nulls_and_fetch() {
    let batch = uint32_batch(0..8);
    let mut coalescer = LimitedBatchCoalescer::new(batch.schema(), 100, Some(3));
    let filter = BooleanArray::from(vec![
        None,
        Some(true),
        None,
        Some(false),
        Some(true),
        Some(true),
        None,
        Some(true),
    ]);
    assert_eq!(
        coalescer.push_batch_with_filter(batch, &filter).unwrap(),
        PushBatchStatus::LimitReached,
    );
    coalescer.finish().unwrap();
    let output = coalescer.next_completed_batch().unwrap();
    let expected = UInt32Array::from(vec![1, 4, 5]);
    assert_eq!(output.column(0).as_ref(), &expected as &dyn arrow::array::Array);
}

Comment thread datafusion/physical-plan/src/coalesce/mod.rs Outdated
@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

run benchmarks

@Rich-T-kid

Copy link
Copy Markdown
Contributor Author

@jayzhan211 thank you for the review, the latest commit should address your comments 🚀

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5751816077-2531-hqsn9 6.12.94+ #1 SMP Tue Aug 4 08:44:15 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing rich-T-kid/expose-push-batch-with-filter (6b1623c) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpcds

Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5751816077-2530-k2z9w 6.12.94+ #1 SMP Tue Aug 4 08:44:15 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing rich-T-kid/expose-push-batch-with-filter (6b1623c) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark clickbench_partitioned

Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5751816077-2532-528vd 6.12.94+ #1 SMP Tue Aug 4 08:44:15 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing rich-T-kid/expose-push-batch-with-filter (6b1623c) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpch

Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

Comparing rich-T-kid/expose-push-batch-with-filter (6b1623c) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpch
CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃     HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 40.35 ms │                                 40.84 ms │     no change │
│ QQuery 2  │ 18.38 ms │                                 19.30 ms │     no change │
│ QQuery 3  │ 28.32 ms │                                 29.17 ms │     no change │
│ QQuery 4  │ 16.88 ms │                                 17.17 ms │     no change │
│ QQuery 5  │ 35.02 ms │                                 35.14 ms │     no change │
│ QQuery 6  │ 16.17 ms │                                 16.27 ms │     no change │
│ QQuery 7  │ 41.42 ms │                                 40.40 ms │     no change │
│ QQuery 8  │ 39.75 ms │                                 40.19 ms │     no change │
│ QQuery 9  │ 48.73 ms │                                 49.17 ms │     no change │
│ QQuery 10 │ 40.10 ms │                                 40.43 ms │     no change │
│ QQuery 11 │ 13.16 ms │                                 13.29 ms │     no change │
│ QQuery 12 │ 20.94 ms │                                 21.11 ms │     no change │
│ QQuery 13 │ 39.48 ms │                                 38.85 ms │     no change │
│ QQuery 14 │ 24.43 ms │                                 24.40 ms │     no change │
│ QQuery 15 │ 30.56 ms │                                 30.69 ms │     no change │
│ QQuery 16 │ 13.89 ms │                                 14.15 ms │     no change │
│ QQuery 17 │ 71.08 ms │                                 72.24 ms │     no change │
│ QQuery 18 │ 61.16 ms │                                 60.33 ms │     no change │
│ QQuery 19 │ 32.27 ms │                                 32.01 ms │     no change │
│ QQuery 20 │ 34.22 ms │                                 31.53 ms │ +1.09x faster │
│ QQuery 21 │ 59.99 ms │                                 54.66 ms │ +1.10x faster │
│ QQuery 22 │ 14.92 ms │                                 13.88 ms │ +1.08x faster │
└───────────┴──────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 741.21ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 735.21ms │
│ Average Time (HEAD)                                     │  33.69ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │  33.42ms │
│ Queries Faster                                          │        3 │
│ Queries Slower                                          │        0 │
│ Queries with No Change                                  │       19 │
│ Queries with Failure                                    │        0 │
└─────────────────────────────────────────────────────────┴──────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 40.35 / 41.07 ±0.98 / 43.01 ms │           40.84 / 42.23 ±0.79 / 43.13 ms │     no change │
│ QQuery 2  │ 18.38 / 18.56 ±0.20 / 18.95 ms │           19.30 / 19.65 ±0.37 / 20.35 ms │  1.06x slower │
│ QQuery 3  │ 28.32 / 28.64 ±0.37 / 29.35 ms │           29.17 / 29.40 ±0.24 / 29.85 ms │     no change │
│ QQuery 4  │ 16.88 / 17.56 ±0.64 / 18.76 ms │           17.17 / 18.25 ±0.92 / 19.56 ms │     no change │
│ QQuery 5  │ 35.02 / 36.47 ±1.50 / 38.38 ms │           35.14 / 35.93 ±1.06 / 37.96 ms │     no change │
│ QQuery 6  │ 16.17 / 16.30 ±0.09 / 16.40 ms │           16.27 / 16.60 ±0.43 / 17.45 ms │     no change │
│ QQuery 7  │ 41.42 / 43.15 ±1.26 / 44.54 ms │           40.40 / 42.80 ±1.61 / 44.62 ms │     no change │
│ QQuery 8  │ 39.75 / 41.06 ±0.98 / 42.27 ms │           40.19 / 40.46 ±0.31 / 41.05 ms │     no change │
│ QQuery 9  │ 48.73 / 49.71 ±0.71 / 50.58 ms │           49.17 / 49.95 ±0.80 / 51.33 ms │     no change │
│ QQuery 10 │ 40.10 / 40.54 ±0.26 / 40.84 ms │           40.43 / 41.36 ±1.04 / 43.31 ms │     no change │
│ QQuery 11 │ 13.16 / 13.52 ±0.34 / 13.99 ms │           13.29 / 13.58 ±0.23 / 13.83 ms │     no change │
│ QQuery 12 │ 20.94 / 21.17 ±0.19 / 21.48 ms │           21.11 / 21.39 ±0.15 / 21.50 ms │     no change │
│ QQuery 13 │ 39.48 / 41.02 ±1.26 / 43.21 ms │           38.85 / 39.69 ±1.10 / 41.81 ms │     no change │
│ QQuery 14 │ 24.43 / 25.17 ±1.12 / 27.40 ms │           24.40 / 25.03 ±1.07 / 27.17 ms │     no change │
│ QQuery 15 │ 30.56 / 31.28 ±0.63 / 32.31 ms │           30.69 / 31.51 ±1.27 / 34.03 ms │     no change │
│ QQuery 16 │ 13.89 / 14.16 ±0.22 / 14.47 ms │           14.15 / 14.40 ±0.20 / 14.57 ms │     no change │
│ QQuery 17 │ 71.08 / 71.96 ±0.82 / 73.02 ms │           72.24 / 73.00 ±0.81 / 74.42 ms │     no change │
│ QQuery 18 │ 61.16 / 62.23 ±0.75 / 63.51 ms │           60.33 / 61.24 ±0.97 / 63.07 ms │     no change │
│ QQuery 19 │ 32.27 / 33.62 ±1.02 / 35.30 ms │           32.01 / 32.83 ±1.33 / 35.46 ms │     no change │
│ QQuery 20 │ 34.22 / 34.95 ±0.55 / 35.74 ms │           31.53 / 32.20 ±0.37 / 32.57 ms │ +1.09x faster │
│ QQuery 21 │ 59.99 / 60.57 ±0.50 / 61.33 ms │           54.66 / 55.54 ±0.97 / 57.36 ms │ +1.09x faster │
│ QQuery 22 │ 14.92 / 15.22 ±0.18 / 15.43 ms │           13.88 / 14.02 ±0.08 / 14.11 ms │ +1.09x faster │
└───────────┴────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 757.90ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 751.05ms │
│ Average Time (HEAD)                                     │  34.45ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │  34.14ms │
│ Queries Faster                                          │        3 │
│ Queries Slower                                          │        1 │
│ Queries with No Change                                  │       18 │
│ Queries with Failure                                    │        0 │
└─────────────────────────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 1.3 GiB
Avg memory 505.1 MiB
CPU user 21.0s
CPU sys 1.8s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.3 GiB
Avg memory 515.5 MiB
CPU user 21.0s
CPU sys 1.8s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

Comparing rich-T-kid/expose-push-batch-with-filter (6b1623c) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark tpcds
CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │    5.54 ms │                                  5.41 ms │    no change │
│ QQuery 2  │   79.15 ms │                                 79.60 ms │    no change │
│ QQuery 3  │   28.16 ms │                                 28.16 ms │    no change │
│ QQuery 4  │  426.34 ms │                                423.21 ms │    no change │
│ QQuery 5  │   49.83 ms │                                 50.29 ms │    no change │
│ QQuery 6  │   35.06 ms │                                 35.04 ms │    no change │
│ QQuery 7  │   73.28 ms │                                 74.47 ms │    no change │
│ QQuery 8  │   35.99 ms │                                 35.46 ms │    no change │
│ QQuery 9  │   52.97 ms │                                 52.19 ms │    no change │
│ QQuery 10 │   61.78 ms │                                 61.97 ms │    no change │
│ QQuery 11 │  260.18 ms │                                260.71 ms │    no change │
│ QQuery 12 │   27.90 ms │                                 28.10 ms │    no change │
│ QQuery 13 │  116.02 ms │                                116.35 ms │    no change │
│ QQuery 14 │  389.97 ms │                                385.06 ms │    no change │
│ QQuery 15 │   51.06 ms │                                 51.25 ms │    no change │
│ QQuery 16 │    6.33 ms │                                  6.14 ms │    no change │
│ QQuery 17 │   77.05 ms │                                 76.73 ms │    no change │
│ QQuery 18 │  101.75 ms │                                101.43 ms │    no change │
│ QQuery 19 │   40.85 ms │                                 40.66 ms │    no change │
│ QQuery 20 │   34.71 ms │                                 34.44 ms │    no change │
│ QQuery 21 │   16.48 ms │                                 16.34 ms │    no change │
│ QQuery 22 │   62.05 ms │                                 62.82 ms │    no change │
│ QQuery 23 │  303.30 ms │                                302.55 ms │    no change │
│ QQuery 24 │  188.41 ms │                                187.00 ms │    no change │
│ QQuery 25 │  106.10 ms │                                105.13 ms │    no change │
│ QQuery 26 │   46.66 ms │                                 47.59 ms │    no change │
│ QQuery 27 │    5.81 ms │                                  5.81 ms │    no change │
│ QQuery 28 │   56.24 ms │                                 59.99 ms │ 1.07x slower │
│ QQuery 29 │   92.68 ms │                                 93.25 ms │    no change │
│ QQuery 30 │   31.58 ms │                                 32.27 ms │    no change │
│ QQuery 31 │  107.27 ms │                                106.25 ms │    no change │
│ QQuery 32 │   19.64 ms │                                 19.63 ms │    no change │
│ QQuery 33 │   36.76 ms │                                 36.54 ms │    no change │
│ QQuery 34 │    9.73 ms │                                  9.74 ms │    no change │
│ QQuery 35 │   70.57 ms │                                 71.41 ms │    no change │
│ QQuery 36 │    5.76 ms │                                  5.56 ms │    no change │
│ QQuery 37 │    6.87 ms │                                  6.60 ms │    no change │
│ QQuery 38 │   60.54 ms │                                 59.84 ms │    no change │
│ QQuery 39 │   72.34 ms │                                 71.97 ms │    no change │
│ QQuery 40 │   22.56 ms │                                 23.15 ms │    no change │
│ QQuery 41 │   10.90 ms │                                 10.89 ms │    no change │
│ QQuery 42 │   23.18 ms │                                 23.32 ms │    no change │
│ QQuery 43 │    5.02 ms │                                  5.03 ms │    no change │
│ QQuery 44 │    9.05 ms │                                  8.85 ms │    no change │
│ QQuery 45 │   37.02 ms │                                 36.38 ms │    no change │
│ QQuery 46 │   11.57 ms │                                 11.89 ms │    no change │
│ QQuery 47 │  212.68 ms │                                214.39 ms │    no change │
│ QQuery 48 │   93.73 ms │                                 94.98 ms │    no change │
│ QQuery 49 │   69.96 ms │                                 69.57 ms │    no change │
│ QQuery 50 │   57.25 ms │                                 57.37 ms │    no change │
│ QQuery 51 │   93.03 ms │                                 92.77 ms │    no change │
│ QQuery 52 │   23.45 ms │                                 23.56 ms │    no change │
│ QQuery 53 │   28.05 ms │                                 28.10 ms │    no change │
│ QQuery 54 │   53.15 ms │                                 53.21 ms │    no change │
│ QQuery 55 │   23.10 ms │                                 23.05 ms │    no change │
│ QQuery 56 │   37.67 ms │                                 37.65 ms │    no change │
│ QQuery 57 │  166.34 ms │                                165.52 ms │    no change │
│ QQuery 58 │  107.72 ms │                                107.28 ms │    no change │
│ QQuery 59 │  115.41 ms │                                114.43 ms │    no change │
│ QQuery 60 │   38.40 ms │                                 38.11 ms │    no change │
│ QQuery 61 │   11.26 ms │                                 11.24 ms │    no change │
│ QQuery 62 │   43.77 ms │                                 43.24 ms │    no change │
│ QQuery 63 │   28.39 ms │                                 28.53 ms │    no change │
│ QQuery 64 │  353.47 ms │                                355.86 ms │    no change │
│ QQuery 65 │  127.80 ms │                                130.39 ms │    no change │
│ QQuery 66 │   75.98 ms │                                 75.55 ms │    no change │
│ QQuery 67 │  236.49 ms │                                242.11 ms │    no change │
│ QQuery 68 │   11.52 ms │                                 11.71 ms │    no change │
│ QQuery 69 │   55.42 ms │                                 55.77 ms │    no change │
│ QQuery 70 │  102.58 ms │                                102.47 ms │    no change │
│ QQuery 71 │   35.02 ms │                                 34.93 ms │    no change │
│ QQuery 72 │ 1646.03 ms │                               1649.32 ms │    no change │
│ QQuery 73 │    9.80 ms │                                  9.77 ms │    no change │
│ QQuery 74 │  151.23 ms │                                155.64 ms │    no change │
│ QQuery 75 │  141.56 ms │                                140.47 ms │    no change │
│ QQuery 76 │   34.19 ms │                                 34.10 ms │    no change │
│ QQuery 77 │   59.82 ms │                                 59.80 ms │    no change │
│ QQuery 78 │  159.52 ms │                                159.36 ms │    no change │
│ QQuery 79 │   66.06 ms │                                 65.11 ms │    no change │
│ QQuery 80 │   94.25 ms │                                 93.76 ms │    no change │
│ QQuery 81 │   25.10 ms │                                 25.18 ms │    no change │
│ QQuery 82 │   16.00 ms │                                 15.95 ms │    no change │
│ QQuery 83 │   32.82 ms │                                 33.00 ms │    no change │
│ QQuery 84 │   29.25 ms │                                 29.36 ms │    no change │
│ QQuery 85 │  100.89 ms │                                104.53 ms │    no change │
│ QQuery 86 │   24.70 ms │                                 25.31 ms │    no change │
│ QQuery 87 │   60.24 ms │                                 60.87 ms │    no change │
│ QQuery 88 │   60.03 ms │                                 60.72 ms │    no change │
│ QQuery 89 │   34.93 ms │                                 35.49 ms │    no change │
│ QQuery 90 │   16.51 ms │                                 16.27 ms │    no change │
│ QQuery 91 │   44.38 ms │                                 43.75 ms │    no change │
│ QQuery 92 │   28.50 ms │                                 28.41 ms │    no change │
│ QQuery 93 │   48.07 ms │                                 49.06 ms │    no change │
│ QQuery 94 │   38.51 ms │                                 37.94 ms │    no change │
│ QQuery 95 │   79.49 ms │                                 78.68 ms │    no change │
│ QQuery 96 │   23.44 ms │                                 23.40 ms │    no change │
│ QQuery 97 │   50.42 ms │                                 50.48 ms │    no change │
│ QQuery 98 │   42.13 ms │                                 42.13 ms │    no change │
│ QQuery 99 │   64.45 ms │                                 65.03 ms │    no change │
└───────────┴────────────┴──────────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 8755.98ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 8771.17ms │
│ Average Time (HEAD)                                     │   88.44ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   88.60ms │
│ Queries Faster                                          │         0 │
│ Queries Slower                                          │         1 │
│ Queries with No Change                                  │        98 │
│ Queries with Failure                                    │         0 │
└─────────────────────────────────────────────────────────┴───────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.54 / 6.14 ±0.92 / 7.98 ms │              5.41 / 5.95 ±0.96 / 7.87 ms │    no change │
│ QQuery 2  │        79.15 / 79.72 ±0.48 / 80.34 ms │           79.60 / 79.71 ±0.10 / 79.87 ms │    no change │
│ QQuery 3  │        28.16 / 28.63 ±0.28 / 28.92 ms │           28.16 / 28.50 ±0.18 / 28.65 ms │    no change │
│ QQuery 4  │     426.34 / 432.21 ±6.04 / 442.37 ms │        423.21 / 429.15 ±4.69 / 437.52 ms │    no change │
│ QQuery 5  │        49.83 / 50.78 ±0.66 / 51.44 ms │           50.29 / 50.73 ±0.42 / 51.43 ms │    no change │
│ QQuery 6  │        35.06 / 37.25 ±2.97 / 43.14 ms │           35.04 / 36.13 ±1.51 / 39.08 ms │    no change │
│ QQuery 7  │        73.28 / 74.10 ±0.68 / 74.99 ms │           74.47 / 74.92 ±0.36 / 75.41 ms │    no change │
│ QQuery 8  │        35.99 / 36.37 ±0.33 / 36.93 ms │           35.46 / 36.19 ±0.48 / 36.86 ms │    no change │
│ QQuery 9  │        52.97 / 56.58 ±4.33 / 65.08 ms │           52.19 / 53.94 ±0.96 / 54.77 ms │    no change │
│ QQuery 10 │        61.78 / 62.22 ±0.32 / 62.70 ms │           61.97 / 63.01 ±1.25 / 65.44 ms │    no change │
│ QQuery 11 │     260.18 / 262.51 ±2.08 / 266.38 ms │        260.71 / 264.16 ±4.27 / 272.39 ms │    no change │
│ QQuery 12 │        27.90 / 28.30 ±0.37 / 28.93 ms │           28.10 / 28.46 ±0.31 / 28.88 ms │    no change │
│ QQuery 13 │     116.02 / 118.99 ±4.04 / 126.78 ms │        116.35 / 119.47 ±3.36 / 125.91 ms │    no change │
│ QQuery 14 │     389.97 / 393.13 ±2.97 / 398.33 ms │        385.06 / 389.34 ±3.00 / 394.11 ms │    no change │
│ QQuery 15 │        51.06 / 52.72 ±1.38 / 55.13 ms │           51.25 / 53.08 ±1.20 / 54.78 ms │    no change │
│ QQuery 16 │           6.33 / 6.55 ±0.24 / 7.01 ms │              6.14 / 6.30 ±0.17 / 6.63 ms │    no change │
│ QQuery 17 │        77.05 / 78.63 ±2.09 / 82.73 ms │           76.73 / 77.07 ±0.34 / 77.49 ms │    no change │
│ QQuery 18 │     101.75 / 102.75 ±0.70 / 103.94 ms │        101.43 / 103.53 ±2.05 / 106.85 ms │    no change │
│ QQuery 19 │        40.85 / 41.04 ±0.29 / 41.62 ms │           40.66 / 40.88 ±0.19 / 41.16 ms │    no change │
│ QQuery 20 │        34.71 / 35.15 ±0.29 / 35.45 ms │           34.44 / 34.77 ±0.36 / 35.35 ms │    no change │
│ QQuery 21 │        16.48 / 16.70 ±0.17 / 16.95 ms │           16.34 / 16.63 ±0.29 / 17.13 ms │    no change │
│ QQuery 22 │        62.05 / 62.57 ±0.43 / 63.22 ms │           62.82 / 63.18 ±0.43 / 64.00 ms │    no change │
│ QQuery 23 │     303.30 / 309.41 ±5.12 / 318.66 ms │        302.55 / 306.45 ±2.94 / 310.00 ms │    no change │
│ QQuery 24 │     188.41 / 191.60 ±3.55 / 196.94 ms │        187.00 / 190.83 ±3.43 / 196.68 ms │    no change │
│ QQuery 25 │     106.10 / 107.12 ±0.76 / 108.17 ms │        105.13 / 106.86 ±1.05 / 107.97 ms │    no change │
│ QQuery 26 │        46.66 / 47.44 ±0.71 / 48.59 ms │           47.59 / 47.75 ±0.11 / 47.89 ms │    no change │
│ QQuery 27 │           5.81 / 5.99 ±0.22 / 6.41 ms │              5.81 / 6.09 ±0.31 / 6.65 ms │    no change │
│ QQuery 28 │        56.24 / 59.72 ±1.77 / 61.16 ms │           59.99 / 60.40 ±0.23 / 60.67 ms │    no change │
│ QQuery 29 │       92.68 / 95.51 ±3.51 / 102.31 ms │           93.25 / 94.32 ±0.81 / 95.66 ms │    no change │
│ QQuery 30 │        31.58 / 32.55 ±1.11 / 34.68 ms │           32.27 / 32.98 ±1.23 / 35.43 ms │    no change │
│ QQuery 31 │     107.27 / 107.60 ±0.19 / 107.84 ms │        106.25 / 107.07 ±0.61 / 107.98 ms │    no change │
│ QQuery 32 │        19.64 / 19.99 ±0.45 / 20.88 ms │           19.63 / 20.04 ±0.30 / 20.44 ms │    no change │
│ QQuery 33 │        36.76 / 37.14 ±0.34 / 37.59 ms │           36.54 / 36.93 ±0.28 / 37.38 ms │    no change │
│ QQuery 34 │          9.73 / 9.95 ±0.25 / 10.40 ms │            9.74 / 10.03 ±0.22 / 10.41 ms │    no change │
│ QQuery 35 │        70.57 / 72.08 ±1.58 / 75.13 ms │           71.41 / 71.94 ±0.52 / 72.71 ms │    no change │
│ QQuery 36 │           5.76 / 5.87 ±0.21 / 6.29 ms │              5.56 / 5.68 ±0.20 / 6.08 ms │    no change │
│ QQuery 37 │           6.87 / 6.91 ±0.05 / 7.02 ms │              6.60 / 6.69 ±0.07 / 6.76 ms │    no change │
│ QQuery 38 │        60.54 / 61.20 ±0.53 / 61.95 ms │           59.84 / 60.61 ±0.63 / 61.71 ms │    no change │
│ QQuery 39 │        72.34 / 74.12 ±2.28 / 78.60 ms │           71.97 / 73.51 ±2.33 / 78.15 ms │    no change │
│ QQuery 40 │        22.56 / 23.48 ±0.81 / 24.82 ms │           23.15 / 23.57 ±0.28 / 23.99 ms │    no change │
│ QQuery 41 │        10.90 / 11.04 ±0.23 / 11.49 ms │           10.89 / 11.14 ±0.29 / 11.64 ms │    no change │
│ QQuery 42 │        23.18 / 23.57 ±0.40 / 24.24 ms │           23.32 / 23.72 ±0.29 / 24.20 ms │    no change │
│ QQuery 43 │           5.02 / 5.14 ±0.15 / 5.44 ms │              5.03 / 5.15 ±0.21 / 5.56 ms │    no change │
│ QQuery 44 │           9.05 / 9.14 ±0.11 / 9.35 ms │              8.85 / 8.94 ±0.07 / 9.06 ms │    no change │
│ QQuery 45 │        37.02 / 38.07 ±1.37 / 40.72 ms │           36.38 / 36.91 ±0.56 / 38.00 ms │    no change │
│ QQuery 46 │        11.57 / 12.06 ±0.45 / 12.90 ms │           11.89 / 12.24 ±0.27 / 12.60 ms │    no change │
│ QQuery 47 │     212.68 / 216.71 ±3.17 / 221.31 ms │        214.39 / 216.90 ±2.91 / 222.51 ms │    no change │
│ QQuery 48 │        93.73 / 95.18 ±1.49 / 97.83 ms │           94.98 / 95.89 ±0.84 / 97.13 ms │    no change │
│ QQuery 49 │        69.96 / 70.96 ±1.59 / 74.12 ms │           69.57 / 70.04 ±0.58 / 71.17 ms │    no change │
│ QQuery 50 │        57.25 / 57.98 ±0.58 / 58.92 ms │           57.37 / 58.09 ±0.76 / 59.54 ms │    no change │
│ QQuery 51 │        93.03 / 94.93 ±1.06 / 96.30 ms │           92.77 / 94.02 ±1.07 / 95.91 ms │    no change │
│ QQuery 52 │        23.45 / 23.98 ±0.50 / 24.67 ms │           23.56 / 23.91 ±0.43 / 24.73 ms │    no change │
│ QQuery 53 │        28.05 / 28.53 ±0.33 / 29.07 ms │           28.10 / 28.42 ±0.18 / 28.60 ms │    no change │
│ QQuery 54 │        53.15 / 54.30 ±1.10 / 56.39 ms │           53.21 / 53.88 ±1.09 / 56.05 ms │    no change │
│ QQuery 55 │        23.10 / 23.31 ±0.18 / 23.52 ms │           23.05 / 23.16 ±0.08 / 23.27 ms │    no change │
│ QQuery 56 │        37.67 / 39.38 ±2.03 / 43.37 ms │           37.65 / 39.29 ±2.73 / 44.74 ms │    no change │
│ QQuery 57 │     166.34 / 168.25 ±1.14 / 169.62 ms │        165.52 / 166.40 ±0.91 / 168.01 ms │    no change │
│ QQuery 58 │     107.72 / 109.88 ±2.19 / 113.75 ms │        107.28 / 109.21 ±1.86 / 112.56 ms │    no change │
│ QQuery 59 │     115.41 / 116.87 ±2.39 / 121.63 ms │        114.43 / 116.58 ±1.39 / 118.72 ms │    no change │
│ QQuery 60 │        38.40 / 38.95 ±0.64 / 40.16 ms │           38.11 / 38.90 ±0.85 / 40.44 ms │    no change │
│ QQuery 61 │        11.26 / 11.51 ±0.19 / 11.85 ms │           11.24 / 11.48 ±0.16 / 11.71 ms │    no change │
│ QQuery 62 │        43.77 / 44.54 ±1.13 / 46.78 ms │           43.24 / 43.51 ±0.25 / 43.91 ms │    no change │
│ QQuery 63 │        28.39 / 28.78 ±0.29 / 29.27 ms │           28.53 / 28.99 ±0.52 / 29.93 ms │    no change │
│ QQuery 64 │     353.47 / 357.00 ±3.46 / 361.40 ms │        355.86 / 359.58 ±2.22 / 362.03 ms │    no change │
│ QQuery 65 │     127.80 / 132.45 ±3.47 / 136.58 ms │        130.39 / 135.19 ±4.92 / 144.56 ms │    no change │
│ QQuery 66 │        75.98 / 76.32 ±0.29 / 76.86 ms │           75.55 / 76.32 ±0.72 / 77.46 ms │    no change │
│ QQuery 67 │     236.49 / 242.84 ±4.23 / 248.35 ms │        242.11 / 247.30 ±4.42 / 252.95 ms │    no change │
│ QQuery 68 │        11.52 / 11.71 ±0.24 / 12.16 ms │           11.71 / 11.83 ±0.12 / 12.03 ms │    no change │
│ QQuery 69 │        55.42 / 58.10 ±4.26 / 66.58 ms │           55.77 / 57.61 ±2.88 / 63.34 ms │    no change │
│ QQuery 70 │     102.58 / 105.02 ±1.26 / 106.13 ms │        102.47 / 104.44 ±1.80 / 107.51 ms │    no change │
│ QQuery 71 │        35.02 / 35.36 ±0.32 / 35.95 ms │           34.93 / 35.12 ±0.22 / 35.51 ms │    no change │
│ QQuery 72 │ 1646.03 / 1676.60 ±24.15 / 1706.82 ms │    1649.32 / 1758.21 ±60.39 / 1833.52 ms │    no change │
│ QQuery 73 │         9.80 / 10.24 ±0.35 / 10.59 ms │            9.77 / 10.10 ±0.43 / 10.94 ms │    no change │
│ QQuery 74 │     151.23 / 154.24 ±1.95 / 156.65 ms │        155.64 / 159.61 ±3.48 / 165.50 ms │    no change │
│ QQuery 75 │     141.56 / 144.81 ±3.98 / 152.52 ms │        140.47 / 141.83 ±1.34 / 144.29 ms │    no change │
│ QQuery 76 │        34.19 / 34.46 ±0.20 / 34.80 ms │           34.10 / 34.58 ±0.32 / 34.90 ms │    no change │
│ QQuery 77 │        59.82 / 60.19 ±0.34 / 60.83 ms │           59.80 / 61.04 ±1.44 / 63.84 ms │    no change │
│ QQuery 78 │     159.52 / 164.26 ±5.48 / 171.12 ms │        159.36 / 166.37 ±5.80 / 176.18 ms │    no change │
│ QQuery 79 │        66.06 / 67.76 ±2.62 / 72.93 ms │           65.11 / 65.78 ±0.37 / 66.16 ms │    no change │
│ QQuery 80 │        94.25 / 96.40 ±1.48 / 98.61 ms │          93.76 / 96.43 ±2.33 / 100.46 ms │    no change │
│ QQuery 81 │        25.10 / 25.52 ±0.27 / 25.88 ms │           25.18 / 25.50 ±0.30 / 26.01 ms │    no change │
│ QQuery 82 │        16.00 / 16.27 ±0.46 / 17.19 ms │           15.95 / 16.08 ±0.08 / 16.16 ms │    no change │
│ QQuery 83 │        32.82 / 33.01 ±0.16 / 33.23 ms │           33.00 / 33.79 ±1.25 / 36.26 ms │    no change │
│ QQuery 84 │        29.25 / 29.86 ±0.69 / 31.17 ms │           29.36 / 29.92 ±0.41 / 30.59 ms │    no change │
│ QQuery 85 │     100.89 / 102.58 ±1.39 / 105.05 ms │        104.53 / 107.12 ±4.41 / 115.92 ms │    no change │
│ QQuery 86 │        24.70 / 25.01 ±0.33 / 25.60 ms │           25.31 / 25.55 ±0.27 / 25.92 ms │    no change │
│ QQuery 87 │        60.24 / 62.66 ±2.31 / 67.05 ms │           60.87 / 61.70 ±0.88 / 63.30 ms │    no change │
│ QQuery 88 │        60.03 / 60.39 ±0.36 / 60.99 ms │           60.72 / 63.49 ±4.43 / 72.33 ms │ 1.05x slower │
│ QQuery 89 │        34.93 / 35.48 ±0.53 / 36.44 ms │           35.49 / 35.74 ±0.45 / 36.64 ms │    no change │
│ QQuery 90 │        16.51 / 16.77 ±0.23 / 17.20 ms │           16.27 / 16.57 ±0.25 / 17.01 ms │    no change │
│ QQuery 91 │        44.38 / 44.78 ±0.31 / 45.24 ms │           43.75 / 44.00 ±0.20 / 44.36 ms │    no change │
│ QQuery 92 │        28.50 / 29.20 ±0.58 / 30.27 ms │           28.41 / 29.71 ±2.13 / 33.96 ms │    no change │
│ QQuery 93 │        48.07 / 48.96 ±0.69 / 49.98 ms │           49.06 / 49.88 ±0.75 / 50.94 ms │    no change │
│ QQuery 94 │        38.51 / 39.50 ±1.45 / 42.38 ms │           37.94 / 39.70 ±1.99 / 43.57 ms │    no change │
│ QQuery 95 │        79.49 / 80.90 ±2.01 / 84.85 ms │           78.68 / 79.58 ±0.60 / 80.28 ms │    no change │
│ QQuery 96 │        23.44 / 23.62 ±0.24 / 24.07 ms │           23.40 / 23.58 ±0.18 / 23.90 ms │    no change │
│ QQuery 97 │        50.42 / 51.46 ±1.14 / 53.43 ms │           50.48 / 51.85 ±1.34 / 54.41 ms │    no change │
│ QQuery 98 │        42.13 / 42.98 ±0.64 / 44.03 ms │           42.13 / 43.24 ±0.59 / 43.84 ms │    no change │
│ QQuery 99 │        64.45 / 65.00 ±0.48 / 65.61 ms │           65.03 / 65.69 ±0.36 / 66.11 ms │    no change │
└───────────┴───────────────────────────────────────┴──────────────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 8915.50ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 8997.60ms │
│ Average Time (HEAD)                                     │   90.06ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   90.88ms │
│ Queries Faster                                          │         0 │
│ Queries Slower                                          │         1 │
│ Queries with No Change                                  │        98 │
│ Queries with Failure                                    │         0 │
└─────────────────────────────────────────────────────────┴───────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 45.0s
Peak memory 1.9 GiB
Avg memory 1.3 GiB
CPU user 191.1s
CPU sys 5.4s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 50.0s
Peak memory 2.0 GiB
Avg memory 1.3 GiB
CPU user 195.7s
CPU sys 5.4s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

Comparing rich-T-kid/expose-push-batch-with-filter (6b1623c) to 6e4d9ba (merge-base) diff

Run configuration
run benchmark clickbench_partitioned
CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃       HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │    1.22 ms │                                  1.35 ms │  1.11x slower │
│ QQuery 1  │   11.53 ms │                                 12.10 ms │  1.05x slower │
│ QQuery 2  │   37.08 ms │                                 37.66 ms │     no change │
│ QQuery 3  │   31.19 ms │                                 32.77 ms │  1.05x slower │
│ QQuery 4  │  235.79 ms │                                274.95 ms │  1.17x slower │
│ QQuery 5  │  271.40 ms │                                314.01 ms │  1.16x slower │
│ QQuery 6  │    1.28 ms │                                  1.42 ms │  1.11x slower │
│ QQuery 7  │   13.01 ms │                                 13.89 ms │  1.07x slower │
│ QQuery 8  │  334.15 ms │                                390.05 ms │  1.17x slower │
│ QQuery 9  │  466.50 ms │                                477.85 ms │     no change │
│ QQuery 10 │   69.14 ms │                                 64.14 ms │ +1.08x faster │
│ QQuery 11 │   81.89 ms │                                 76.53 ms │ +1.07x faster │
│ QQuery 12 │  260.41 ms │                                267.44 ms │     no change │
│ QQuery 13 │  362.16 ms │                                360.75 ms │     no change │
│ QQuery 14 │  274.24 ms │                                278.37 ms │     no change │
│ QQuery 15 │  283.96 ms │                                306.12 ms │  1.08x slower │
│ QQuery 16 │  604.35 ms │                                621.06 ms │     no change │
│ QQuery 17 │  615.64 ms │                                626.67 ms │     no change │
│ QQuery 18 │ 1267.64 ms │                               1285.18 ms │     no change │
│ QQuery 19 │   27.46 ms │                                 27.17 ms │     no change │
│ QQuery 20 │  515.78 ms │                                516.05 ms │     no change │
│ QQuery 21 │  507.47 ms │                                510.19 ms │     no change │
│ QQuery 22 │  973.66 ms │                                990.33 ms │     no change │
│ QQuery 23 │ 3103.48 ms │                               3081.53 ms │     no change │
│ QQuery 24 │   41.46 ms │                                 40.22 ms │     no change │
│ QQuery 25 │  110.11 ms │                                104.76 ms │     no change │
│ QQuery 26 │   43.40 ms │                                 40.07 ms │ +1.08x faster │
│ QQuery 27 │  515.75 ms │                                509.10 ms │     no change │
│ QQuery 28 │ 2887.76 ms │                               3033.16 ms │  1.05x slower │
│ QQuery 29 │   41.63 ms │                                 43.48 ms │     no change │
│ QQuery 30 │  306.52 ms │                                297.54 ms │     no change │
│ QQuery 31 │  271.48 ms │                                274.20 ms │     no change │
│ QQuery 32 │  950.35 ms │                               1058.37 ms │  1.11x slower │
│ QQuery 33 │ 1455.01 ms │                               1549.75 ms │  1.07x slower │
│ QQuery 34 │ 1476.42 ms │                               1566.78 ms │  1.06x slower │
│ QQuery 35 │  288.83 ms │                                296.62 ms │     no change │
│ QQuery 36 │   65.20 ms │                                 67.94 ms │     no change │
│ QQuery 37 │   36.05 ms │                                 36.22 ms │     no change │
│ QQuery 38 │   43.79 ms │                                 44.10 ms │     no change │
│ QQuery 39 │  168.49 ms │                                166.22 ms │     no change │
│ QQuery 40 │   16.30 ms │                                 15.86 ms │     no change │
│ QQuery 41 │   15.38 ms │                                 15.46 ms │     no change │
│ QQuery 42 │   15.27 ms │                                 14.72 ms │     no change │
└───────────┴────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 19099.62ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 19742.15ms │
│ Average Time (HEAD)                                     │   444.18ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   459.12ms │
│ Queries Faster                                          │          3 │
│ Queries Slower                                          │         13 │
│ Queries with No Change                                  │         27 │
│ Queries with Failure                                    │          0 │
└─────────────────────────────────────────────────────────┴────────────┘

Distribution per query (min / mean ±stddev / max):

Comparing HEAD and rich-T-kid_expose-push-batch-with-filter
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                   HEAD ┃ rich-T-kid_expose-push-batch-with-filter ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │           1.22 / 4.01 ±5.47 / 14.94 ms │             1.35 / 4.41 ±5.83 / 16.06 ms │  1.10x slower │
│ QQuery 1  │         11.53 / 11.85 ±0.20 / 12.05 ms │           12.10 / 12.57 ±0.31 / 12.89 ms │  1.06x slower │
│ QQuery 2  │         37.08 / 37.79 ±0.60 / 38.87 ms │           37.66 / 37.93 ±0.28 / 38.28 ms │     no change │
│ QQuery 3  │         31.19 / 32.06 ±0.83 / 33.29 ms │           32.77 / 33.15 ±0.30 / 33.59 ms │     no change │
│ QQuery 4  │      235.79 / 238.72 ±2.26 / 242.09 ms │        274.95 / 282.23 ±4.54 / 287.24 ms │  1.18x slower │
│ QQuery 5  │      271.40 / 287.15 ±9.68 / 297.82 ms │        314.01 / 318.66 ±3.69 / 325.02 ms │  1.11x slower │
│ QQuery 6  │            1.28 / 1.44 ±0.24 / 1.90 ms │              1.42 / 1.59 ±0.23 / 2.05 ms │  1.11x slower │
│ QQuery 7  │         13.01 / 13.71 ±1.14 / 15.98 ms │           13.89 / 14.18 ±0.18 / 14.41 ms │     no change │
│ QQuery 8  │      334.15 / 340.54 ±4.05 / 346.34 ms │        390.05 / 398.17 ±5.79 / 406.57 ms │  1.17x slower │
│ QQuery 9  │     466.50 / 492.58 ±25.46 / 540.69 ms │       477.85 / 540.05 ±41.85 / 581.99 ms │  1.10x slower │
│ QQuery 10 │         69.14 / 69.91 ±0.94 / 71.54 ms │           64.14 / 67.05 ±1.84 / 68.92 ms │     no change │
│ QQuery 11 │         81.89 / 82.15 ±0.31 / 82.72 ms │           76.53 / 78.66 ±1.58 / 81.41 ms │     no change │
│ QQuery 12 │     260.41 / 269.00 ±10.49 / 289.56 ms │        267.44 / 272.81 ±3.44 / 277.35 ms │     no change │
│ QQuery 13 │     362.16 / 373.31 ±13.82 / 397.93 ms │        360.75 / 371.73 ±7.97 / 381.72 ms │     no change │
│ QQuery 14 │      274.24 / 282.16 ±5.53 / 288.90 ms │       278.37 / 298.71 ±16.58 / 320.81 ms │  1.06x slower │
│ QQuery 15 │     283.96 / 295.88 ±12.04 / 315.35 ms │       306.12 / 356.54 ±28.84 / 394.06 ms │  1.21x slower │
│ QQuery 16 │      604.35 / 620.02 ±8.72 / 629.20 ms │       621.06 / 640.99 ±14.76 / 658.72 ms │     no change │
│ QQuery 17 │     615.64 / 630.95 ±15.69 / 660.73 ms │       626.67 / 638.81 ±13.93 / 664.84 ms │     no change │
│ QQuery 18 │  1267.64 / 1339.41 ±63.54 / 1453.79 ms │    1285.18 / 1363.69 ±92.96 / 1541.97 ms │     no change │
│ QQuery 19 │         27.46 / 32.12 ±5.01 / 38.87 ms │           27.17 / 27.33 ±0.22 / 27.76 ms │ +1.18x faster │
│ QQuery 20 │     515.78 / 532.42 ±19.73 / 565.27 ms │        516.05 / 522.19 ±7.09 / 535.83 ms │     no change │
│ QQuery 21 │      507.47 / 513.48 ±4.96 / 521.17 ms │        510.19 / 518.51 ±7.49 / 529.84 ms │     no change │
│ QQuery 22 │      973.66 / 981.53 ±9.13 / 999.31 ms │     990.33 / 1005.72 ±11.12 / 1022.30 ms │     no change │
│ QQuery 23 │ 3103.48 / 3246.02 ±118.09 / 3382.55 ms │   3081.53 / 3212.63 ±107.76 / 3357.24 ms │     no change │
│ QQuery 24 │         41.46 / 49.68 ±6.64 / 57.17 ms │       40.22 / 129.01 ±148.67 / 422.92 ms │  2.60x slower │
│ QQuery 25 │      110.11 / 111.97 ±1.52 / 114.55 ms │        104.76 / 106.74 ±1.28 / 108.82 ms │     no change │
│ QQuery 26 │         43.40 / 44.98 ±1.65 / 48.02 ms │           40.07 / 41.23 ±1.51 / 44.18 ms │ +1.09x faster │
│ QQuery 27 │     515.75 / 534.76 ±14.96 / 556.74 ms │        509.10 / 515.35 ±7.41 / 529.43 ms │     no change │
│ QQuery 28 │  2887.76 / 2937.02 ±34.32 / 2978.83 ms │    3033.16 / 3078.55 ±37.31 / 3140.46 ms │     no change │
│ QQuery 29 │         41.63 / 42.20 ±0.57 / 43.04 ms │         43.48 / 71.57 ±54.18 / 179.91 ms │  1.70x slower │
│ QQuery 30 │      306.52 / 311.63 ±6.05 / 323.15 ms │       297.54 / 316.61 ±20.37 / 355.18 ms │     no change │
│ QQuery 31 │     271.48 / 293.45 ±18.20 / 324.01 ms │       274.20 / 316.51 ±46.56 / 406.54 ms │  1.08x slower │
│ QQuery 32 │     950.35 / 961.28 ±12.91 / 985.62 ms │    1058.37 / 1154.83 ±57.77 / 1217.16 ms │  1.20x slower │
│ QQuery 33 │  1455.01 / 1539.41 ±73.63 / 1662.76 ms │    1549.75 / 1647.72 ±65.50 / 1721.15 ms │  1.07x slower │
│ QQuery 34 │  1476.42 / 1501.67 ±22.78 / 1529.78 ms │    1566.78 / 1638.02 ±45.33 / 1696.03 ms │  1.09x slower │
│ QQuery 35 │     288.83 / 314.94 ±38.51 / 389.46 ms │      296.62 / 391.08 ±119.06 / 623.64 ms │  1.24x slower │
│ QQuery 36 │         65.20 / 70.42 ±4.86 / 78.31 ms │           67.94 / 75.62 ±4.30 / 81.04 ms │  1.07x slower │
│ QQuery 37 │         36.05 / 41.88 ±6.36 / 54.09 ms │           36.22 / 37.56 ±1.16 / 39.13 ms │ +1.11x faster │
│ QQuery 38 │         43.79 / 45.48 ±1.36 / 47.78 ms │          44.10 / 52.02 ±10.24 / 72.20 ms │  1.14x slower │
│ QQuery 39 │      168.49 / 183.47 ±8.95 / 191.61 ms │       166.22 / 184.69 ±12.50 / 199.49 ms │     no change │
│ QQuery 40 │         16.30 / 16.74 ±0.35 / 17.35 ms │           15.86 / 16.57 ±0.59 / 17.55 ms │     no change │
│ QQuery 41 │         15.38 / 15.66 ±0.27 / 16.18 ms │           15.46 / 16.05 ±0.40 / 16.42 ms │     no change │
│ QQuery 42 │         15.27 / 15.54 ±0.22 / 15.85 ms │           14.72 / 16.37 ±2.71 / 21.76 ms │  1.05x slower │
└───────────┴────────────────────────────────────────┴──────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                                       ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                                       │ 19760.38ms │
│ Total Time (rich-T-kid_expose-push-batch-with-filter)   │ 20824.41ms │
│ Average Time (HEAD)                                     │   459.54ms │
│ Average Time (rich-T-kid_expose-push-batch-with-filter) │   484.29ms │
│ Queries Faster                                          │          3 │
│ Queries Slower                                          │         19 │
│ Queries with No Change                                  │         21 │
│ Queries with Failure                                    │          0 │
└─────────────────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 12.0 GiB
Avg memory 4.7 GiB
CPU user 1011.1s
CPU sys 72.8s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 18.0 GiB
Avg memory 6.2 GiB
CPU user 1026.9s
CPU sys 98.0s
Peak spill 0 B

File an issue against this benchmark runner

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

physical-plan Changes to the physical-plan crate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

FilterExec: fuse filter and coalesce to avoid intermediate RecordBatch allocation

4 participants