Skip to content

Bizon Documentation

Bizon is a reliability-first ELT framework for moving massive data streams—built to recover from failure and scale to billions of records.

Checkpoint Recovery

Resume from the last checkpoint when things fail. No full restarts required.

High Throughput

Designed for billion-record pipelines with lean dependencies and efficient buffering.

Queue Agnostic

Python Queue, RabbitMQ, Kafka, Redpanda—same pipeline model, your infrastructure.

Built-in Observability

Track ETA, progress, latency with Datadog and OpenTelemetry integrations.

Get up and running in minutes:

Terminal window
pip install bizon

Then create a simple pipeline configuration:

config.yml
source:
type: your_source
# source configuration...
destination:
type: bigquery
# destination configuration...

Run your pipeline:

Terminal window
bizon run config.yml