Skip to content

refactor(physical-plan): Simplify ExecutionPlan API with replace_children - #23903

Open
JSOD11 wants to merge 11 commits into
apache:mainfrom
JSOD11:jsod/replace-children-07-25-26
Open

refactor(physical-plan): Simplify ExecutionPlan API with replace_children#23903
JSOD11 wants to merge 11 commits into
apache:mainfrom
JSOD11:jsod/replace-children-07-25-26

Conversation

@JSOD11

@JSOD11 JSOD11 commented Jul 26, 2026

Copy link
Copy Markdown
Contributor

Which issue does this PR close?

User-facing changes: Deprecating with_new_children and with_new_children_and_same_properties in favor of replace_children

As noted here, while the addition of with_new_children_and_same_properties has the benefit of skipping potentially expensive computation in the case that replacement children have the same properties as the original children, it widens the API surface area of ExecutionPlan in a way that could be confusing for users.

Thus, to rectify this, we unify these methods by introducing replace_children, and we shift towards with_new_children_if_necessary as the universal entry point for replacing the children of an ExecutionPlan. replace_children simplifies the interface for users by taking an enum called ChildrenPropertiesHint as an argument. The enum has two variants, SameProperties and Recompute, which function as a hint to replace_children from the caller as to whether or not the properties need to be recomputed.

Trait implementation migration

To migrate from with_new_children and with_new_children_and_same_properties to replace_children, I went through all 93 implementations of with_new_children and implemented replace_children with a match statement matching on the ChildrenPropertiesHint. In the case that the properties match, ChildrenPropertiesHint::SameProperties, and we have an implementation of with_new_children_and_same_properties, then we follow the body of with_new_children_and_same_properties. In the case that the properties do not match, ChildrenPropertiesHint::Recompute, we follow the body of with_new_children. In the cases in which there was no implementation of with_new_children_and_same_properties, I simply move the body of with_new_children into replace_children and ignore the hint.

I mark with_new_children and with_new_children_and_same_properties as deprecated with a migration note pointing to replace_children. After a couple releases, we'll drop the deprecated methods.

Example

For example, here is what the implementation looks like for FilterExec after this change:

    fn replace_children(
        self: Arc<Self>,
        mut children: Vec<Arc<dyn ExecutionPlan>>,
        hint: ChildrenPropertiesHint,
    ) -> Result<Arc<dyn ExecutionPlan>> {
        validate_child_count!(self, children);
        match hint {
            ChildrenPropertiesHint::SameProperties => Ok(Arc::new(Self {
                input: children.swap_remove(0),
                metrics: ExecutionPlanMetricsSet::new(),
                ..Self::clone(&*self)
            })),
            ChildrenPropertiesHint::Recompute => {
                let new_input = children.swap_remove(0);
                FilterExecBuilder::from(&*self)
                    .with_input(new_input)
                    .build()
                    .map(|e| Arc::new(e) as _)
            }
        }
    }

We see here that in the case that the hint suggests the properties are the same, we can simply swap the children without having to recompute the properties. In the case that the properties are not the same, we create a new node from scratch. We achieve this functionality by moving the hint calculations definitively into with_new_children_if_necessary rather than having them scattered around many methods. However, for this to all work we must ensure that users actually do use with_new_children_if_necessary by making it obvious to them somehow. I feel replace_children is a step in the right direction, but it could still be easy for a user to miss with_new_children_if_necessary and just jump to using replace_children instead.

Usage Migration

replace_children is called from with_new_children_if_necessary, which is the standard entry point that should be used for replacing the children of a node.

To model the intended behavior for our users, I took the time here to migrate usages of with_new_children and with_children_and_same_properties to with_new_children_if_necessary where it made sense to do so, and I migrated with_new_children_if_necessary to use replace_children with the correct hint filled in at each branch.

Testing

  • cargo fmt --all
  • cargo check -p datafusion-physical-plan
  • cargo check -p datafusion-physical-optimizer
  • cargo check -p datafusion --lib
  • cargo check -p datafusion-ffi
  • CI passing

@github-actions github-actions Bot added the physical-plan Changes to the physical-plan crate label Jul 26, 2026
@codecov-commenter

codecov-commenter commented Jul 26, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 42.81609% with 597 lines in your changes missing coverage. Please review.
✅ Project coverage is 80.91%. Comparing base (5eba27f) to head (739fcb6).

Files with missing lines Patch % Lines
datafusion/physical-plan/src/test/exec.rs 0.00% 48 Missing ⚠️
datafusion/physical-plan/src/execution_plan.rs 50.00% 41 Missing ⚠️
datafusion/core/src/physical_planner.rs 40.98% 36 Missing ⚠️
...ysical-plan/src/joins/piecewise_merge_join/exec.rs 34.78% 30 Missing ⚠️
datafusion/physical-plan/src/sorts/partial_sort.rs 0.00% 23 Missing ⚠️
datafusion/physical-plan/src/buffer.rs 0.00% 22 Missing ⚠️
datafusion/physical-plan/src/async_func.rs 0.00% 21 Missing ⚠️
...usion/physical-plan/src/operator_statistics/mod.rs 0.00% 17 Missing ⚠️
datafusion/physical-plan/src/sorts/sort.rs 19.04% 16 Missing and 1 partial ⚠️
datafusion/physical-plan/src/coalesce_batches.rs 36.00% 16 Missing ⚠️
... and 39 more
Additional details and impacted files
@@            Coverage Diff             @@
##             main   #23903      +/-   ##
==========================================
- Coverage   81.02%   80.91%   -0.12%     
==========================================
  Files        1105     1105              
  Lines      379704   380274     +570     
  Branches   379704   380274     +570     
==========================================
+ Hits       307671   307690      +19     
- Misses      53814    54375     +561     
+ Partials    18219    18209      -10     

☔ 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.

@github-actions github-actions Bot added the optimizer Optimizer rules label Jul 26, 2026
@JSOD11 JSOD11 changed the title feat: replace_children refactor(physical-plan): Simplify ExecutionPlan API with replace_children Jul 27, 2026
@github-actions github-actions Bot added core Core DataFusion crate catalog Related to the catalog crate proto Related to proto crate ffi Changes to the ffi crate labels Jul 28, 2026
@github-actions github-actions Bot added datasource Changes to the datasource crate auto detected api change Auto detected API change labels Jul 28, 2026
@github-actions github-actions Bot removed the auto detected api change Auto detected API change label Jul 29, 2026
@github-actions

github-actions Bot commented Jul 29, 2026

Copy link
Copy Markdown

Thank you for opening this pull request!

Reviewer note: cargo-semver-checks reported the current version number is not SemVer-compatible with the changes in this pull request (compared against the base branch).

Details
     Cloning apache/main
    Building datafusion v54.1.0 (current)
       Built [ 115.355s] (current)
     Parsing datafusion v54.1.0 (current)
      Parsed [   0.039s] (current)
    Building datafusion v54.1.0 (baseline)
       Built [ 112.245s] (baseline)
     Parsing datafusion v54.1.0 (baseline)
      Parsed [   0.038s] (baseline)
    Checking datafusion v54.1.0 -> v54.1.0 (no change; assume patch)
     Checked [   0.886s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [ 231.082s] datafusion
    Building datafusion-catalog v54.1.0 (current)
       Built [  41.250s] (current)
     Parsing datafusion-catalog v54.1.0 (current)
      Parsed [   0.027s] (current)
    Building datafusion-catalog v54.1.0 (baseline)
       Built [  41.321s] (baseline)
     Parsing datafusion-catalog v54.1.0 (baseline)
      Parsed [   0.027s] (baseline)
    Checking datafusion-catalog v54.1.0 -> v54.1.0 (no change; assume patch)
     Checked [   0.133s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [  84.033s] datafusion-catalog
    Building datafusion-datasource v54.1.0 (current)
       Built [  41.587s] (current)
     Parsing datafusion-datasource v54.1.0 (current)
      Parsed [   0.035s] (current)
    Building datafusion-datasource v54.1.0 (baseline)
       Built [  40.192s] (baseline)
     Parsing datafusion-datasource v54.1.0 (baseline)
      Parsed [   0.034s] (baseline)
    Checking datafusion-datasource v54.1.0 -> v54.1.0 (no change; assume patch)
     Checked [   0.329s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [  83.851s] datafusion-datasource
    Building datafusion-ffi v54.1.0 (current)
       Built [  60.235s] (current)
     Parsing datafusion-ffi v54.1.0 (current)
      Parsed [   0.065s] (current)
    Building datafusion-ffi v54.1.0 (baseline)
       Built [  63.337s] (baseline)
     Parsing datafusion-ffi v54.1.0 (baseline)
      Parsed [   0.067s] (baseline)
    Checking datafusion-ffi v54.1.0 -> v54.1.0 (no change; assume patch)
     Checked [   0.306s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [ 125.472s] datafusion-ffi
    Building datafusion-physical-optimizer v54.1.0 (current)
       Built [  40.129s] (current)
     Parsing datafusion-physical-optimizer v54.1.0 (current)
      Parsed [   0.023s] (current)
    Building datafusion-physical-optimizer v54.1.0 (baseline)
       Built [  39.995s] (baseline)
     Parsing datafusion-physical-optimizer v54.1.0 (baseline)
      Parsed [   0.024s] (baseline)
    Checking datafusion-physical-optimizer v54.1.0 -> v54.1.0 (no change; assume patch)
     Checked [   0.131s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [  81.682s] datafusion-physical-optimizer
    Building datafusion-physical-plan v54.1.0 (current)
       Built [  36.766s] (current)
     Parsing datafusion-physical-plan v54.1.0 (current)
      Parsed [   0.151s] (current)
    Building datafusion-physical-plan v54.1.0 (baseline)
       Built [  37.090s] (baseline)
     Parsing datafusion-physical-plan v54.1.0 (baseline)
      Parsed [   0.149s] (baseline)
    Checking datafusion-physical-plan v54.1.0 -> v54.1.0 (no change; assume patch)
     Checked [   0.879s] 223 checks: 222 pass, 1 fail, 0 warn, 30 skip

--- failure trait_method_marked_deprecated: trait method #[deprecated] added ---

Description:
A trait method is now #[deprecated]. Downstream crates will get a compiler warning when using this method.
        ref: https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-deprecated-attribute
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.49.0/src/lints/trait_method_marked_deprecated.ron

Failed in:
  method with_new_children in trait datafusion_physical_plan::execution_plan::ExecutionPlan in /home/runner/work/datafusion/datafusion/datafusion/physical-plan/src/execution_plan.rs:98
  method with_new_children_and_same_properties in trait datafusion_physical_plan::execution_plan::ExecutionPlan in /home/runner/work/datafusion/datafusion/datafusion/physical-plan/src/execution_plan.rs:98
  method with_new_children in trait datafusion_physical_plan::ExecutionPlan in /home/runner/work/datafusion/datafusion/datafusion/physical-plan/src/execution_plan.rs:98
  method with_new_children_and_same_properties in trait datafusion_physical_plan::ExecutionPlan in /home/runner/work/datafusion/datafusion/datafusion/physical-plan/src/execution_plan.rs:98

     Summary semver requires new minor version: 0 major and 1 minor checks failed
    Finished [  76.477s] datafusion-physical-plan
    Building datafusion-proto v54.1.0 (current)
       Built [  62.577s] (current)
     Parsing datafusion-proto v54.1.0 (current)
      Parsed [   0.020s] (current)
    Building datafusion-proto v54.1.0 (baseline)
       Built [  65.630s] (baseline)
     Parsing datafusion-proto v54.1.0 (baseline)
      Parsed [   0.021s] (baseline)
    Checking datafusion-proto v54.1.0 -> v54.1.0 (no change; assume patch)
     Checked [   0.342s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [ 130.004s] datafusion-proto

@github-actions github-actions Bot added the auto detected api change Auto detected API change label Jul 29, 2026
@github-actions github-actions Bot added the documentation Improvements or additions to documentation label Jul 29, 2026
@JSOD11
JSOD11 marked this pull request as ready for review July 30, 2026 17:30
@JSOD11

JSOD11 commented Jul 30, 2026

Copy link
Copy Markdown
Contributor Author

cc @zhuqi-lucas

Took a stab at this, let me know what you think!

@zhuqi-lucas

Copy link
Copy Markdown
Contributor

run benchmarks

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5139175106-1320-pzj5k 6.12.85+ #1 SMP Mon May 11 08:17:35 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 jsod/replace-children-07-25-26 (a2ccc1a) to 88365dd (merge-base) diff using: 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-c5139175106-1318-9mbtt 6.12.85+ #1 SMP Mon May 11 08:17:35 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 jsod/replace-children-07-25-26 (a2ccc1a) to 88365dd (merge-base) diff using: 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-c5139175106-1319-xpfnf 6.12.85+ #1 SMP Mon May 11 08:17:35 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 jsod/replace-children-07-25-26 (a2ccc1a) to 88365dd (merge-base) diff using: tpcds
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)

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 jsod_replace-children-07-25-26
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃ jsod_replace-children-07-25-26 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 38.62 / 39.99 ±1.14 / 41.35 ms │ 38.04 / 38.95 ±1.00 / 40.86 ms │     no change │
│ QQuery 2  │ 19.24 / 19.79 ±0.36 / 20.38 ms │ 18.99 / 19.46 ±0.27 / 19.79 ms │     no change │
│ QQuery 3  │ 30.94 / 32.53 ±1.34 / 34.30 ms │ 30.79 / 32.16 ±1.27 / 33.98 ms │     no change │
│ QQuery 4  │ 17.50 / 17.99 ±0.41 / 18.74 ms │ 17.45 / 18.00 ±0.54 / 19.05 ms │     no change │
│ QQuery 5  │ 38.14 / 40.00 ±1.01 / 40.83 ms │ 37.03 / 39.21 ±1.69 / 41.15 ms │     no change │
│ QQuery 6  │ 16.38 / 18.01 ±3.08 / 24.17 ms │ 16.29 / 16.45 ±0.11 / 16.58 ms │ +1.10x faster │
│ QQuery 7  │ 43.73 / 45.44 ±1.47 / 47.97 ms │ 44.52 / 46.50 ±1.89 / 48.95 ms │     no change │
│ QQuery 8  │ 43.32 / 45.09 ±1.24 / 46.16 ms │ 42.84 / 43.97 ±1.66 / 47.27 ms │     no change │
│ QQuery 9  │ 50.43 / 51.08 ±0.42 / 51.66 ms │ 50.38 / 51.95 ±1.23 / 54.14 ms │     no change │
│ QQuery 10 │ 42.72 / 43.62 ±0.95 / 45.39 ms │ 42.92 / 43.85 ±0.87 / 45.51 ms │     no change │
│ QQuery 11 │ 13.63 / 13.82 ±0.25 / 14.30 ms │ 13.49 / 13.94 ±0.41 / 14.68 ms │     no change │
│ QQuery 12 │ 24.23 / 24.95 ±0.92 / 26.73 ms │ 23.90 / 24.38 ±0.29 / 24.63 ms │     no change │
│ QQuery 13 │ 32.65 / 34.02 ±0.84 / 34.87 ms │ 32.97 / 34.41 ±2.00 / 38.34 ms │     no change │
│ QQuery 14 │ 23.56 / 23.75 ±0.12 / 23.85 ms │ 23.60 / 23.91 ±0.22 / 24.28 ms │     no change │
│ QQuery 15 │ 31.64 / 32.61 ±0.61 / 33.35 ms │ 31.90 / 32.88 ±1.00 / 34.21 ms │     no change │
│ QQuery 16 │ 13.96 / 14.18 ±0.16 / 14.40 ms │ 13.94 / 14.15 ±0.13 / 14.30 ms │     no change │
│ QQuery 17 │ 71.72 / 72.22 ±0.37 / 72.80 ms │ 73.55 / 74.69 ±0.64 / 75.28 ms │     no change │
│ QQuery 18 │ 57.97 / 59.98 ±1.75 / 62.68 ms │ 60.53 / 61.42 ±1.20 / 63.74 ms │     no change │
│ QQuery 19 │ 33.13 / 33.74 ±0.37 / 34.27 ms │ 33.22 / 34.12 ±0.95 / 35.96 ms │     no change │
│ QQuery 20 │ 32.17 / 32.38 ±0.17 / 32.64 ms │ 32.57 / 32.81 ±0.21 / 33.18 ms │     no change │
│ QQuery 21 │ 55.59 / 59.35 ±3.65 / 65.96 ms │ 57.37 / 58.46 ±0.73 / 59.59 ms │     no change │
│ QQuery 22 │ 14.11 / 15.47 ±2.07 / 19.58 ms │ 14.74 / 15.17 ±0.50 / 16.12 ms │     no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                             ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 770.02ms │
│ Total Time (jsod_replace-children-07-25-26)   │ 770.85ms │
│ Average Time (HEAD)                           │  35.00ms │
│ Average Time (jsod_replace-children-07-25-26) │  35.04ms │
│ Queries Faster                                │        1 │
│ Queries Slower                                │        0 │
│ Queries with No Change                        │       21 │
│ Queries with Failure                          │        0 │
└───────────────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 991.3 MiB
Avg memory 475.8 MiB
CPU user 22.0s
CPU sys 1.8s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.2 GiB
Avg memory 519.6 MiB
CPU user 22.1s
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)

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 jsod_replace-children-07-25-26
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃        jsod_replace-children-07-25-26 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.40 / 6.09 ±0.87 / 7.60 ms │           5.36 / 5.88 ±0.88 / 7.63 ms │     no change │
│ QQuery 2  │        80.48 / 80.94 ±0.30 / 81.43 ms │        79.45 / 79.65 ±0.14 / 79.83 ms │     no change │
│ QQuery 3  │        29.53 / 29.70 ±0.17 / 30.02 ms │        29.22 / 29.44 ±0.13 / 29.56 ms │     no change │
│ QQuery 4  │     498.74 / 505.68 ±5.53 / 513.20 ms │     493.79 / 499.65 ±5.73 / 509.52 ms │     no change │
│ QQuery 5  │        52.06 / 52.83 ±0.52 / 53.65 ms │        51.21 / 51.73 ±0.34 / 52.18 ms │     no change │
│ QQuery 6  │        36.55 / 37.01 ±0.23 / 37.16 ms │        36.34 / 36.52 ±0.23 / 36.94 ms │     no change │
│ QQuery 7  │       94.55 / 96.53 ±2.68 / 101.82 ms │        93.97 / 94.84 ±0.47 / 95.38 ms │     no change │
│ QQuery 8  │        36.77 / 37.44 ±0.38 / 37.82 ms │        36.94 / 38.32 ±1.80 / 41.71 ms │     no change │
│ QQuery 9  │        52.93 / 55.37 ±1.28 / 56.44 ms │        53.64 / 54.55 ±0.95 / 56.20 ms │     no change │
│ QQuery 10 │        62.94 / 63.56 ±0.33 / 63.83 ms │        63.05 / 63.26 ±0.17 / 63.46 ms │     no change │
│ QQuery 11 │     307.77 / 311.75 ±3.83 / 318.73 ms │     310.23 / 312.83 ±2.56 / 316.07 ms │     no change │
│ QQuery 12 │        28.95 / 29.15 ±0.24 / 29.57 ms │        28.73 / 29.00 ±0.22 / 29.33 ms │     no change │
│ QQuery 13 │     119.18 / 121.51 ±2.99 / 127.18 ms │     118.02 / 119.36 ±1.67 / 122.63 ms │     no change │
│ QQuery 14 │     417.67 / 418.94 ±0.80 / 419.87 ms │     410.21 / 411.87 ±1.67 / 414.27 ms │     no change │
│ QQuery 15 │        57.43 / 58.25 ±0.52 / 58.90 ms │        57.14 / 57.78 ±0.47 / 58.42 ms │     no change │
│ QQuery 16 │           6.53 / 6.71 ±0.27 / 7.26 ms │           6.49 / 6.67 ±0.24 / 7.14 ms │     no change │
│ QQuery 17 │        80.14 / 81.35 ±1.37 / 83.99 ms │        79.47 / 80.26 ±1.28 / 82.82 ms │     no change │
│ QQuery 18 │     123.51 / 125.22 ±1.55 / 127.54 ms │     122.45 / 123.63 ±1.26 / 126.02 ms │     no change │
│ QQuery 19 │        41.79 / 42.61 ±1.28 / 45.16 ms │        41.65 / 41.92 ±0.19 / 42.21 ms │     no change │
│ QQuery 20 │        36.41 / 37.04 ±0.38 / 37.42 ms │        35.62 / 36.24 ±0.75 / 37.67 ms │     no change │
│ QQuery 21 │        17.67 / 18.10 ±0.65 / 19.38 ms │        17.37 / 17.54 ±0.13 / 17.71 ms │     no change │
│ QQuery 22 │        63.83 / 64.68 ±0.48 / 65.13 ms │        63.59 / 64.83 ±1.73 / 68.22 ms │     no change │
│ QQuery 23 │     346.42 / 351.52 ±4.06 / 357.18 ms │     344.07 / 349.47 ±6.29 / 358.37 ms │     no change │
│ QQuery 24 │     224.90 / 227.22 ±1.52 / 229.41 ms │     222.86 / 225.21 ±2.07 / 228.72 ms │     no change │
│ QQuery 25 │     110.54 / 111.59 ±1.44 / 114.36 ms │     109.90 / 110.96 ±1.51 / 113.96 ms │     no change │
│ QQuery 26 │        57.97 / 58.40 ±0.40 / 59.12 ms │        57.15 / 59.40 ±3.52 / 66.41 ms │     no change │
│ QQuery 27 │           6.31 / 6.41 ±0.13 / 6.68 ms │           6.09 / 6.77 ±0.86 / 8.44 ms │  1.05x slower │
│ QQuery 28 │        57.35 / 61.01 ±1.96 / 62.84 ms │        57.31 / 59.52 ±1.82 / 61.47 ms │     no change │
│ QQuery 29 │      97.09 / 100.06 ±3.90 / 107.61 ms │       96.71 / 97.90 ±1.44 / 100.65 ms │     no change │
│ QQuery 30 │        33.20 / 33.92 ±0.69 / 34.84 ms │        32.56 / 35.05 ±3.25 / 41.28 ms │     no change │
│ QQuery 31 │     112.30 / 112.63 ±0.41 / 113.36 ms │     111.00 / 112.09 ±0.76 / 113.34 ms │     no change │
│ QQuery 32 │        20.67 / 22.26 ±2.80 / 27.86 ms │        20.37 / 20.60 ±0.23 / 20.89 ms │ +1.08x faster │
│ QQuery 33 │        37.98 / 38.88 ±0.81 / 40.41 ms │        37.49 / 37.77 ±0.20 / 38.00 ms │     no change │
│ QQuery 34 │        10.10 / 10.72 ±0.58 / 11.81 ms │         9.93 / 10.05 ±0.16 / 10.37 ms │ +1.07x faster │
│ QQuery 35 │        73.12 / 73.91 ±0.65 / 74.97 ms │        72.46 / 75.88 ±3.44 / 82.11 ms │     no change │
│ QQuery 36 │           5.66 / 5.81 ±0.20 / 6.20 ms │           5.54 / 5.68 ±0.20 / 6.07 ms │     no change │
│ QQuery 37 │           6.75 / 6.88 ±0.08 / 6.97 ms │           6.91 / 6.96 ±0.05 / 7.06 ms │     no change │
│ QQuery 38 │        61.59 / 62.15 ±0.30 / 62.43 ms │        61.19 / 61.86 ±0.39 / 62.29 ms │     no change │
│ QQuery 39 │        90.84 / 92.53 ±2.14 / 95.99 ms │        89.87 / 91.10 ±1.49 / 93.95 ms │     no change │
│ QQuery 40 │        23.27 / 23.50 ±0.25 / 23.94 ms │        23.46 / 24.23 ±0.62 / 24.91 ms │     no change │
│ QQuery 41 │        11.47 / 11.74 ±0.28 / 12.20 ms │        11.55 / 11.68 ±0.15 / 11.97 ms │     no change │
│ QQuery 42 │        24.15 / 24.48 ±0.47 / 25.39 ms │        24.25 / 24.64 ±0.49 / 25.60 ms │     no change │
│ QQuery 43 │           4.95 / 5.09 ±0.21 / 5.50 ms │           4.91 / 5.04 ±0.21 / 5.46 ms │     no change │
│ QQuery 44 │           9.44 / 9.50 ±0.03 / 9.53 ms │           9.23 / 9.29 ±0.08 / 9.42 ms │     no change │
│ QQuery 45 │        38.09 / 39.49 ±1.60 / 42.46 ms │        37.58 / 38.33 ±0.42 / 38.76 ms │     no change │
│ QQuery 46 │        12.26 / 12.68 ±0.40 / 13.23 ms │        11.72 / 12.10 ±0.28 / 12.56 ms │     no change │
│ QQuery 47 │     228.68 / 234.31 ±5.74 / 244.91 ms │     228.82 / 230.86 ±1.78 / 233.84 ms │     no change │
│ QQuery 48 │        96.36 / 96.71 ±0.27 / 97.10 ms │       96.13 / 98.51 ±3.35 / 105.14 ms │     no change │
│ QQuery 49 │        76.32 / 78.24 ±2.88 / 83.88 ms │        75.49 / 76.08 ±0.60 / 77.15 ms │     no change │
│ QQuery 50 │        59.31 / 60.34 ±0.60 / 60.91 ms │        59.36 / 59.79 ±0.37 / 60.27 ms │     no change │
│ QQuery 51 │        93.01 / 94.00 ±0.83 / 95.01 ms │        91.58 / 92.84 ±0.82 / 94.11 ms │     no change │
│ QQuery 52 │        24.55 / 24.89 ±0.19 / 25.13 ms │        24.34 / 24.59 ±0.32 / 25.22 ms │     no change │
│ QQuery 53 │        29.87 / 31.73 ±3.33 / 38.37 ms │        29.41 / 29.58 ±0.16 / 29.81 ms │ +1.07x faster │
│ QQuery 54 │        55.40 / 55.85 ±0.35 / 56.28 ms │        55.01 / 57.42 ±3.28 / 63.63 ms │     no change │
│ QQuery 55 │        23.88 / 24.28 ±0.29 / 24.70 ms │        23.53 / 23.96 ±0.35 / 24.58 ms │     no change │
│ QQuery 56 │        39.23 / 39.79 ±0.56 / 40.66 ms │        38.77 / 39.46 ±0.41 / 40.06 ms │     no change │
│ QQuery 57 │     176.67 / 179.13 ±3.43 / 185.78 ms │     175.02 / 177.88 ±4.46 / 186.73 ms │     no change │
│ QQuery 58 │     114.94 / 117.15 ±2.68 / 122.06 ms │     112.01 / 113.34 ±0.97 / 115.00 ms │     no change │
│ QQuery 59 │     118.91 / 119.52 ±0.45 / 120.23 ms │     117.98 / 119.80 ±2.07 / 123.26 ms │     no change │
│ QQuery 60 │        39.45 / 40.18 ±0.60 / 41.02 ms │        39.47 / 39.95 ±0.67 / 41.24 ms │     no change │
│ QQuery 61 │        12.40 / 13.55 ±2.27 / 18.10 ms │        11.93 / 12.11 ±0.17 / 12.42 ms │ +1.12x faster │
│ QQuery 62 │        47.07 / 47.40 ±0.41 / 48.20 ms │        45.94 / 46.35 ±0.38 / 47.04 ms │     no change │
│ QQuery 63 │        30.13 / 30.59 ±0.30 / 30.97 ms │        29.66 / 30.51 ±0.69 / 31.77 ms │     no change │
│ QQuery 64 │     407.74 / 412.08 ±3.09 / 416.49 ms │     409.09 / 415.73 ±6.38 / 426.08 ms │     no change │
│ QQuery 65 │     121.59 / 125.14 ±3.66 / 131.92 ms │     124.61 / 125.37 ±0.62 / 126.17 ms │     no change │
│ QQuery 66 │        81.12 / 81.74 ±0.48 / 82.58 ms │        79.89 / 82.60 ±4.00 / 90.44 ms │     no change │
│ QQuery 67 │     242.64 / 246.47 ±2.55 / 248.71 ms │     249.68 / 251.92 ±2.39 / 256.45 ms │     no change │
│ QQuery 68 │        12.08 / 12.21 ±0.12 / 12.39 ms │        11.72 / 11.99 ±0.24 / 12.41 ms │     no change │
│ QQuery 69 │        58.10 / 60.43 ±4.31 / 69.05 ms │        57.34 / 57.58 ±0.30 / 58.16 ms │     no change │
│ QQuery 70 │     106.18 / 109.87 ±3.40 / 115.73 ms │     106.51 / 110.19 ±4.77 / 119.55 ms │     no change │
│ QQuery 71 │        35.53 / 36.23 ±0.54 / 37.13 ms │        35.34 / 35.63 ±0.39 / 36.40 ms │     no change │
│ QQuery 72 │ 2016.12 / 2134.71 ±80.73 / 2253.41 ms │ 2088.34 / 2152.19 ±42.73 / 2221.96 ms │     no change │
│ QQuery 73 │          9.59 / 9.91 ±0.34 / 10.57 ms │         9.63 / 10.88 ±1.96 / 14.78 ms │  1.10x slower │
│ QQuery 74 │     175.18 / 178.90 ±3.62 / 184.11 ms │     174.86 / 176.74 ±1.69 / 179.75 ms │     no change │
│ QQuery 75 │     149.67 / 150.87 ±1.79 / 154.39 ms │     147.74 / 149.26 ±1.38 / 151.51 ms │     no change │
│ QQuery 76 │        35.93 / 36.50 ±0.51 / 37.39 ms │        35.51 / 36.63 ±1.12 / 38.61 ms │     no change │
│ QQuery 77 │        61.40 / 62.10 ±0.74 / 63.45 ms │        60.71 / 61.63 ±0.62 / 62.43 ms │     no change │
│ QQuery 78 │     199.22 / 201.96 ±1.94 / 204.35 ms │     195.79 / 200.67 ±3.68 / 206.96 ms │     no change │
│ QQuery 79 │        67.61 / 68.85 ±1.67 / 72.14 ms │        67.42 / 68.10 ±0.87 / 69.78 ms │     no change │
│ QQuery 80 │      99.98 / 101.24 ±1.13 / 102.56 ms │      99.61 / 101.47 ±3.01 / 107.41 ms │     no change │
│ QQuery 81 │        26.13 / 26.32 ±0.18 / 26.57 ms │        25.62 / 25.96 ±0.20 / 26.23 ms │     no change │
│ QQuery 82 │        16.30 / 16.59 ±0.21 / 16.94 ms │        16.13 / 16.36 ±0.28 / 16.88 ms │     no change │
│ QQuery 83 │        39.91 / 41.08 ±1.83 / 44.73 ms │        39.28 / 40.06 ±0.96 / 41.95 ms │     no change │
│ QQuery 84 │        30.16 / 31.52 ±1.64 / 34.69 ms │        30.15 / 30.38 ±0.16 / 30.61 ms │     no change │
│ QQuery 85 │     107.16 / 108.84 ±1.78 / 112.26 ms │     106.33 / 110.32 ±6.36 / 122.94 ms │     no change │
│ QQuery 86 │        25.44 / 25.98 ±0.44 / 26.68 ms │        25.06 / 25.59 ±0.44 / 26.15 ms │     no change │
│ QQuery 87 │        62.45 / 63.98 ±2.39 / 68.72 ms │        62.35 / 62.66 ±0.32 / 63.22 ms │     no change │
│ QQuery 88 │        63.36 / 63.56 ±0.18 / 63.86 ms │        63.00 / 65.65 ±4.57 / 74.76 ms │     no change │
│ QQuery 89 │        35.81 / 36.22 ±0.41 / 36.96 ms │        35.75 / 36.54 ±0.62 / 37.25 ms │     no change │
│ QQuery 90 │        16.98 / 17.30 ±0.22 / 17.61 ms │        16.59 / 16.87 ±0.22 / 17.25 ms │     no change │
│ QQuery 91 │        45.90 / 46.07 ±0.14 / 46.27 ms │        45.44 / 45.80 ±0.33 / 46.31 ms │     no change │
│ QQuery 92 │        29.41 / 31.79 ±2.90 / 37.45 ms │        29.50 / 29.99 ±0.36 / 30.37 ms │ +1.06x faster │
│ QQuery 93 │        50.31 / 51.42 ±1.31 / 53.87 ms │        50.09 / 51.58 ±1.14 / 53.00 ms │     no change │
│ QQuery 94 │        38.29 / 39.02 ±0.46 / 39.54 ms │        38.49 / 39.16 ±0.65 / 40.18 ms │     no change │
│ QQuery 95 │        80.18 / 80.92 ±0.47 / 81.46 ms │        80.30 / 81.33 ±0.89 / 82.50 ms │     no change │
│ QQuery 96 │        24.23 / 25.93 ±2.99 / 31.90 ms │        24.20 / 24.48 ±0.20 / 24.69 ms │ +1.06x faster │
│ QQuery 97 │        47.52 / 48.55 ±0.99 / 50.23 ms │        46.67 / 47.13 ±0.59 / 48.25 ms │     no change │
│ QQuery 98 │        43.55 / 43.99 ±0.54 / 45.05 ms │        42.85 / 44.05 ±1.39 / 46.68 ms │     no change │
│ QQuery 99 │        71.09 / 71.50 ±0.27 / 71.80 ms │        69.91 / 70.28 ±0.28 / 70.55 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃           ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 9970.20ms │
│ Total Time (jsod_replace-children-07-25-26)   │ 9933.09ms │
│ Average Time (HEAD)                           │  100.71ms │
│ Average Time (jsod_replace-children-07-25-26) │  100.33ms │
│ 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 55.0s
Peak memory 2.2 GiB
Avg memory 1.5 GiB
CPU user 221.5s
CPU sys 6.0s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 50.0s
Peak memory 2.2 GiB
Avg memory 1.5 GiB
CPU user 221.4s
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)

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 jsod_replace-children-07-25-26
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃         jsod_replace-children-07-25-26 ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.24 / 4.02 ±5.43 / 14.87 ms │           1.22 / 3.97 ±5.41 / 14.80 ms │     no change │
│ QQuery 1  │        12.32 / 12.56 ±0.13 / 12.72 ms │         12.38 / 12.57 ±0.15 / 12.84 ms │     no change │
│ QQuery 2  │        36.02 / 36.31 ±0.24 / 36.60 ms │         35.90 / 36.14 ±0.16 / 36.34 ms │     no change │
│ QQuery 3  │        30.40 / 31.57 ±0.81 / 32.56 ms │         30.91 / 31.17 ±0.26 / 31.51 ms │     no change │
│ QQuery 4  │     219.34 / 224.63 ±2.66 / 226.23 ms │      221.78 / 225.13 ±2.61 / 228.95 ms │     no change │
│ QQuery 5  │     271.93 / 274.05 ±1.66 / 276.19 ms │     271.03 / 292.51 ±16.20 / 310.91 ms │  1.07x slower │
│ QQuery 6  │           1.26 / 1.42 ±0.25 / 1.91 ms │            1.52 / 1.68 ±0.17 / 2.00 ms │  1.18x slower │
│ QQuery 7  │        13.75 / 13.93 ±0.18 / 14.26 ms │         14.56 / 14.69 ±0.13 / 14.93 ms │  1.05x slower │
│ QQuery 8  │     322.80 / 327.20 ±4.63 / 336.08 ms │     348.68 / 370.93 ±17.69 / 391.62 ms │  1.13x slower │
│ QQuery 9  │    455.20 / 473.05 ±13.99 / 493.24 ms │      456.27 / 463.23 ±8.19 / 474.04 ms │     no change │
│ QQuery 10 │        68.57 / 69.78 ±0.80 / 70.70 ms │         68.29 / 71.64 ±4.07 / 79.65 ms │     no change │
│ QQuery 11 │        80.74 / 81.85 ±1.05 / 83.19 ms │         79.08 / 80.76 ±1.45 / 83.03 ms │     no change │
│ QQuery 12 │     265.32 / 272.93 ±9.78 / 291.94 ms │      264.97 / 269.92 ±3.46 / 275.09 ms │     no change │
│ QQuery 13 │    363.40 / 373.41 ±12.93 / 398.50 ms │      364.36 / 377.27 ±6.99 / 384.95 ms │     no change │
│ QQuery 14 │    281.46 / 304.22 ±17.16 / 321.12 ms │      279.94 / 285.02 ±4.40 / 293.05 ms │ +1.07x faster │
│ QQuery 15 │    295.67 / 326.01 ±18.40 / 351.93 ms │      269.64 / 273.22 ±3.27 / 279.05 ms │ +1.19x faster │
│ QQuery 16 │    606.63 / 620.29 ±17.59 / 654.68 ms │     607.34 / 672.91 ±50.43 / 722.20 ms │  1.08x slower │
│ QQuery 17 │    612.68 / 622.53 ±10.11 / 635.98 ms │     617.45 / 635.90 ±15.90 / 665.52 ms │     no change │
│ QQuery 18 │ 1259.51 / 1290.69 ±45.00 / 1379.87 ms │  1255.92 / 1288.16 ±34.05 / 1330.83 ms │     no change │
│ QQuery 19 │        30.24 / 30.65 ±0.59 / 31.82 ms │         27.91 / 30.88 ±4.90 / 40.63 ms │     no change │
│ QQuery 20 │    526.64 / 545.84 ±20.26 / 572.00 ms │     517.94 / 531.36 ±18.52 / 567.58 ms │     no change │
│ QQuery 21 │     513.71 / 519.61 ±5.42 / 527.28 ms │     519.36 / 533.18 ±11.62 / 546.89 ms │     no change │
│ QQuery 22 │    988.17 / 995.43 ±8.68 / 1011.54 ms │   987.31 / 1016.13 ±21.52 / 1053.92 ms │     no change │
│ QQuery 23 │ 3040.12 / 3120.15 ±91.61 / 3298.18 ms │  3079.08 / 3127.57 ±77.49 / 3282.21 ms │     no change │
│ QQuery 24 │        40.92 / 41.39 ±0.55 / 42.43 ms │         41.09 / 41.35 ±0.36 / 42.06 ms │     no change │
│ QQuery 25 │     111.03 / 112.50 ±1.46 / 114.44 ms │      110.67 / 112.06 ±1.06 / 113.86 ms │     no change │
│ QQuery 26 │        41.44 / 43.07 ±1.30 / 45.01 ms │         41.22 / 42.22 ±0.78 / 43.60 ms │     no change │
│ QQuery 27 │    519.78 / 539.48 ±10.99 / 553.29 ms │      517.40 / 523.08 ±5.40 / 531.88 ms │     no change │
│ QQuery 28 │ 2901.94 / 2929.88 ±18.01 / 2951.92 ms │  2914.05 / 2939.89 ±41.94 / 3023.12 ms │     no change │
│ QQuery 29 │      41.47 / 59.73 ±33.14 / 125.92 ms │         40.75 / 44.02 ±6.20 / 56.41 ms │ +1.36x faster │
│ QQuery 30 │    316.05 / 337.46 ±11.41 / 347.68 ms │      300.10 / 309.47 ±6.26 / 318.56 ms │ +1.09x faster │
│ QQuery 31 │    306.19 / 324.13 ±11.99 / 339.14 ms │     277.75 / 300.56 ±22.46 / 341.72 ms │ +1.08x faster │
│ QQuery 32 │     948.42 / 961.40 ±7.44 / 971.13 ms │   946.11 / 1059.65 ±83.77 / 1185.00 ms │  1.10x slower │
│ QQuery 33 │ 1442.38 / 1523.53 ±71.18 / 1616.81 ms │  1432.18 / 1492.24 ±31.46 / 1520.38 ms │     no change │
│ QQuery 34 │ 1501.94 / 1565.89 ±81.28 / 1723.60 ms │ 1449.03 / 1568.58 ±121.94 / 1769.90 ms │     no change │
│ QQuery 35 │    278.47 / 310.53 ±40.29 / 386.63 ms │     279.52 / 300.11 ±37.47 / 374.95 ms │     no change │
│ QQuery 36 │        67.68 / 73.70 ±7.09 / 87.04 ms │         65.76 / 68.67 ±2.66 / 72.91 ms │ +1.07x faster │
│ QQuery 37 │        35.64 / 37.72 ±3.93 / 45.59 ms │        35.25 / 47.09 ±10.51 / 64.94 ms │  1.25x slower │
│ QQuery 38 │        43.72 / 46.07 ±2.18 / 48.90 ms │         40.61 / 43.41 ±2.32 / 46.18 ms │ +1.06x faster │
│ QQuery 39 │     150.11 / 158.60 ±5.00 / 164.26 ms │     145.71 / 159.56 ±12.90 / 181.51 ms │     no change │
│ QQuery 40 │        13.97 / 15.94 ±2.27 / 20.38 ms │         14.26 / 14.65 ±0.22 / 14.91 ms │ +1.09x faster │
│ QQuery 41 │        13.55 / 13.83 ±0.36 / 14.53 ms │         13.50 / 13.68 ±0.26 / 14.20 ms │     no change │
│ QQuery 42 │        12.99 / 13.49 ±0.50 / 14.26 ms │         13.15 / 13.32 ±0.13 / 13.49 ms │     no change │
└───────────┴───────────────────────────────────────┴────────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                             ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                             │ 19680.45ms │
│ Total Time (jsod_replace-children-07-25-26)   │ 19739.58ms │
│ Average Time (HEAD)                           │   457.68ms │
│ Average Time (jsod_replace-children-07-25-26) │   459.06ms │
│ Queries Faster                                │          8 │
│ Queries Slower                                │          7 │
│ Queries with No Change                        │         28 │
│ Queries with Failure                          │          0 │
└───────────────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 10.1 GiB
Avg memory 4.2 GiB
CPU user 1008.2s
CPU sys 72.7s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 12.2 GiB
Avg memory 4.7 GiB
CPU user 1009.5s
CPU sys 73.7s
Peak spill 0 B

File an issue against this benchmark runner

@zhuqi-lucas

Copy link
Copy Markdown
Contributor

run benchmark sql_planner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c5202497828-1469-h5mx8 6.12.85+ #1 SMP Wed Jun 17 20:31:55 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 jsod/replace-children-07-25-26 (739fcb6) to 5eba27f (merge-base) diff

Run configuration
run benchmark sql_planner

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 jsod/replace-children-07-25-26 (739fcb6) to 5eba27f (merge-base) diff

Run configuration
run benchmark sql_planner
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

group                                                 HEAD                                   jsod_replace-children-07-25-26
-----                                                 ----                                   ------------------------------
logical_aggregate_with_join                           1.02    455.7±1.03µs        ? ?/sec    1.00    448.0±1.46µs        ? ?/sec
logical_correlated_subquery_exists                    1.01    286.1±1.08µs        ? ?/sec    1.00    282.8±0.63µs        ? ?/sec
logical_correlated_subquery_in                        1.01    287.2±1.14µs        ? ?/sec    1.00    284.7±0.81µs        ? ?/sec
logical_distinct_many_columns                         1.00    570.1±2.62µs        ? ?/sec    1.00    569.9±1.77µs        ? ?/sec
logical_join_4_with_agg_and_filter                    1.00    252.0±1.69µs        ? ?/sec    1.00    250.8±1.20µs        ? ?/sec
logical_join_8_with_agg_sort_limit                    1.01    425.1±2.31µs        ? ?/sec    1.00    421.8±1.77µs        ? ?/sec
logical_join_chain_16                                 1.02    678.4±3.53µs        ? ?/sec    1.00    662.7±3.40µs        ? ?/sec
logical_join_chain_4                                  1.01    121.3±0.53µs        ? ?/sec    1.00    120.2±0.48µs        ? ?/sec
logical_join_chain_8                                  1.01    249.5±1.07µs        ? ?/sec    1.00    246.1±1.43µs        ? ?/sec
logical_multiple_subqueries                           1.03    526.6±2.49µs        ? ?/sec    1.00    513.0±6.64µs        ? ?/sec
logical_nested_cte_4_levels                           1.01    262.3±1.63µs        ? ?/sec    1.00    259.9±1.89µs        ? ?/sec
logical_plan_struct_join_agg_sort                     1.01    182.0±1.06µs        ? ?/sec    1.00    179.5±1.36µs        ? ?/sec
logical_plan_tpcds_all                                1.00     93.9±0.13ms        ? ?/sec    1.00     94.0±0.14ms        ? ?/sec
logical_plan_tpch_all                                 1.00      6.7±0.02ms        ? ?/sec    1.01      6.7±0.02ms        ? ?/sec
logical_scalar_subquery                               1.00    308.2±2.33µs        ? ?/sec    1.00    306.7±1.65µs        ? ?/sec
logical_select_all_from_1000                          1.01    104.9±1.16ms        ? ?/sec    1.00    103.8±0.22ms        ? ?/sec
logical_select_one_from_700                           1.01    330.0±1.59µs        ? ?/sec    1.00    326.5±1.83µs        ? ?/sec
logical_trivial_join_high_numbered_columns            1.01    287.7±0.69µs        ? ?/sec    1.00    283.7±1.20µs        ? ?/sec
logical_trivial_join_low_numbered_columns             1.03    276.2±0.73µs        ? ?/sec    1.00    268.4±0.74µs        ? ?/sec
logical_union_4_branches                              1.02    426.4±3.15µs        ? ?/sec    1.00    417.6±0.74µs        ? ?/sec
logical_union_8_branches                              1.02    817.8±3.61µs        ? ?/sec    1.00    801.8±2.47µs        ? ?/sec
logical_wide_aggregate_100_exprs                      1.00      4.5±0.01ms        ? ?/sec    1.00      4.5±0.01ms        ? ?/sec
logical_wide_case_50_exprs                            1.00      2.4±0.00ms        ? ?/sec    1.00      2.4±0.01ms        ? ?/sec
logical_wide_filter_200_predicates                    1.00   1321.3±7.43µs        ? ?/sec    1.00   1315.8±8.35µs        ? ?/sec
logical_wide_filter_50_predicates                     1.02    393.6±2.34µs        ? ?/sec    1.00    386.3±2.37µs        ? ?/sec
optimizer_correlated_exists                           1.03    249.4±1.52µs        ? ?/sec    1.00    242.2±0.70µs        ? ?/sec
optimizer_join_4_with_agg_filter                      1.01    462.8±1.37µs        ? ?/sec    1.00    457.3±0.92µs        ? ?/sec
optimizer_join_chain_4                                1.02    181.1±0.20µs        ? ?/sec    1.00    178.4±0.22µs        ? ?/sec
optimizer_join_chain_8                                1.01    564.4±1.04µs        ? ?/sec    1.00    560.3±0.87µs        ? ?/sec
optimizer_select_all_from_1000                        1.00      6.8±0.01ms        ? ?/sec    1.04      7.1±0.02ms        ? ?/sec
optimizer_select_one_from_700                         1.03    261.4±0.95µs        ? ?/sec    1.00    254.8±0.83µs        ? ?/sec
optimizer_tpcds_all                                   1.00    310.4±0.28ms        ? ?/sec    1.00    308.9±0.28ms        ? ?/sec
optimizer_tpch_all                                    1.00     17.3±0.03ms        ? ?/sec    1.00     17.3±0.03ms        ? ?/sec
optimizer_wide_aggregate_100                          1.00      2.3±0.00ms        ? ?/sec    1.00      2.3±0.00ms        ? ?/sec
optimizer_wide_filter_200                             1.00      3.7±0.01ms        ? ?/sec    1.01      3.7±0.01ms        ? ?/sec
physical_intersection                                 1.02    602.4±2.08µs        ? ?/sec    1.00    589.8±1.52µs        ? ?/sec
physical_join_consider_sort                           1.01   1064.2±3.02µs        ? ?/sec    1.00   1051.4±2.47µs        ? ?/sec
physical_join_distinct                                1.02    268.8±0.83µs        ? ?/sec    1.00    262.8±1.04µs        ? ?/sec
physical_many_self_joins                              1.02      7.8±0.01ms        ? ?/sec    1.00      7.6±0.03ms        ? ?/sec
physical_plan_clickbench_all                          1.01    129.3±0.41ms        ? ?/sec    1.00    128.5±0.30ms        ? ?/sec
physical_plan_clickbench_q1                           1.01   1391.9±7.87µs        ? ?/sec    1.00   1382.2±6.84µs        ? ?/sec
physical_plan_clickbench_q10                          1.00      2.1±0.01ms        ? ?/sec    1.02      2.1±0.01ms        ? ?/sec
physical_plan_clickbench_q11                          1.01      2.2±0.01ms        ? ?/sec    1.00      2.2±0.01ms        ? ?/sec
physical_plan_clickbench_q12                          1.01      2.3±0.01ms        ? ?/sec    1.00      2.3±0.01ms        ? ?/sec
physical_plan_clickbench_q13                          1.00      2.0±0.01ms        ? ?/sec    1.00      2.0±0.01ms        ? ?/sec
physical_plan_clickbench_q14                          1.00      2.2±0.01ms        ? ?/sec    1.00      2.2±0.01ms        ? ?/sec
physical_plan_clickbench_q15                          1.00      2.1±0.01ms        ? ?/sec    1.01      2.1±0.01ms        ? ?/sec
physical_plan_clickbench_q16                          1.01   1813.8±9.22µs        ? ?/sec    1.00   1790.0±6.01µs        ? ?/sec
physical_plan_clickbench_q17                          1.00   1834.6±6.96µs        ? ?/sec    1.00   1838.1±6.51µs        ? ?/sec
physical_plan_clickbench_q18                          1.01   1698.2±7.07µs        ? ?/sec    1.00   1675.3±7.97µs        ? ?/sec
physical_plan_clickbench_q19                          1.01      2.1±0.01ms        ? ?/sec    1.00      2.1±0.01ms        ? ?/sec
physical_plan_clickbench_q2                           1.01   1782.1±5.94µs        ? ?/sec    1.00   1767.5±7.49µs        ? ?/sec
physical_plan_clickbench_q20                          1.01   1547.5±6.48µs        ? ?/sec    1.00   1528.6±5.74µs        ? ?/sec
physical_plan_clickbench_q21                          1.02   1789.7±7.03µs        ? ?/sec    1.00   1763.0±7.14µs        ? ?/sec
physical_plan_clickbench_q22                          1.01      2.2±0.01ms        ? ?/sec    1.00      2.2±0.01ms        ? ?/sec
physical_plan_clickbench_q23                          1.03      2.4±0.01ms        ? ?/sec    1.00      2.3±0.01ms        ? ?/sec
physical_plan_clickbench_q24                          1.01      6.7±0.01ms        ? ?/sec    1.00      6.7±0.01ms        ? ?/sec
physical_plan_clickbench_q25                          1.02   1935.0±7.98µs        ? ?/sec    1.00   1898.2±6.98µs        ? ?/sec
physical_plan_clickbench_q26                          1.02   1768.4±6.86µs        ? ?/sec    1.00   1733.0±6.87µs        ? ?/sec
physical_plan_clickbench_q27                          1.02   1962.7±7.85µs        ? ?/sec    1.00   1922.5±7.53µs        ? ?/sec
physical_plan_clickbench_q28                          1.04      2.4±0.01ms        ? ?/sec    1.00      2.3±0.01ms        ? ?/sec
physical_plan_clickbench_q29                          1.01      2.5±0.01ms        ? ?/sec    1.00      2.5±0.01ms        ? ?/sec
physical_plan_clickbench_q3                           1.00   1676.4±6.42µs        ? ?/sec    1.00  1675.8±10.68µs        ? ?/sec
physical_plan_clickbench_q30                          1.00     16.2±0.04ms        ? ?/sec    1.00     16.2±0.06ms        ? ?/sec
physical_plan_clickbench_q31                          1.00      2.5±0.01ms        ? ?/sec    1.00      2.5±0.01ms        ? ?/sec
physical_plan_clickbench_q32                          1.00      2.5±0.01ms        ? ?/sec    1.00      2.5±0.02ms        ? ?/sec
physical_plan_clickbench_q33                          1.00      2.1±0.01ms        ? ?/sec    1.00      2.1±0.01ms        ? ?/sec
physical_plan_clickbench_q34                          1.00   1812.2±7.90µs        ? ?/sec    1.00   1804.5±6.77µs        ? ?/sec
physical_plan_clickbench_q35                          1.00   1841.4±6.76µs        ? ?/sec    1.01   1851.0±7.02µs        ? ?/sec
physical_plan_clickbench_q36                          1.00      2.2±0.01ms        ? ?/sec    1.00      2.2±0.01ms        ? ?/sec
physical_plan_clickbench_q37                          1.00      2.5±0.01ms        ? ?/sec    1.00      2.5±0.01ms        ? ?/sec
physical_plan_clickbench_q38                          1.00      2.5±0.01ms        ? ?/sec    1.00      2.5±0.01ms        ? ?/sec
physical_plan_clickbench_q39                          1.00      2.6±0.01ms        ? ?/sec    1.00      2.6±0.01ms        ? ?/sec
physical_plan_clickbench_q4                           1.01   1505.1±9.14µs        ? ?/sec    1.00  1486.6±11.73µs        ? ?/sec
physical_plan_clickbench_q40                          1.02      3.4±0.01ms        ? ?/sec    1.00      3.3±0.01ms        ? ?/sec
physical_plan_clickbench_q41                          1.01      2.9±0.02ms        ? ?/sec    1.00      2.8±0.01ms        ? ?/sec
physical_plan_clickbench_q42                          1.01      3.0±0.02ms        ? ?/sec    1.00      3.0±0.02ms        ? ?/sec
physical_plan_clickbench_q43                          1.01      3.2±0.03ms        ? ?/sec    1.00      3.2±0.02ms        ? ?/sec
physical_plan_clickbench_q44                          1.02   1598.8±7.15µs        ? ?/sec    1.00   1571.9±7.94µs        ? ?/sec
physical_plan_clickbench_q45                          1.02   1605.2±9.68µs        ? ?/sec    1.00  1579.1±10.20µs        ? ?/sec
physical_plan_clickbench_q46                          1.00   1887.2±7.42µs        ? ?/sec    1.00   1887.9±5.76µs        ? ?/sec
physical_plan_clickbench_q47                          1.01      2.6±0.01ms        ? ?/sec    1.00      2.6±0.01ms        ? ?/sec
physical_plan_clickbench_q48                          1.01      2.8±0.01ms        ? ?/sec    1.00      2.7±0.01ms        ? ?/sec
physical_plan_clickbench_q49                          1.01      2.8±0.01ms        ? ?/sec    1.00      2.8±0.01ms        ? ?/sec
physical_plan_clickbench_q5                           1.00   1617.3±6.69µs        ? ?/sec    1.02   1644.1±7.70µs        ? ?/sec
physical_plan_clickbench_q50                          1.01      2.7±0.01ms        ? ?/sec    1.00      2.7±0.01ms        ? ?/sec
physical_plan_clickbench_q51                          1.02      2.1±0.01ms        ? ?/sec    1.00      2.0±0.01ms        ? ?/sec
physical_plan_clickbench_q6                           1.00   1622.0±5.87µs        ? ?/sec    1.02   1650.4±6.24µs        ? ?/sec
physical_plan_clickbench_q7                           1.00   1456.8±6.85µs        ? ?/sec    1.02   1483.7±5.76µs        ? ?/sec
physical_plan_clickbench_q8                           1.00   1944.3±9.90µs        ? ?/sec    1.03      2.0±0.01ms        ? ?/sec
physical_plan_clickbench_q9                           1.00   1929.2±8.58µs        ? ?/sec    1.04      2.0±0.01ms        ? ?/sec
physical_plan_struct_join_agg_sort                    1.01   1328.0±9.25µs        ? ?/sec    1.00   1318.7±2.15µs        ? ?/sec
physical_plan_tpcds_all                               1.00    718.6±3.22ms        ? ?/sec    1.00    715.1±0.51ms        ? ?/sec
physical_plan_tpch_all                                1.00     44.9±0.06ms        ? ?/sec    1.00     44.7±0.06ms        ? ?/sec
physical_plan_tpch_q1                                 1.00   1618.8±2.79µs        ? ?/sec    1.00   1624.0±2.83µs        ? ?/sec
physical_plan_tpch_q10                                1.01      2.9±0.00ms        ? ?/sec    1.00      2.8±0.00ms        ? ?/sec
physical_plan_tpch_q11                                1.00      2.3±0.00ms        ? ?/sec    1.01      2.3±0.00ms        ? ?/sec
physical_plan_tpch_q12                                1.00   1253.0±3.29µs        ? ?/sec    1.01   1263.3±1.92µs        ? ?/sec
physical_plan_tpch_q13                                1.00   1041.2±1.93µs        ? ?/sec    1.00   1041.3±3.12µs        ? ?/sec
physical_plan_tpch_q14                                1.00   1451.8±3.15µs        ? ?/sec    1.00   1449.5±3.14µs        ? ?/sec
physical_plan_tpch_q16                                1.00   1608.4±2.20µs        ? ?/sec    1.00   1608.9±2.91µs        ? ?/sec
physical_plan_tpch_q17                                1.00   1643.4±2.38µs        ? ?/sec    1.00   1643.1±2.61µs        ? ?/sec
physical_plan_tpch_q18                                1.00   1951.1±3.38µs        ? ?/sec    1.00   1953.5±3.07µs        ? ?/sec
physical_plan_tpch_q19                                1.00   1889.3±3.17µs        ? ?/sec    1.00   1895.4±3.11µs        ? ?/sec
physical_plan_tpch_q2                                 1.00      3.6±0.00ms        ? ?/sec    1.01      3.7±0.00ms        ? ?/sec
physical_plan_tpch_q20                                1.00      2.1±0.01ms        ? ?/sec    1.00      2.1±0.00ms        ? ?/sec
physical_plan_tpch_q21                                1.00      2.8±0.02ms        ? ?/sec    1.00      2.8±0.00ms        ? ?/sec
physical_plan_tpch_q22                                1.00   1501.2±6.69µs        ? ?/sec    1.00   1496.6±2.61µs        ? ?/sec
physical_plan_tpch_q3                                 1.00   1887.5±3.76µs        ? ?/sec    1.01   1903.6±4.19µs        ? ?/sec
physical_plan_tpch_q4                                 1.00   1208.2±2.06µs        ? ?/sec    1.02   1226.7±2.62µs        ? ?/sec
physical_plan_tpch_q5                                 1.00      2.8±0.00ms        ? ?/sec    1.01      2.8±0.01ms        ? ?/sec
physical_plan_tpch_q6                                 1.00    650.1±1.57µs        ? ?/sec    1.00    649.2±5.52µs        ? ?/sec
physical_plan_tpch_q7                                 1.00      2.9±0.00ms        ? ?/sec    1.00      2.9±0.00ms        ? ?/sec
physical_plan_tpch_q8                                 1.00      3.9±0.00ms        ? ?/sec    1.00      3.9±0.00ms        ? ?/sec
physical_plan_tpch_q9                                 1.00      2.8±0.00ms        ? ?/sec    1.00      2.8±0.00ms        ? ?/sec
physical_select_aggregates_from_200                   1.00     15.4±0.03ms        ? ?/sec    1.00     15.5±0.03ms        ? ?/sec
physical_select_all_from_1000                         1.00    115.1±0.42ms        ? ?/sec    1.00    115.2±0.16ms        ? ?/sec
physical_select_one_from_700                          1.02    779.6±3.57µs        ? ?/sec    1.00    767.6±2.41µs        ? ?/sec
physical_sorted_union_order_by_10_int64               1.00      4.4±0.01ms        ? ?/sec    1.00      4.4±0.01ms        ? ?/sec
physical_sorted_union_order_by_10_uint64              1.00      9.4±0.01ms        ? ?/sec    1.00      9.4±0.01ms        ? ?/sec
physical_sorted_union_order_by_50_int64               1.00    108.5±0.23ms        ? ?/sec    1.00    108.6±0.24ms        ? ?/sec
physical_sorted_union_order_by_50_uint64              1.00    416.3±2.14ms        ? ?/sec    1.00    415.3±0.81ms        ? ?/sec
physical_theta_join_consider_sort                     1.03   1091.1±2.24µs        ? ?/sec    1.00   1063.3±3.32µs        ? ?/sec
physical_unnest_to_join                               1.03    648.8±1.86µs        ? ?/sec    1.00    630.5±3.69µs        ? ?/sec
physical_window_function_partition_by_12_on_values    1.00    740.5±6.66µs        ? ?/sec    1.00    737.7±1.36µs        ? ?/sec
physical_window_function_partition_by_30_on_values    1.00   1459.1±6.98µs        ? ?/sec    1.00   1455.5±4.45µs        ? ?/sec
physical_window_function_partition_by_4_on_values     1.00    447.5±1.45µs        ? ?/sec    1.01    454.2±1.19µs        ? ?/sec
physical_window_function_partition_by_7_on_values     1.00    554.1±1.48µs        ? ?/sec    1.00    556.5±1.54µs        ? ?/sec
physical_window_function_partition_by_8_on_values     1.00    599.4±4.92µs        ? ?/sec    1.00    597.4±1.65µs        ? ?/sec
with_param_values_many_columns                        1.00    432.5±2.40µs        ? ?/sec    1.00    431.0±1.97µs        ? ?/sec

Resource Usage

sql_planner — base (merge-base)

Metric Value
Wall time 2395.5s
Peak memory 127.0 MiB
Avg memory 65.4 MiB
CPU user 1900.6s
CPU sys 1.4s
Peak spill 0 B

sql_planner — branch

Metric Value
Wall time 2380.5s
Peak memory 127.0 MiB
Avg memory 65.4 MiB
CPU user 1881.7s
CPU sys 1.3s
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

auto detected api change Auto detected API change catalog Related to the catalog crate core Core DataFusion crate datasource Changes to the datasource crate documentation Improvements or additions to documentation ffi Changes to the ffi crate optimizer Optimizer rules physical-plan Changes to the physical-plan crate proto Related to proto crate

Projects

None yet

Development

Successfully merging this pull request may close these issues.

refactor(physical-plan): simplify ExecutionPlan children-replacement API

4 participants