Skip to content

[Fusion] Deduplicate Requirements#9116

Merged
michaelstaib merged 2 commits intomainfrom
mst/variable-deduplication
Feb 15, 2026
Merged

[Fusion] Deduplicate Requirements#9116
michaelstaib merged 2 commits intomainfrom
mst/variable-deduplication

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
2908.82 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.76ms 15.04ms 172.11ms 16.96ms 31.14ms 36.59ms

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

Requests/sec Error Rate
3232.30 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.81ms 66.65ms 256.33ms 68.94ms 129.19ms 147.96ms

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
741.58 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
8.97ms 62.53ms 336.66ms 65.94ms 81.17ms 89.71ms

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

Requests/sec Error Rate
842.12 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.83ms 254.67ms 656.72ms 255.92ms 496.79ms 531.40ms

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
23740.61 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.70ms 51.55ms 2.06ms 3.92ms 4.79ms

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

Requests/sec Error Rate
18658.34 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 9.33ms 108.16ms 11.31ms 23.25ms 28.00ms

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 22038311996 • Commit 33b82fd • Sun, 15 Feb 2026 15:52:17 GMT

@michaelstaib michaelstaib merged commit bc5a190 into main Feb 15, 2026
115 of 117 checks passed
@michaelstaib michaelstaib deleted the mst/variable-deduplication branch February 15, 2026 16:51
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