Skip to main content

SPOE Forge

A pure Python framework for building SPOE (Stream Processing Offload Engine) agents that communicate with HAProxy using the SPOA protocol.

License: MIT Python 3.12+ Coverage Status

Overview

SPOE Forge provides a clean, decorator-based API for creating agents that process HAProxy messages and return actions. Built on an async I/O core with synchronous protocol parsing, it's designed for high-performance production environments. Or at least as performant as python will allow.

Why SPOE Forge?

Originally created to power a Google OAuth2 authentication backend for HAProxy, it became clear the project could be converted to an abstracted framework. I noticed during the development of this project that there was a lack of well-maintained, easily understood implementations of the SPOA protocol in python.

Key Features

  • Simple decorator-based API - Register message handlers with @agent.message()
  • Sync and async handlers - Plain functions run in a worker thread; async def handlers run on the event loop
  • Embeddable - Blocking agent.run(), or await agent.serve() inside an existing event loop; both accept an ssl context for TLS to HAProxy
  • Full SPOP protocol support - Complete implementation of the SPOA protocol
  • Concurrent pipelining - When HAProxy negotiates the pipelining capability, NOTIFY frames are processed concurrently (bounded by max_concurrent_frames, default 100) with ACKs sent as handlers complete
  • Health check support - Built-in HAProxy health check handling

Installation

Install from PyPI:

pip install spoe-forge

Quick Start

Basic Example

from spoe_forge import (
    SpoeForge,
    AgentContext,
    SetVarAction,
    ActionScope
)

# Create an agent
agent = SpoeForge(name="my-agent", debug=False)

# Register a message handler
@agent.message("check-request")
def handle_request(ctx: AgentContext) -> list[SetVarAction]:
    """Process incoming request and set HAProxy variables"""

    # Get message arguments from HAProxy
    client_ip = ctx.get_arg("client_ip")
    request_path = ctx.get_arg("path")

    # Your business logic here
    is_allowed = check_access(client_ip, request_path)

    # Return actions to set HAProxy variables
    return [
        SetVarAction(
            scope=ActionScope.TRANSACTION,
            name="access_allowed",
            value=is_allowed
        )
    ]

# Start the server
if __name__ == "__main__":
    agent.run(host="0.0.0.0", port=12345)

HAProxy Configuration

SPOE Forge works with HAProxy's SPOE configuration. For details on configuring HAProxy to communicate with your agent, see the official HAProxy SPOE documentation.

Local Development

Running with Docker

A complete local development environment is provided using Docker Compose, including a sample SPOE agent, HAProxy, and a test backend service.

Quick start:

cd docker
docker compose up --build

This starts three services:

  • SPOA Agent (spoa) - Sample SPOE Forge agent running on port 8500
  • Whoami (whoami) - Simple backend service for testing
  • HAProxy (haproxy) - Configured to communicate with the WhoAmI example BE Service, the SPOA agent, and is listening on port 8080

Test the setup:

# Open logs
docker compose logs

# Visit the dev url in your browser
http://localhost:8080

Check both the docker logs and the X-Test-Arg header displayed on the WhoAmI page.

Make any updates to the HAProxy configs or the sample_server.py files in ./docker/ to support your testing.

Health Checks

SPOE Forge includes a built-in CLI healthcheck utility for monitoring agent health in containerized environments.

Basic usage:

# Basic usage
spoe-forge healthcheck --host 127.0.0.1 --port 8500

# Use default host and port
spoe-forge healthcheck


# Quiet mode, only exit codes
spoe-forge healthcheck --quiet

# Help info
spoe-forge --help
spoe-forge healthcheck --help

Docker Integration:

The provided docker-compose.yml includes a pre-configured healthcheck for the sample SPOE agent as a reference:

healthcheck:
  test: ["CMD", "uv", "run", "spoe-forge", "healthcheck", "--host", "127.0.0.1", "--port", "8500", "--quiet"]
  interval: 30s
  timeout: 10s
  retries: 3
  start_period: 10s

View healthcheck status:

docker compose ps     # Shows health status
docker inspect spoa   # Detailed healthcheck info

Exit codes:

  • 0: Health check passed
  • 1: Health check failed
  • 2: Invalid usage

Roadmap

Future enhancements under consideration with no timeline guaranteed:

  • Middleware support
  • Much more extended documentation and examples

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Any and all contributions welcome.

Support

For issues and questions, please file an issue on GitHub.

Acknowledgments

Built to solve real-world production needs for HAProxy SPOA agents. Special thanks to the HAProxy team for excellent documentation of the SPOE protocol.

Extra shoutout to Christopher Faulet for responding to some questions about a few hiccups along the way.

Download files

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

Source Distribution

spoe_forge-0.0.7.tar.gz (24.3 kB view details)

Uploaded Source

Built Distribution

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

spoe_forge-0.0.7-py3-none-any.whl (34.1 kB view details)

Uploaded Python 3

File details

Details for the file spoe_forge-0.0.7.tar.gz.

File metadata

  • Download URL: spoe_forge-0.0.7.tar.gz
  • Upload date:
  • Size: 24.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for spoe_forge-0.0.7.tar.gz
Algorithm Hash digest
SHA256 7a1aa22846feb782572e72838848f084f9de830b204c9f21747f77e65133a752
MD5 0db467694b0648a868a5971a10fd5815
BLAKE2b-256 f7edc6e0621e9b6575906d2b13bc296c27615a976d562cb9db860619563e3d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for spoe_forge-0.0.7.tar.gz:

Publisher: release.yml on mwodonnell/spoe-forge

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

File details

Details for the file spoe_forge-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: spoe_forge-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 34.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for spoe_forge-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 d40826ff352dd0cdba72b60b487267283c17c573c0abfcd8c722298b979146bb
MD5 6a20fc217200d57cf892203552c95e59
BLAKE2b-256 459f01684bbf3e7c119c12af6fd8043f71a7c54264c67997855bdb483237e6f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for spoe_forge-0.0.7-py3-none-any.whl:

Publisher: release.yml on mwodonnell/spoe-forge

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

Release history Release notifications | RSS feed

0.0.8

2 files

This release

0.0.7 This release

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page