Skip to content

Conversation

@rstaib
Copy link
Member

@rstaib rstaib commented Dec 4, 2025

No description provided.

@rstaib rstaib self-assigned this Dec 4, 2025
@rstaib rstaib requested a review from PascalSenn December 4, 2025 21:57
@github-actions
Copy link
Contributor

github-actions bot commented Dec 4, 2025

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5935.23 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.76ms 7.05ms 161.88ms 8.27ms 12.48ms 17.89ms

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

Requests/sec Error Rate
4631.25 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.86ms 38.77ms 237.31ms 47.91ms 107.82ms 123.84ms

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
268.27 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.74ms 175.08ms 668.06ms 180.87ms 227.95ms 253.34ms

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

Requests/sec Error Rate
306.38 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.03ms 674.13ms 1709.36ms 689.89ms 1398.68ms 1508.20ms

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
24166.27 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.66ms 45.53ms 2.02ms 3.85ms 4.71ms

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

Requests/sec Error Rate
19112.04 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 8.99ms 109.53ms 11.11ms 23.16ms 27.91ms

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 19946009041 • Commit f781eaa • Thu, 04 Dec 2025 22:46:07 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
5865.27 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.81ms 7.11ms 159.81ms 8.37ms 12.93ms 18.17ms

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

Requests/sec Error Rate
4596.11 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.69ms 37.19ms 259.54ms 48.34ms 109.72ms 126.11ms

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
268.19 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.59ms 174.57ms 650.20ms 180.86ms 228.95ms 255.39ms

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

Requests/sec Error Rate
306.35 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.13ms 691.54ms 1716.28ms 691.05ms 1380.14ms 1463.97ms

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
23974.58 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.68ms 47.49ms 2.04ms 3.87ms 4.73ms

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

Requests/sec Error Rate
18808.10 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.22ms 97.86ms 11.21ms 23.15ms 28.02ms

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 19956572412 • Commit b72ad5b • Fri, 05 Dec 2025 08:18:41 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.

2 participants