Skip to content

Conversation

@glen-84
Copy link
Collaborator

@glen-84 glen-84 commented Dec 30, 2025

Summary of the changes (Less than 80 chars)

  • Omitted parentheses when creating new objects.

@glen-84 glen-84 merged commit 6f9aa35 into main Dec 30, 2025
114 checks passed
@glen-84 glen-84 deleted the gai/RCS1050 branch December 30, 2025 12:28
@github-actions
Copy link
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5947.26 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.78ms 7.00ms 160.72ms 8.26ms 12.91ms 18.61ms

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

Requests/sec Error Rate
4512.82 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.82ms 39.04ms 260.24ms 49.18ms 111.77ms 128.77ms

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
272.14 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.61ms 172.54ms 642.40ms 178.23ms 223.00ms 246.08ms

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

Requests/sec Error Rate
309.22 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.07ms 666.21ms 1657.43ms 683.78ms 1348.86ms 1481.12ms

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
23853.39 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.69ms 48.98ms 2.05ms 3.90ms 4.77ms

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

Requests/sec Error Rate
18595.50 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.31ms 110.97ms 11.41ms 23.61ms 28.54ms

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 20596430191 • Commit 5204139 • Tue, 30 Dec 2025 12:44:26 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