Skip to content

Add skipif boolean argument to AddWarmupTask#9145

Merged
michaelstaib merged 1 commit intomainfrom
mst/reintroduce-skipif-bool
Feb 18, 2026
Merged

Add skipif boolean argument to AddWarmupTask#9145
michaelstaib merged 1 commit intomainfrom
mst/reintroduce-skipif-bool

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

@michaelstaib michaelstaib merged commit 016953e into main Feb 18, 2026
117 checks passed
@michaelstaib michaelstaib deleted the mst/reintroduce-skipif-bool branch February 18, 2026 22:41
@github-actions
Copy link
Copy Markdown
Contributor

Fusion Gateway Performance Results

Simple Composite Query

Req/s Err%
Constant (50 VUs) 2877.28 0.00%
Ramping (0-500-0 VUs) 3229.99 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.76ms 15.23ms 17.15ms 31.17ms 36.53ms 171.43ms
Ramping 0.77ms 66.63ms 69.05ms 131.71ms 149.71ms 270.07ms
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) 752.03 0.00%
Ramping (0-500-0 VUs) 840.61 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 8.96ms 62.08ms 64.97ms 80.91ms 89.53ms 323.22ms
Ramping 1.84ms 254.04ms 256.06ms 490.89ms 522.24ms 650.58ms
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) 23191.94 0.00%
Ramping (0-500-0 VUs) 18260.46 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.10ms 1.74ms 2.11ms 4.02ms 4.91ms 49.60ms
Ramping 0.10ms 9.48ms 11.56ms 23.73ms 28.79ms 115.98ms
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 22160137097 • Commit 0c6e017 • Wed, 18 Feb 2026 23:35:46 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.

1 participant