Skip to content

Conversation

@glen-84
Copy link
Collaborator

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

Summary of the changes (Less than 80 chars)

  • Updated CI actions and packages.

@github-actions
Copy link
Contributor

github-actions bot commented Dec 8, 2025

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5946.13 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.75ms 6.97ms 161.19ms 8.26ms 12.88ms 18.45ms

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

Requests/sec Error Rate
4581.11 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.81ms 37.33ms 299.67ms 48.52ms 109.39ms 128.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
270.40 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.53ms 173.62ms 604.46ms 179.38ms 225.84ms 251.22ms

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

Requests/sec Error Rate
300.43 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.00ms 705.23ms 1750.99ms 702.53ms 1419.31ms 1514.75ms

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

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

Requests/sec Error Rate
18828.28 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.10ms 106.98ms 11.20ms 23.34ms 28.09ms

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 20032811931 • Commit d6e2ab4 • Mon, 08 Dec 2025 15:28:44 GMT

@codecov
Copy link

codecov bot commented Dec 8, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 0.00%. Comparing base (bf6547e) to head (fc00290).

Additional details and impacted files
@@     Coverage Diff      @@
##   main   #8984   +/-   ##
============================
============================

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

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