Skip to content

[Fusion] Improved Scheduler#9118

Merged
michaelstaib merged 5 commits intomainfrom
mst/fusion-execution-perf
Feb 16, 2026
Merged

[Fusion] Improved Scheduler#9118
michaelstaib merged 5 commits intomainfrom
mst/fusion-execution-perf

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

@ChilliCream ChilliCream deleted a comment from github-actions Bot Feb 16, 2026
@ChilliCream ChilliCream deleted a comment from github-actions Bot Feb 16, 2026
@ChilliCream ChilliCream deleted a comment from github-actions Bot Feb 16, 2026
@michaelstaib michaelstaib merged commit 73cc056 into main Feb 16, 2026
114 of 117 checks passed
@michaelstaib michaelstaib deleted the mst/fusion-execution-perf branch February 16, 2026 23:59
@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
2890.95 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.76ms 15.19ms 173.72ms 17.07ms 30.69ms 36.08ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
3207.55 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.74ms 66.70ms 252.46ms 69.49ms 130.68ms 147.68ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
      }
    }
  }
}

Deep Recursion Query

Constant Load (50 VUs)

Requests/sec Error Rate
743.68 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
9.05ms 62.70ms 353.35ms 65.64ms 81.65ms 89.89ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
818.66 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.80ms 254.10ms 683.98ms 262.95ms 522.35ms 559.79ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  users {
    ...User
    reviews {
      ...Review
      product {
        ...Product
        reviews {
          ...Review
          author {
            ...User
            reviews {
              ...Review
              product {
                ...Product
              }
            }
          }
        }
      }
    }
  }
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
        reviews {
          ...Review
          product {
            ...Product
          }
        }
      }
    }
  }
}

Variable Batching Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23426.69 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.72ms 53.17ms 2.08ms 3.97ms 4.85ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18447.89 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 9.39ms 96.10ms 11.35ms 23.33ms 27.86ms

Executed Query

query TestQuery_8f7a46ce_2(
  $__fusion_1_upc: ID!
  $__fusion_2_price: Long!
  $__fusion_2_weight: Long!
) {
  productByUpc(upc: $__fusion_1_upc) {
    inStock
    shippingEstimate(weight: $__fusion_2_weight, price: $__fusion_2_price)
  }
}

Variables (5 sets batched in single request)

[
  { "__fusion_1_upc": "1", "__fusion_2_price": 899, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "2", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 },
  { "__fusion_1_upc": "3", "__fusion_2_price": 15, "__fusion_2_weight": 20 },
  { "__fusion_1_upc": "4", "__fusion_2_price": 499, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "5", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 }
]

No baseline data available for comparison.


Run 22080832117 • Commit 9111bf8 • Tue, 17 Feb 2026 00:19:09 GMT

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