Skip to content

[Fusion] Add Grouping for ExecutionNode#9162

Merged
michaelstaib merged 27 commits intomainfrom
mst/execution-node-grouping
Feb 24, 2026
Merged

[Fusion] Add Grouping for ExecutionNode#9162
michaelstaib merged 27 commits intomainfrom
mst/execution-node-grouping

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Feb 20, 2026

Fusion Gateway Performance Results

Simple Composite Query

Req/s Err%
Constant (50 VUs) 6975.56 0.00%
Ramping (0-500-0 VUs) 7442.44 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.57ms 5.92ms 7.03ms 10.83ms 15.69ms 177.03ms
Ramping 0.60ms 24.00ms 29.64ms 63.33ms 75.24ms 177.72ms
query TestQuery {
  topProducts(first: 5) {
    inStock
    name
    price
    shippingEstimate
    upc
    weight
    reviews {
      id
      body
      author {
        id
        username
        name
      }
    }
  }
}

Deep Recursion Query

Req/s Err%
Constant (50 VUs) 1304.76 0.00%
Ramping (0-500-0 VUs) 1352.91 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 4.23ms 33.78ms 37.22ms 50.52ms 59.26ms 443.46ms
Ramping 1.86ms 129.37ms 157.14ms 339.99ms 396.68ms 854.93ms
query TestQuery {
  users {
    id
    username
    name
    reviews {
      id
      body
      product {
        inStock
        name
        price
        shippingEstimate
        upc
        weight
        reviews {
          id
          body
          author {
            id
            username
            name
            reviews {
              id
              body
              product {
                inStock
                name
                price
                shippingEstimate
                upc
                weight
              }
            }
          }
        }
      }
    }
  }
  topProducts(first: 5) {
    inStock
    name
    price
    shippingEstimate
    upc
    weight
    reviews {
      id
      body
      author {
        id
        username
        name
        reviews {
          id
          body
          product {
            inStock
            name
            price
            shippingEstimate
            upc
            weight
          }
        }
      }
    }
  }
}

Variable Batching Throughput

Req/s Err%
Constant (50 VUs) 23639.83 0.00%
Ramping (0-500-0 VUs) 18541.86 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.08ms 1.72ms 2.06ms 3.96ms 4.80ms 45.56ms
Ramping 0.08ms 9.38ms 11.39ms 23.38ms 28.28ms 106.88ms
query TestQuery($upc: ID!, $price: Long!, $weight: Long!) {
  productByUpc(upc: $upc) {
    inStock
    shippingEstimate(weight: $weight, price: $price)
  }
}

Variables (5 sets batched per request)

[
  { "upc": "1", "price": 899, "weight": 100 },
  { "upc": "2", "price": 1299, "weight": 1000 },
  { "upc": "3", "price": 15, "weight": 20 },
  { "upc": "4", "price": 499, "weight": 100 },
  { "upc": "5", "price": 1299, "weight": 1000 }
]

Run 22351182030 • Commit 23b4808 • Tue, 24 Feb 2026 12:57:01 GMT

@michaelstaib michaelstaib merged commit 2be9c29 into main Feb 24, 2026
6 checks passed
@michaelstaib michaelstaib deleted the mst/execution-node-grouping branch February 24, 2026 12:38
@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 25, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 0.00%. Comparing base (13c5200) to head (435882d).
⚠️ Report is 12 commits behind head on main.

Additional details and impacted files
@@     Coverage Diff      @@
##   main   #9162   +/-   ##
============================
============================

☔ View full report in Codecov by Sentry.
📢 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.

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant