Skip to content

Conversation

@michaelstaib
Copy link
Member

No description provided.

@ChilliCream ChilliCream deleted a comment from github-actions bot Nov 19, 2025
@ChilliCream ChilliCream deleted a comment from github-actions bot Nov 19, 2025
@michaelstaib michaelstaib merged commit 65f13ad into main Nov 19, 2025
9 checks passed
@michaelstaib michaelstaib deleted the mst/oneof-lookup-tests branch November 19, 2025 21:23
@github-actions
Copy link
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5853.14 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.80ms 7.04ms 160.58ms 8.39ms 13.08ms 18.56ms

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

Requests/sec Error Rate
4628.30 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.78ms 37.79ms 271.24ms 48.05ms 108.21ms 126.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 {
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
      }
    }
  }
}

Deep Recursion Query

Constant Load (50 VUs)

Requests/sec Error Rate
270.81 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.70ms 174.19ms 560.20ms 179.06ms 225.04ms 247.20ms

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

Requests/sec Error Rate
302.27 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.07ms 702.95ms 1731.78ms 697.51ms 1354.37ms 1526.55ms

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
23711.56 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.70ms 41.16ms 2.06ms 3.93ms 4.80ms

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

Requests/sec Error Rate
18629.40 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.26ms 121.22ms 11.31ms 23.40ms 28.12ms

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 19516887875 • Commit e09924f • Wed, 19 Nov 2025 21:41: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