Skip to content

Conversation

@michaelstaib
Copy link
Member

No description provided.

@github-actions github-actions bot added the 📚 documentation This issue is about working on our documentation. label Nov 26, 2025
@github-actions
Copy link
Contributor

github-actions bot commented Dec 5, 2025

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
1977.47 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.99ms 23.18ms 168.77ms 24.98ms 43.88ms 50.17ms

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

Requests/sec Error Rate
2442.17 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.96ms 90.96ms 282.85ms 91.34ms 160.46ms 177.80ms

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
156.36 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
20.87ms 301.12ms 680.74ms 302.95ms 349.05ms 367.36ms

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

Requests/sec Error Rate
162.39 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
8.99ms 1053.07ms 2474.59ms 1061.68ms 2065.59ms 2162.37ms

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
23827.10 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.69ms 46.97ms 2.05ms 3.92ms 4.78ms

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

Requests/sec Error Rate
18856.10 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.21ms 102.78ms 11.20ms 23.13ms 27.71ms

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 19964744144 • Commit aad8cd3 • Fri, 05 Dec 2025 13:58:43 GMT

@github-actions
Copy link
Contributor

github-actions bot commented Dec 5, 2025

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
1975.96 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.98ms 23.05ms 169.60ms 25.00ms 43.55ms 49.99ms

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

Requests/sec Error Rate
2499.69 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.85ms 89.22ms 274.04ms 89.17ms 157.26ms 173.78ms

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
156.49 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
20.34ms 301.06ms 765.94ms 302.54ms 344.76ms 360.58ms

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

Requests/sec Error Rate
161.01 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
9.42ms 1087.47ms 2573.33ms 1067.24ms 2059.90ms 2290.57ms

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
23797.54 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.69ms 38.88ms 2.05ms 3.92ms 4.78ms

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

Requests/sec Error Rate
18831.30 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.12ms 106.50ms 11.20ms 23.14ms 28.17ms

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 19972108186 • Commit ff2f028 • Fri, 05 Dec 2025 18:39:06 GMT

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

Labels

📚 documentation This issue is about working on our documentation. 🌶️ hot chocolate 🌶️ strawberry shake

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants