Skip to content

Improve Path.Print() perf#9140

Merged
michaelstaib merged 3 commits intomainfrom
mst/path
Feb 18, 2026
Merged

Improve Path.Print() perf#9140
michaelstaib merged 3 commits intomainfrom
mst/path

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

No description provided.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Feb 18, 2026

Fusion Gateway Performance Results

Simple Composite Query

Req/s Err%
Constant (50 VUs) 2923.08 0.00%
Ramping (0-500-0 VUs) 3176.07 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.78ms 14.90ms 16.88ms 31.12ms 36.37ms 170.73ms
Ramping 0.83ms 67.88ms 70.11ms 131.79ms 148.58ms 269.38ms
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) 741.81 0.00%
Ramping (0-500-0 VUs) 828.80 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 9.07ms 62.50ms 65.87ms 81.80ms 90.43ms 361.70ms
Ramping 1.84ms 252.28ms 260.47ms 517.98ms 552.84ms 729.17ms
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) 23265.91 0.00%
Ramping (0-500-0 VUs) 18292.77 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.10ms 1.74ms 2.10ms 3.99ms 4.86ms 41.92ms
Ramping 0.10ms 9.53ms 11.55ms 23.63ms 28.72ms 107.76ms
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 22152822304 • Commit 74c4868 • Wed, 18 Feb 2026 19:10:08 GMT

@michaelstaib michaelstaib merged commit 9f7b577 into main Feb 18, 2026
117 checks passed
@michaelstaib michaelstaib deleted the mst/path branch February 18, 2026 18:50
@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 18, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 0.00%. Comparing base (0033666) to head (97e5df0).
⚠️ Report is 7 commits behind head on main.

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

☔ 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.

1 participant