Skip to content

Conversation

@rstaib
Copy link
Member

@rstaib rstaib commented Jan 20, 2026

No description provided.

@rstaib rstaib requested a review from michaelstaib January 20, 2026 16:13
@rstaib rstaib self-assigned this Jan 20, 2026
@github-actions
Copy link
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5777.49 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.80ms 7.20ms 163.22ms 8.50ms 13.00ms 18.62ms

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

Requests/sec Error Rate
4512.69 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.78ms 39.56ms 257.35ms 49.19ms 109.30ms 127.88ms

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
269.97 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.53ms 174.57ms 674.03ms 179.69ms 225.20ms 244.10ms

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

Requests/sec Error Rate
305.23 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.11ms 679.62ms 1696.33ms 689.98ms 1350.49ms 1476.82ms

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
23637.29 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.71ms 43.67ms 2.07ms 3.93ms 4.80ms

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

Requests/sec Error Rate
18710.28 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.31ms 112.53ms 11.36ms 23.61ms 28.44ms

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 21178711188 • Commit 0050819 • Tue, 20 Jan 2026 16:45:25 GMT

@michaelstaib michaelstaib merged commit ed6837b into main Jan 20, 2026
2 checks passed
@michaelstaib michaelstaib deleted the website/new-hc-signet-and-banner branch January 20, 2026 18:50
@github-actions
Copy link
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5769.88 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.78ms 7.24ms 163.27ms 8.51ms 13.04ms 18.82ms

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

Requests/sec Error Rate
4571.65 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.82ms 39.24ms 244.23ms 48.55ms 108.45ms 126.00ms

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
269.00 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.73ms 174.45ms 605.39ms 180.34ms 228.40ms 253.67ms

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

Requests/sec Error Rate
305.56 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.04ms 676.11ms 1633.75ms 693.07ms 1390.44ms 1477.98ms

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
23628.77 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.71ms 39.25ms 2.07ms 3.93ms 4.81ms

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

Requests/sec Error Rate
18735.72 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.14ms 103.67ms 11.22ms 23.41ms 28.25ms

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 21183501083 • Commit 4332e87 • Tue, 20 Jan 2026 19:09:47 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.

3 participants