graphql-platform icon indicating copy to clipboard operation
graphql-platform copied to clipboard

Added Nitro 29 Announcement to Website

Open rstaib opened this issue 4 months ago • 4 comments

rstaib avatar Dec 04 '25 21:12 rstaib

🚀 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[bot] avatar Dec 04 '25 22:12 github-actions[bot]

🚀 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

github-actions[bot] avatar Dec 05 '25 08:12 github-actions[bot]

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5861.68 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.77ms 7.09ms 163.79ms 8.38ms 12.94ms 18.65ms

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

Requests/sec Error Rate
4697.77 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.80ms 38.77ms 248.55ms 47.27ms 106.19ms 122.44ms

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.52 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.73ms 174.83ms 594.16ms 180.61ms 226.30ms 251.04ms

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

Requests/sec Error Rate
307.48 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.05ms 689.01ms 1678.35ms 686.54ms 1330.49ms 1447.59ms

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
23762.34 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.70ms 45.34ms 2.05ms 3.92ms 4.79ms

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

Requests/sec Error Rate
19016.41 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.10ms 101.37ms 11.13ms 23.19ms 27.98ms

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 20042249721 • Commit 694264d • Mon, 08 Dec 2025 21:02:54 GMT

github-actions[bot] avatar Dec 08 '25 21:12 github-actions[bot]

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5914.81 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.78ms 7.04ms 159.59ms 8.30ms 12.65ms 18.33ms

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

Requests/sec Error Rate
4582.24 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.77ms 38.17ms 241.35ms 48.50ms 111.27ms 127.17ms

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
269.43 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.59ms 173.98ms 632.08ms 179.96ms 227.17ms 246.28ms

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

Requests/sec Error Rate
307.71 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.07ms 660.46ms 1716.27ms 687.04ms 1379.91ms 1503.35ms

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
23968.53 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.68ms 38.08ms 2.04ms 3.89ms 4.75ms

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

Requests/sec Error Rate
18887.33 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.13ms 115.49ms 11.17ms 23.13ms 27.84ms

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 20060402319 • Commit 8e19cb7 • Tue, 09 Dec 2025 10:52:19 GMT

github-actions[bot] avatar Dec 09 '25 10:12 github-actions[bot]