Skip to content

Adds any support to fusion.#8901

Merged
michaelstaib merged 2 commits into
mainfrom
mst/fusion-any
Nov 14, 2025
Merged

Adds any support to fusion.#8901
michaelstaib merged 2 commits into
mainfrom
mst/fusion-any

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

@michaelstaib michaelstaib merged commit b195c20 into main Nov 14, 2025
6 checks passed
@michaelstaib michaelstaib deleted the mst/fusion-any branch November 14, 2025 15:31
@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
4580.91 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
1.07ms 9.56ms 161.64ms 10.75ms 14.78ms 21.19ms

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

Requests/sec Error Rate
3038.60 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.97ms 60.66ms 357.33ms 73.32ms 160.49ms 181.56ms

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
51.22 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
19.56ms 921.14ms 1744.38ms 903.41ms 1053.90ms 1104.78ms

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

Requests/sec Error Rate
44.10 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
16.88ms 2470.38ms 11564.98ms 3274.40ms 8005.81ms 9075.21ms

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
21362.83 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.10ms 1.89ms 48.25ms 2.29ms 3.87ms 5.58ms

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

Requests/sec Error Rate
18443.74 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.53ms 109.00ms 11.51ms 23.07ms 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 19369373372 • Commit 203dbfe • Fri, 14 Nov 2025 15:49:56 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