Skip to main content

Load Testing Methodology

AxonFlow includes a custom load testing framework designed to validate system performance under realistic production conditions. This guide covers our load testing methodology and principles.

Design Principles

Even Distribution

Our load generator uses a ticker-based approach rather than burst patterns:

Burst Pattern (Wrong):          Even Distribution (Correct):
───────────────────── ─────────────────────────────
│████████░░░░░░░░░░│ │█░█░█░█░█░█░█░█░█░█░█░█░█░│
│░░░░░░░░████████░░│ │█░█░█░█░█░█░█░█░█░█░█░█░█░│
│░░░░░░░░░░░░░░████│ │█░█░█░█░█░█░█░█░█░█░█░█░█░│
───────────────────── ─────────────────────────────
Unrealistic spikes Real client behavior

Why it matters: Burst patterns can mask performance issues that only appear under sustained load. Even distribution simulates actual production traffic patterns.

Percentile Accuracy

We track latency percentiles using mathematically correct calculations:

PercentileMeaning
P50Median - 50% of requests complete faster
P9595th percentile - 19 out of 20 requests
P9999th percentile - 99 out of 100 requests

Why percentiles matter:

  • Averages hide outliers
  • P95/P99 reveal tail latency issues
  • SLAs are typically defined using percentiles

Realistic Client Behavior

Our load generator simulates real production clients:

  • Connection pooling: Reuses connections like production clients
  • HTTP/2: Modern protocol with multiplexing
  • TLS 1.3: Full encryption overhead included
  • Keep-alive: Long-lived connections

Test Categories

Load tests are organized into categories that validate different behaviors:

1. Normal Queries

Standard requests that should succeed:

Category: normal
Expected: Success (200 OK)
Purpose: Validate happy path performance

2. Security Violation Tests

Requests that should be rejected by security policies:

Category: security
Expected: Rejection (403 Forbidden)
Purpose: Validate security rules are enforced

3. Policy Violation Tests

Requests that violate governance policies:

Category: policy
Expected: Blocking (varies by policy)
Purpose: Validate policy engine correctness

4. LLM Integration Tests

Requests that involve LLM providers:

Category: llm
Expected: Success (200 OK)
Purpose: Validate LLM routing and response handling

Metrics Collection

Prometheus Integration

Load test results are exported to Prometheus-compatible format:

# Latency histogram
axonflow_load_test_latency_ms{quantile="0.5"} 2.4
axonflow_load_test_latency_ms{quantile="0.95"} 4.8
axonflow_load_test_latency_ms{quantile="0.99"} 8.2

# Request counters
axonflow_load_test_requests_total{status="success"} 15000
axonflow_load_test_requests_total{status="blocked"} 3500
axonflow_load_test_requests_total{status="error"} 0

Labels and Dimensions

Results are tagged with context:

LabelPurpose
clientClient identifier
test_typeTest category (normal, security, etc.)
environmentTarget environment
providerLLM provider (if applicable)

Running Load Tests

Prerequisites

  • Access to target environment
  • Valid authentication credentials
  • Prometheus Pushgateway (for metrics export)

Basic Execution

# Run load test against staging
./load-test \
--target https://staging.example.com \
--rps 50 \
--duration 60s \
--category normal

# Run with metrics export
./load-test \
--target https://staging.example.com \
--rps 100 \
--duration 300s \
--pushgateway http://prometheus:9091

Test Parameters

ParameterDescriptionExample
--targetTarget endpoint URLhttps://api.example.com
--rpsRequests per second50, 100, 200
--durationTest duration30s, 5m, 1h
--categoryTest categorynormal, security, policy
--workersConcurrent workers10, 50

Results Interpretation

Healthy Results

✅ P50: <5ms (excellent)
✅ P95: <10ms (within target)
✅ Error Rate: 0%
✅ Blocked Rate: ~20% (policy working)

Warning Signs

⚠️ P95 > 20ms: Investigate latency issues
⚠️ Error Rate > 0.1%: Check system logs
⚠️ P50 increasing: Possible degradation
⚠️ Blocked Rate 0%: Policy might not be active

Best Practices

1. Start Small

Begin with low RPS and increase gradually:

Stage 1: 10 RPS for 30s (warmup)
Stage 2: 50 RPS for 60s (baseline)
Stage 3: 100 RPS for 60s (target load)
Stage 4: 200 RPS for 60s (stress test)

2. Test Staging First

Always validate changes in staging before production:

1. Deploy to staging
2. Run load tests
3. Review metrics
4. If passing, deploy to production
5. Run lighter validation tests

3. Monitor During Tests

Watch these metrics during load tests:

  • CPU and memory utilization
  • Database connection pool
  • Error rates and logs
  • Latency percentiles

4. Clean Up After Tests

  • Scale down test infrastructure
  • Archive test results
  • Document any anomalies

Next Steps