Skip to main content

S3-backed caching proxy for mitmproxy (Pas³age = Passage + S3)

Project description

Passsage proxy

Passsage (or Pas³age to emphasize the backend choice) is named for the three S's in S3: it uses Amazon S3 or an S3-compatible object store to persist its cached objects.

A caching HTTP(S) proxy built on mitmproxy that stores responses in S3 storage. Useful for caching package repositories, API responses, and other HTTP traffic for improved performance and offline access.

Mitmproxy is used so Passsage can terminate TLS, inspect HTTP responses, and cache HTTPS content instead of blindly tunneling encrypted bytes. In explicit proxy mode, clients connect to the proxy and issue CONNECT requests for HTTPS; mitmproxy completes the upstream TLS handshake, generates a matching interception certificate signed by its local CA, and then speaks TLS with the client so it can read and cache the HTTP payloads. See https://docs.mitmproxy.org/stable/concepts/how-mitmproxy-works/ for the details.

Features

  • S3-backed caching: Store cached responses in AWS S3 or S3-compatible storage (MinIO, LocalStack, etc.)
  • Flexible caching policies: Configure how different URLs are cached
    • NoRefresh: Serve from cache without revalidation; fetch on miss
    • Standard: RFC 9111 compliant caching and revalidation
    • StaleIfError: Serve stale cache on upstream failure (4xx/5xx/timeout)
    • AlwaysUpstream: Always fetch from upstream, cache as fallback
    • NoCache: Pass through without caching
    • Default policy when no rule matches: Standard (override with --default-policy)
  • Automatic failover: Serve cached content when upstream is unavailable
  • Ban management: Temporarily ban unresponsive upstreams to avoid timeouts

Cache hits and misses

Passsage resolves each request to a cache policy, then uses S3 object metadata to decide whether to serve from cache or go upstream. In brief:

  • With xs3lerator (--xs3lerator-url): GET requests are routed through xs3lerator, which handles parallel downloads from both S3 (cache hits) and upstream HTTP servers (cache misses), and simultaneously uploads data to S3 on miss. Passsage manages metadata only (Elasticsearch indexes, vary indexes). HEAD requests are served synthetically from Elasticsearch metadata when fresh, or forwarded to xs3lerator otherwise.
  • Without xs3lerator (legacy mode): cache hits are fetched from an HTTP object store (--object-store-url, required). Passsage uploads data to S3 on cache miss.
  • Object metadata is stored in Elasticsearch (passsage_meta index) for fast real-time lookups by document _id. The data objects themselves are immutable content-addressed chunks in S3.
  • Elasticsearch document _id format is <scheme>/<host>/<sha224> (or <scheme>/<host>/<sha224>+<vary_sha224> for vary-aware keys). Vary index documents use <scheme>/<host>/_vary/<sha224>.
  • S3 data keys use hash-prefixed format data/<h>/<a>/<s>/<h>/<sha256> for content-addressed chunks.
  • NoRefresh serves from cache immediately on a hit (no revalidation).
  • Standard revalidates via conditional GET through xs3lerator when stale; if the upstream returns 304, the cached object is served. If the content changed, xs3lerator fetches and caches the new version.
  • StaleIfError serves stale cache on upstream failure, and Standard honors stale-if-error / stale-while-revalidate directives when present.
  • AlwaysUpstream always fetches from upstream, even if cached.
  • NoCache bypasses cache lookup for non-GET/HEAD or policy override.

Standard follows RFC 9111 HTTP caching semantics; stale-if-error and stale-while-revalidate are supported when present.

On cache misses, the response is fetched from upstream and streamed to the client. With xs3lerator enabled, data fetching and S3 upload is handled by xs3lerator; Passsage only saves metadata (.meta and vary index). Without xs3lerator, Passsage uploads the data to S3 itself. Responses are saved to S3 unless caching is disabled by policy or response headers (Cache-Control: no-store or private, or Vary: *). When Vary is present, cache keys include the Vary request headers so separate variants are stored and served.

Example production setup

A typical deployment uses Passsage as the TLS-terminating policy engine with xs3lerator handling all data transfer. On a cache hit, Passsage rewrites the GET request to xs3lerator, which serves the data from S3 using parallel range-GETs. On a cache miss, xs3lerator fetches from the real upstream with adaptive parallel downloads and simultaneously uploads to S3. Clients point HTTP_PROXY/HTTPS_PROXY at Passsage.

                                             ┌────────────┐
                                        ┌───▶│  Upstream  │
                                        │ ◀──│  Servers   │
                                        │    │ (PyPI etc) │
┌──────────────┐     ┌──────────────┐   │    └────────────┘
│   Client     │────▶│   Passsage   │   │
│ (pip, curl,  │◀────│ (policy +    │   │
│  docker...)  │     │  metadata)   │   │
└──────────────┘     └──────┬───────┘   │
                            │           │
                  GET       │           │
                  requests  │           │
                            ▼           │
                     ┌──────────────┐   │    ┌──────────┐
                     │  xs3lerator  │───┘    │  AWS S3  │
                     │ (data plane) │◀──────▶│ (cache)  │
                     └──────────────┘        └──────────┘
                            │
                   metadata │  Elasticsearch
                   only     │  (passsage_meta index)
                            ▼
                     ┌──────────────┐
                     │  Passsage    │
                     │ (writes meta │
                     │  to ES)     │
                     └──────────────┘

For deployments without xs3lerator (legacy mode), Passsage can still use an HTTP object store directly:

┌──────────────┐     ┌──────────────────────┐     ┌────────────┐
│   Client     │────▶│   Passsage           │────▶│  Upstream  │
│ (pip, curl,  │◀────│   (caching proxy)    │◀────│  Servers   │
│  docker...)  │     │   :3128              │     │ (PyPI etc) │
└──────────────┘     └──────┬──────┬────────┘     └────────────┘
                            │      │
                   fetches  │      │  writes cached objects +
                   cached   │      │  .meta JSON + vary index
                   objects  │      │
                            │      ▼
                            │  ┌──────────┐
                            │  │  AWS S3  │
                            │  │ (cache)  │
                            │  └──────────┘
                            │
                            ▼
                     ┌──────────────────────┐
                     │   Object Store HTTP  │
                     │  (S3 public bucket,  │
                     │   nginx, or similar) │
                     └──────────────────────┘

Installation

pip install passsage

For development:

pip install -e ".[dev]"

Usage

Basic Usage

# Run with default settings (uses AWS S3)
passsage

# Run on a specific port (CLI or env var)
PASSSAGE_PORT=9090 passsage
passsage -p 9090

# Bind to a specific interface (CLI or env var)
PASSSAGE_HOST=127.0.0.1 passsage
passsage --bind 127.0.0.1

# Run with web interface
passsage --web

Client Setup (Certificate + Proxy Env Vars)

Passsage runs on mitmproxy, so clients must trust the mitmproxy CA certificate to avoid TLS errors. Mitmproxy exposes a magic domain, mitm.it, which serves the local certificate authority for download; see https://docs.mitmproxy.org/stable/concepts/certificates/. The examples below assume a localhost proxy; if you deploy Passsage on an intranet host, replace localhost:8080 with the proxy hostname/IP.

  1. Start Passsage (example on localhost):
PASSSAGE_PORT=8080 passsage
  1. Run the proxy env script (it embeds the cert, installs it, and exports proxy env vars):
curl -x http://localhost:${PASSSAGE_PORT} http://mitm.it/proxy-env.sh -o /tmp/passsage-proxy-env.sh
. /tmp/passsage-proxy-env.sh

You can also source it in one line:

. <(curl -fsSL -x http://localhost:${PASSSAGE_PORT} http://mitm.it/proxy-env.sh)

It also tries to write ~/.passsage/proxy-env.sh for reuse in other shells.

If the proxy is behind a load balancer or deployed in Kubernetes, the internal listen address (e.g. 0.0.0.0:8080) is not reachable by clients. Set --public-proxy-url to the externally reachable address so the onboarding script exports the correct HTTP_PROXY/HTTPS_PROXY values:

passsage --public-proxy-url http://proxy.example.com:3128

You can also set it via the environment variable:

export PASSSAGE_PUBLIC_PROXY_URL=http://proxy.example.com:3128
passsage

With LocalStack (Local Development)

Start LocalStack:

docker run --rm -p 4566:4566 localstack/localstack

Create and configure the bucket:

# Using awslocal (pip install awscli-local)
awslocal s3 mb s3://proxy-cache
awslocal s3api put-bucket-policy --bucket proxy-cache --policy '{
  "Version": "2012-10-17",
  "Statement": [{
    "Sid": "PublicRead",
    "Effect": "Allow",
    "Principal": "*",
    "Action": ["s3:GetObject", "s3:HeadObject"],
    "Resource": "arn:aws:s3:::proxy-cache/*"
  }]
}'

Run Passsage:

passsage --s3-endpoint http://localhost:4566 --s3-bucket proxy-cache \
    --object-store-url http://localhost:4566/proxy-cache

Environment Variables

Variable Description Default
PASSSAGE_PORT Proxy listen port 8080
PASSSAGE_HOST Proxy bind host 0.0.0.0
S3_BUCKET S3 bucket name for cache storage 364189071156-ds-proxy-us-west-2 (AWS) or proxy-cache (custom endpoint)
S3_ENDPOINT_URL Custom S3 endpoint URL None (uses AWS)
PASSSAGE_PUBLIC_PROXY_URL Externally reachable proxy URL for the onboarding script (e.g. http://proxy.example.com:3128). Required behind a load balancer or in Kubernetes. None
PASSSAGE_OBJECT_STORE_URL HTTP URL of the object store exposing the S3 cache namespace (required). Cache hits are fetched from this URL. (required)
PASSSAGE_ELASTICSEARCH_URL Elasticsearch URL for metadata storage. None
PASSSAGE_ELASTICSEARCH_META_INDEX Elasticsearch index for metadata. passsage_meta
PASSSAGE_ELASTICSEARCH_REPLICAS Number of ES index replicas. 1
PASSSAGE_ELASTICSEARCH_SHARDS Number of ES index shards. 9
PASSSAGE_ELASTICSEARCH_FLUSH_INTERVAL Interval for batched last_access updates (seconds). 30
PASSSAGE_ACCESS_LOGS Enable Parquet access logs 0
PASSSAGE_ACCESS_LOG_PREFIX S3 prefix for access logs __passsage_logs__
PASSSAGE_ACCESS_LOG_DIR Local spool dir for access logs /tmp/passsage-logs
PASSSAGE_ACCESS_LOG_FLUSH_SECONDS Flush interval in seconds 30
PASSSAGE_ACCESS_LOG_FLUSH_BYTES Flush size threshold 1G
PASSSAGE_ACCESS_LOG_HEADERS Headers to include in access logs accept,accept-encoding,cache-control,content-type,content-encoding,etag,last-modified,range,user-agent,via,x-cache,x-cache-lookup,x-amz-request-id
PASSSAGE_ERROR_LOGS Enable Parquet error logs 0
PASSSAGE_ERROR_LOG_PREFIX S3 prefix for error logs __passsage_error_logs__
PASSSAGE_ERROR_LOG_DIR Local spool dir for error logs /tmp/passsage-errors
PASSSAGE_ERROR_LOG_FLUSH_SECONDS Flush interval in seconds 30
PASSSAGE_ERROR_LOG_FLUSH_BYTES Flush size threshold 256M
PASSSAGE_CONNECTION_STRATEGY Mitmproxy connection strategy: lazy (default) or eager lazy
PASSSAGE_MITM_CA_CERT mitmproxy CA certificate (PEM file path or inline PEM). Written to ~/.mitmproxy/mitmproxy-ca-cert.pem before startup. None
PASSSAGE_MITM_CA mitmproxy CA key+cert bundle (PEM file path or inline PEM). Written to ~/.mitmproxy/mitmproxy-ca.pem before startup. None
PASSSAGE_XS3LERATOR_URL xs3lerator base URL (e.g. http://localhost:8080). When set, GET requests are routed through xs3lerator for parallel download and S3 caching. None (disabled)
PASSSAGE_S3_HASH_PREFIX_DEPTH Number of hash characters to use as S3 path prefix segments (e.g. 4 produces f/f/3/0/hash...). Distributes objects across prefixes to avoid S3 throttling. 4

CLI Options

Usage: passsage [OPTIONS]

Options:
  -p, --port INTEGER              Port to listen on (env: PASSSAGE_PORT, default: 8080)
  -b, --bind TEXT                 Address to bind to (env: PASSSAGE_HOST, default: 0.0.0.0)
  --s3-bucket TEXT                S3 bucket for cache storage
  --s3-endpoint TEXT              S3 endpoint URL for S3-compatible services
  -m, --mode [regular|transparent|wireguard|upstream]
                                  Proxy mode (default: regular)
  -v, --verbose                   Enable verbose logging
  --public-proxy-url TEXT         Externally reachable proxy URL for client onboarding
                                  (env: PASSSAGE_PUBLIC_PROXY_URL)
  --object-store-url TEXT         HTTP URL of the object store (required)
                                  (env: PASSSAGE_OBJECT_STORE_URL)
  --elasticsearch-url TEXT       Elasticsearch URL for metadata
                                  (env: PASSSAGE_ELASTICSEARCH_URL)
  --elasticsearch-meta-index TEXT  ES index name (default: passsage_meta)
                                  (env: PASSSAGE_ELASTICSEARCH_META_INDEX)
  --elasticsearch-replicas INT   Number of ES replicas (default: 1)
                                  (env: PASSSAGE_ELASTICSEARCH_REPLICAS)
  --elasticsearch-shards INT     Number of ES shards (default: 9)
                                  (env: PASSSAGE_ELASTICSEARCH_SHARDS)
  --elasticsearch-flush-interval FLOAT  Batch flush interval seconds (default: 30)
                                  (env: PASSSAGE_ELASTICSEARCH_FLUSH_INTERVAL)
  --access-logs                   Enable S3 access logs in Parquet format
  --access-log-prefix TEXT        S3 prefix for access logs (env: PASSSAGE_ACCESS_LOG_PREFIX)
  --access-log-dir TEXT           Local spool directory for access logs
  --access-log-flush-seconds TEXT Flush interval in seconds for access logs
  --access-log-flush-bytes TEXT   Flush size threshold for access logs
  --access-log-headers TEXT       Headers to include in access logs
  --error-logs                    Enable S3 error logs in Parquet format
  --error-log-prefix TEXT         S3 prefix for error logs (env: PASSSAGE_ERROR_LOG_PREFIX)
  --error-log-dir TEXT            Local spool directory for error logs
  --error-log-flush-seconds TEXT  Flush interval in seconds for error logs
  --error-log-flush-bytes TEXT    Flush size threshold for error logs
  --health-port INTEGER           Health endpoint port (env: PASSSAGE_HEALTH_PORT, 0 disables)
  --health-host TEXT              Health endpoint bind host (env: PASSSAGE_HEALTH_HOST)
  --connection-strategy [lazy|eager]
                                  Upstream TLS connection strategy (default: lazy)
  --xs3lerator-url TEXT          xs3lerator base URL for parallel GET downloads and S3 caching
                                  (env: PASSSAGE_XS3LERATOR_URL)
  --s3-hash-prefix-depth INT    Hash prefix depth for S3 key partitioning (default: 4)
                                  (env: PASSSAGE_S3_HASH_PREFIX_DEPTH)
  --web                           Enable mitmproxy web interface
  --version                       Show the version and exit.
  --help                          Show this message and exit.

Access Logs

Passsage can emit structured access logs to S3 as Parquet for diagnostics and performance analysis.

S3 layout:

s3://<bucket>/__passsage_logs__/date=YYYY-MM-DD/hour=HH/<file>.parquet

Enable logging:

passsage --access-logs

Log UI:

pip install "passsage[ui]"
passsage logs --start-date 2026-02-01 --end-date 2026-02-02

Error Logs

S3 layout:

s3://<bucket>/__passsage_error_logs__/date=YYYY-MM-DD/hour=HH/<file>.parquet

Enable error logging:

passsage --error-logs

Error UI:

pip install "passsage[ui]"
passsage errors --start-date 2026-02-01 --end-date 2026-02-02

As a mitmproxy Script

You can also use Passsage directly as a mitmproxy script:

mitmproxy -s $(python -c "import passsage; print(passsage.get_proxy_path())")

Docker Development

The easiest way to develop and test Passsage is with Docker Compose, which sets up LocalStack S3 automatically.

Quick Start

# Production-like setup
docker compose up --build

# Development setup (with live code editing; mitmproxy reloads proxy on change)
docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build

This starts:

  • LocalStack S3 on port 4566 with pre-configured proxy-cache bucket
  • Passsage proxy on port 8080
  • Health endpoint on port 8082 (/health)

Development Workflow

  1. Start dev environment: docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build
  2. Edit code in src/passsage/; mitmproxy reloads the proxy on change

See DEVELOPMENT.md for the full guide.

Building and Publishing

Build the Package

pip install build
python -m build

This creates dist/passsage-*.whl and dist/passsage-*.tar.gz.

Publish to PyPI

pip install twine

# Upload to Test PyPI first
twine upload --repository testpypi dist/*

# Upload to PyPI
twine upload dist/*

Publish to Private PyPI (CodeArtifact, etc.)

# Configure your repository in ~/.pypirc or use environment variables
twine upload --repository your-repo dist/*

Development

# Install with dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Run linter
ruff check src/

# Format code
ruff format src/

Integration tests with Docker Compose

The integration suite expects a running proxy that allows X-Passsage-Policy overrides. Start Passsage with --allow-policy-header or set PASSSAGE_ALLOW_POLICY_HEADER=1.

# Default port 8080 and health port 8082
PASSSAGE_ALLOW_POLICY_HEADER=1 docker compose up --build

# Override the host port mappings
PROXY_PORT=9090 HEALTH_PORT=9092 PASSSAGE_ALLOW_POLICY_HEADER=1 docker compose up --build

When the proxy runs in a container, the test server must be reachable by Passsage. On Linux, set the bind host and public host so the proxy can reach the test server:

export PASSSAGE_TEST_SERVER_BIND_HOST=0.0.0.0
export PASSSAGE_TEST_SERVER_HOST=host.docker.internal
export PROXY_URL=http://localhost:9090
pytest -m "not slow"

Health endpoint

Passsage starts a lightweight HTTP server for health checks on a separate port.

curl -f http://localhost:8082/health

Configure it via environment variables:

export PASSSAGE_HEALTH_PORT=8082
export PASSSAGE_HEALTH_HOST=0.0.0.0

Content Delivery Services

Passsage ships with built-in handling for common content delivery and object storage services. Two mechanisms work together to make caching effective: URL normalization removes ephemeral query parameters so that different signed URLs for the same object produce a single cache entry, and default caching policies assign a sensible policy to well-known hosts.

Presigned URL normalization

Object storage services authenticate access through presigned URLs — URLs that embed short-lived credentials, timestamps, and signatures as query parameters. Each request for the same object carries a different set of parameters, which would produce a unique cache key and defeat caching entirely.

Passsage normalizes presigned URLs by stripping the signature-related query parameters before computing the cache key. The original URL (with all parameters intact) is still used when talking to the upstream server, so authentication continues to work. Only the cache key sees the stripped version.

Normalization rules are applied based on the request hostname using a suffix trie for fast matching. The built-in rules cover:

Service / host suffix Stripped parameters
*.amazonaws.com (S3, CloudFront signed URLs) All X-Amz-* params (Algorithm, Credential, Date, Expires, Signature, Security-Token, SignedHeaders, …)
*.r2.cloudflarestorage.com (Cloudflare R2) All X-Amz-* params (R2 uses S3-compatible signing)
*.production.cloudflare.docker.com (Cloudflare Docker registry) expires, signature, version
*.pkg-containers.githubusercontent.com (GitHub Container Registry blobs) Azure SAS token params: se, sig, sp, spr, sr, sv, ske, skoid, sks, skt, sktid, skv, hmac

After stripping, any remaining query parameters are sorted by key to avoid cache misses from different parameter orderings.

Why this matters for CI/CD pipelines: build jobs typically depend on artifacts hosted on these services — container base images, Python packages, Debian packages, pre-built binaries. During high-load periods (e.g. security patch rollouts, popular release days), upstream registries can become slow or return transient errors. Because Passsage collapses all presigned variants of the same object into one cache entry, a single successful fetch serves every subsequent build. Combined with the StaleIfError policy, pipelines keep running from cache even while the upstream is struggling.

Default caching policies

Passsage assigns caching policies to known hosts and URL patterns out of the box. These defaults can be overridden with a policy file (see Policy Overrides below).

Pattern Policy Rationale
*.files.pythonhosted.org StaleIfError PyPI package files are immutable once published
pypi.org/simple/* StaleIfError Simple index pages; stale index is better than a build failure
*.deb, /Packages, /Packages.gz, /Packages.xz, /InRelease, APT by-hash paths StaleIfError Debian/Ubuntu repository metadata and packages
mran.microsoft.com/snapshot/* StaleIfError MRAN R package snapshots
*.amazonaws.com (except CodeArtifact) NoCache S3 API calls, STS tokens — must not be cached
Cloud metadata endpoints (169.254.169.*, 169.254.170.*, Azure/GCP metadata) NoCache Instance metadata must always be live
/mitm.it/* NoCache mitmproxy's own certificate distribution page

Extending normalization rules

Add custom cache key rules via a policy file (the same file used for policy overrides):

# /path/to/policies.py
from passsage.cache_key import CallableRule

def strip_my_cdn_token(ctx):
    if ctx.host and "cdn.example.com" in ctx.host:
        return ctx.url.split("?", 1)[0]
    return None

def get_cache_key_rules():
    return [CallableRule(strip_my_cdn_token)]

Export one of get_cache_key_rules(), CACHE_KEY_RULES, get_cache_key_resolver(), or CACHE_KEY_RESOLVER from the file. See default_cache_keys.py for the full built-in implementation.

Important: Do Not Use S3 Object Expiration

Never enable S3 lifecycle expiration rules on the whole cache bucket (you can expire the logs though). Passsage stores each cached response as an S3 object with associated metadata: a vary index object (_vary/ prefix). S3 lifecycle rules delete objects independently — an expiration rule could remove the vary index but leave the content object (or vice versa). This leads to cache corruption: stale metadata pointing to missing content, or orphaned content with no metadata.

If you need to control cache size, use a cleanup script that deletes all related objects atomically (content + vary index), or use S3 Intelligent-Tiering to move cold objects to cheaper storage without deleting them.

Policy Overrides

You can override caching policies by pointing Passsage at a Python file. The file can define a RULES list, a get_rules() function, or a get_resolver() function. These are evaluated in this order:

  1. get_resolver() -> return a PolicyResolver
  2. get_rules() -> return a list of rules
  3. RULES -> a list of rules

The file is loaded at runtime and does not need to be installed as a package.

Header-based policy override (client-side)

You can force a policy per request by sending the X-Passsage-Policy header. This override is disabled by default and must be enabled on the proxy.

passsage --allow-policy-header
curl -x http://localhost:8080 \
  -H "X-Passsage-Policy: NoRefresh" \
  http://example.com/data.csv

Supported values: NoRefresh, Standard, StaleIfError, AlwaysUpstream, NoCache.

Security note: this allows clients to bypass normal policy rules. A malicious or misconfigured client could force caching of sensitive responses or disable caching to increase upstream load. Only expose the proxy to trusted clients if you rely on header overrides.

Use a custom policy file

passsage --policy-file /path/to/policies.py

You can also set the environment variable:

export PASSSAGE_POLICY_FILE=/path/to/policies.py
passsage

Example: simple rules list

# /path/to/policies.py
from passsage.policy import NoCache, NoRefresh, PathContainsRule, RegexRule

RULES = [
    PathContainsRule("/assets/", NoRefresh),
    RegexRule(r".*\\.csv$", NoRefresh),
    PathContainsRule("/api/private", NoCache),
]

Example: programmatic rules with defaults

# /path/to/policies.py
from passsage.default_policies import default_rules
from passsage.policy import AlwaysUpstream, PathContainsRule

def get_rules():
    rules = default_rules()
    rules.insert(0, PathContainsRule("/debug/", AlwaysUpstream))
    return rules

Example: full resolver with custom default policy

# /path/to/policies.py
from passsage.default_policies import default_rules
from passsage.policy import PolicyResolver, Standard

def get_resolver():
    return PolicyResolver(rules=default_rules(), default_policy=Standard)

Example: dynamic rule based on headers

# /path/to/policies.py
from passsage.policy import CallableRule, Context, NoCache, NoRefresh

def choose_policy(ctx: Context):
    for key, value in (ctx.headers or []):
        if key.lower() == "x-no-cache" and value == "1":
            return NoCache
    return NoRefresh

RULES = [
    CallableRule(choose_policy),
]

Upstream Timeout Overrides

When Passsage is deployed with xs3lerator, you can configure per-rule upstream timeouts. These override xs3lerator's server-wide defaults (--upstream-connect-timeout and --upstream-read-timeout) on a per-request basis.

xs3lerator defaults to a 30 s connect timeout and a 300 s (5 min) read timeout, matching common HTTP clients like pip and curl. Rules can tighten or relax these as needed.

Timeouts are specified with TimeoutConfig and attached to any rule type via the timeouts keyword argument:

# /path/to/policies.py
from passsage.default_policies import default_rules
from passsage.policy import (
    HostContainsRule,
    PolicyResolver,
    StaleIfError,
    Standard,
    SuffixRule,
    TimeoutConfig,
)

def get_rules():
    rules = default_rules()

    # Large ML model files: allow up to 15 min read timeout
    rules.insert(0, SuffixRule(
        ".safetensors",
        StaleIfError,
        timeouts=TimeoutConfig(read_timeout=900),
    ))

    # Slow internal registry: longer connect + read timeouts
    rules.insert(0, HostContainsRule(
        "registry.internal.example.com",
        StaleIfError,
        timeouts=TimeoutConfig(connect_timeout=60, read_timeout=600),
    ))

    # Fast API that should fail quickly
    rules.insert(0, HostContainsRule(
        "api.example.com",
        Standard,
        timeouts=TimeoutConfig(connect_timeout=5, read_timeout=30),
    ))

    return rules

TimeoutConfig fields:

Field Type Meaning
connect_timeout float | None TCP/TLS handshake timeout in seconds. None = use xs3lerator default (30 s).
read_timeout float | None Idle time between data chunks in seconds. None = use xs3lerator default (300 s). 0 = no timeout.

Under the hood, Passsage sends X-Xs3lerator-Connect-Timeout and X-Xs3lerator-Read-Timeout headers on the rewritten request. xs3lerator creates (or reuses) an HTTP client configured with those timeouts. The headers are stripped from client responses.

License

See LICENSE and NOTICE for copyright and attribution details.

MIT License - see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

passsage-0.5.0.tar.gz (74.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

passsage-0.5.0-py3-none-any.whl (71.0 kB view details)

Uploaded Python 3

File details

Details for the file passsage-0.5.0.tar.gz.

File metadata

  • Download URL: passsage-0.5.0.tar.gz
  • Upload date:
  • Size: 74.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for passsage-0.5.0.tar.gz
Algorithm Hash digest
SHA256 14f6ad11d1b27e7ad368822072aa04a1a2ad7822e8c9ef856aa6d9d4eb12b7dc
MD5 58eeb0e398ed2e52db15b57f2f6851e0
BLAKE2b-256 81666f6a23970d784ec55af192fc4ab8885ecc279885f10e3ffcf189f55281f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for passsage-0.5.0.tar.gz:

Publisher: pypi.yml on bra-fsn/passsage

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file passsage-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: passsage-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 71.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for passsage-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 60134833935c3c137f4a4b3de68bb67ddb663796ea5c6d459c93265c4d0d4a98
MD5 ad30c31744787db8b2ccfa02b46d5e23
BLAKE2b-256 7aad9b18f54cf5ba205d69b15d3adb82e311d75f89bea4ccb05ff93dbf8824c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for passsage-0.5.0-py3-none-any.whl:

Publisher: pypi.yml on bra-fsn/passsage

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page