Skip to content

Reworked Benchmark Build#9125

Merged
michaelstaib merged 4 commits intomainfrom
mst/benchmark-result
Feb 18, 2026
Merged

Reworked Benchmark Build#9125
michaelstaib merged 4 commits intomainfrom
mst/benchmark-result

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Feb 17, 2026

Fusion Gateway Performance Results

Simple Composite Query

Req/s Err%
Constant (50 VUs) 2931.23 0.00%
Ramping (0-500-0 VUs) 3266.94 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.75ms 15.06ms 16.83ms 30.82ms 36.12ms 174.06ms
Ramping 0.75ms 67.03ms 68.21ms 125.96ms 141.05ms 268.51ms
query TestQuery {
  topProducts(first: 5) {
    inStock
    name
    price
    shippingEstimate
    upc
    weight
    reviews {
      id
      body
      author {
        id
        username
        name
      }
    }
  }
}

Deep Recursion Query

Req/s Err%
Constant (50 VUs) 746.46 0.00%
Ramping (0-500-0 VUs) 814.13 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 9.11ms 62.67ms 65.45ms 81.07ms 89.55ms 360.89ms
Ramping 1.84ms 255.74ms 264.33ms 535.27ms 571.86ms 719.91ms
query TestQuery {
  users {
    id
    username
    name
    reviews {
      id
      body
      product {
        inStock
        name
        price
        shippingEstimate
        upc
        weight
        reviews {
          id
          body
          author {
            id
            username
            name
            reviews {
              id
              body
              product {
                inStock
                name
                price
                shippingEstimate
                upc
                weight
              }
            }
          }
        }
      }
    }
  }
  topProducts(first: 5) {
    inStock
    name
    price
    shippingEstimate
    upc
    weight
    reviews {
      id
      body
      author {
        id
        username
        name
        reviews {
          id
          body
          product {
            inStock
            name
            price
            shippingEstimate
            upc
            weight
          }
        }
      }
    }
  }
}

Variable Batching Throughput

Req/s Err%
Constant (50 VUs) 23123.27 0.00%
Ramping (0-500-0 VUs) 18193.41 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.10ms 1.74ms 2.11ms 4.02ms 4.90ms 43.55ms
Ramping 0.10ms 9.62ms 11.64ms 23.83ms 28.82ms 130.81ms
query TestQuery($upc: ID!, $price: Long!, $weight: Long!) {
  productByUpc(upc: $upc) {
    inStock
    shippingEstimate(weight: $weight, price: $price)
  }
}

Variables (5 sets batched per request)

[
  { "upc": "1", "price": 899, "weight": 100 },
  { "upc": "2", "price": 1299, "weight": 1000 },
  { "upc": "3", "price": 15, "weight": 20 },
  { "upc": "4", "price": 499, "weight": 100 },
  { "upc": "5", "price": 1299, "weight": 1000 }
]

Run 22138824235 • Commit bc63721 • Wed, 18 Feb 2026 12:20:44 GMT

@michaelstaib michaelstaib merged commit f668ae7 into main Feb 18, 2026
5 checks passed
@michaelstaib michaelstaib deleted the mst/benchmark-result branch February 18, 2026 11:59
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