Skip to main content

kcl-rs

A Rust port of the Amazon Kinesis Client Library (KCL) with native Python bindings — the KCL v3 consumer framework without a JVM and without the MultiLangDaemon.

Like the Java KCL, this is the framework that turns "read from a Kinesis stream" into a production consumer fleet: it coordinates shard leases between workers through a DynamoDB table, checkpoints progress, follows resharding (parents before children), balances load across workers (KCL v3 variance-based assignment, including CPU-informed rebalancing), retrieves records via polling or enhanced fan-out, and publishes CloudWatch (or OpenTelemetry) metrics. The port is behaviorally faithful: same lease algorithms, same DynamoDB table schema, same lifecycle semantics.

Two crates in one workspace:

Crate What it is
kcl/ The core library — pure Rust, tokio + aws-sdk-*.
kcl-python/ PyO3 bindings, published to PyPI as kcl-rs (import name kcl_rs; the API mirrors amazon_kclpy).

Python

Install

pip install kcl-rs

Wheels are abi3 (one wheel per platform, CPython ≥ 3.11) for Linux (manylinux + musllinux, x86_64 + aarch64) and macOS (Apple Silicon). The package is fully typed (PEP 561): mypy --strict works out of the box, and your editor gets docstrings and signatures for everything.

Quick start

Subclass RecordProcessorBase, hand the class to a Scheduler, and run it. Each processor instance owns one shard.

from kcl_rs import RecordProcessorBase, Scheduler, CheckpointError


class MyProcessor(RecordProcessorBase):
    def initialize(self, initialize_input):
        print(f"starting on shard {initialize_input.shard_id}")

    def process_records(self, process_records_input):
        for record in process_records_input.records:
            handle(record.binary_data)          # raw bytes, already de-aggregated
        try:
            process_records_input.checkpointer.checkpoint()
        except CheckpointError as e:
            if e.value == "ThrottlingException":
                ...                             # back off and retry

    def lease_lost(self, lease_lost_input):
        pass                                    # lease taken by another worker

    def shard_ended(self, shard_ended_input):
        shard_ended_input.checkpointer.checkpoint()   # required to complete the shard

    def shutdown_requested(self, shutdown_requested_input):
        shutdown_requested_input.checkpointer.checkpoint()


scheduler = Scheduler(
    stream_name="my-stream",
    application_name="my-app",                  # also the lease-table name
    record_processor_factory=MyProcessor,       # called once per shard
    region="us-east-1",
)
scheduler.run()   # blocks; Ctrl-C triggers a graceful shutdown

scheduler.start() is the non-blocking variant (the KCL runs on background threads); call scheduler.shutdown() — from any thread — to stop either mode gracefully.

Where to start reading the stream

Scheduler(..., initial_position="TRIM_HORIZON")                  # oldest available
Scheduler(..., initial_position="LATEST")                        # default: only new records
Scheduler(..., initial_position="AT_TIMESTAMP",
          timestamp=datetime(2024, 1, 1, tzinfo=timezone.utc))   # or epoch seconds

The initial position only applies to shards without a checkpoint; a restarted application always resumes from its lease table.

Multi-stream mode

One worker can consume several streams — pass serialized stream identifiers ("accountId:streamName:creationEpoch") instead of a stream name:

Scheduler(
    stream_identifiers=[
        "123456789012:orders:1700000000",
        "123456789012:events:1700000001",
    ],
    application_name="my-app",
    record_processor_factory=MyProcessor,
)

Retrieval mode

Fan-out (EFO SubscribeToShard) is the default, matching Java KCL 2.x/3.x. Switch to classic polling (GetRecords) and tune its pacing with two knobs mirroring Java PollingConfig:

Scheduler(..., retrieval_mode="POLLING",
          max_records=500, idle_time_between_reads_millis=1000)

max_records/idle_time_between_reads_millis require retrieval_mode="POLLING" and are otherwise a ValueError. Unlike the Java multilang daemon's RetrievalMode, there is no DEFAULT auto-detect mode — pick one explicitly.

Two-phase (prepared) checkpoints

For exactly-once-style side effects across failover, durably record a pending checkpoint first, commit it after the side effect:

prepared = checkpointer.prepare_checkpoint()
write_side_effect()
prepared.checkpoint()

LocalStack

Scheduler(..., endpoint_url="http://localhost:4566",
          access_key_id="test", secret_access_key="test")

There is no implicit credential fallback: either export the standard AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY env vars (or a profile) or pass access_key_id/secret_access_key/session_token explicitly. A runnable end-to-end sample lives at kcl-python/samples/, and an automated pytest e2e suite at kcl-python/tests/ — see Python e2e tests below.

Runtime model

The Rust KCL runs on its own tokio runtime on background threads with the GIL released — leases, retrieval, and metrics never contend with your Python code. The GIL is acquired only for the duration of each callback. This is the main practical difference from amazon_kclpy: no Java daemon, no stdin/stdout protocol, one process.

Logging

Importing kcl_rs installs a default tracing subscriber so retrieval and lifecycle failures — e.g. a GetShardIterator/GetRecords error — are visible instead of silently dropped: WARN and above, written to stderr. Override the level/targets with the RUST_LOG env var (e.g. RUST_LOG=kcl=debug); an embedding application that installs its own subscriber first is respected.


Rust

The core crate is a regular Rust library (not on crates.io yet — use a git or path dependency):

[dependencies]
kcl = { git = "https://github.com/localstack/kcl-rs", package = "kcl" }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] }
aws-config = "1"
aws-sdk-kinesis = "1"
aws-sdk-dynamodb = "1"
aws-sdk-cloudwatch = "1"

Implement the (synchronous) ShardRecordProcessor trait and a factory, build the seven sub-configs with ConfigsBuilder, and drive the Scheduler. The full runnable version of this example is kcl/examples/single_stream.rs (cargo run --example single_stream):

use std::sync::Arc;

use kcl::common::ConfigsBuilder;
use kcl::coordinator::Scheduler;
use kcl::lifecycle::events::{
    InitializationInput, LeaseLostInput, ProcessRecordsInput, ShardEndedInput,
    ShutdownRequestedInput,
};
use kcl::processor::{
    ShardRecordProcessor, ShardRecordProcessorFactory, SingleStreamTracker, StreamTracker,
};

struct MyProcessor;

impl ShardRecordProcessor for MyProcessor {
    fn initialize(&mut self, input: InitializationInput) {
        println!("initializing on shard {:?}", input.shard_id());
    }

    fn process_records(&mut self, input: ProcessRecordsInput) {
        for record in input.records().unwrap_or(&[]) {
            println!("record pk={:?} seq={:?}", record.partition_key(), record.sequence_number());
        }
        if let Some(checkpointer) = input.checkpointer() {
            checkpointer.checkpoint().expect("checkpoint failed");
        }
    }

    fn lease_lost(&mut self, _input: LeaseLostInput) {}

    fn shard_ended(&mut self, input: ShardEndedInput) {
        // Required: completing the shard lets its children be processed.
        input.checkpointer().checkpoint().expect("checkpoint at shard end failed");
    }

    fn shutdown_requested(&mut self, input: ShutdownRequestedInput) {
        let _ = input.checkpointer().checkpoint();
    }
}

struct MyFactory;

impl ShardRecordProcessorFactory for MyFactory {
    fn shard_record_processor(&self) -> Box<dyn ShardRecordProcessor + Send + Sync> {
        Box::new(MyProcessor)
    }
}

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Region/credentials/endpoint come from the standard AWS environment
    // (AWS_PROFILE, AWS_REGION, AWS_ENDPOINT_URL, ...).
    let aws = aws_config::load_defaults(aws_config::BehaviorVersion::latest()).await;

    let tracker: Arc<dyn StreamTracker + Send + Sync> =
        Arc::new(SingleStreamTracker::from_stream_name("my-stream"));
    let configs = ConfigsBuilder::new(
        tracker,
        "my-app", // application name = lease table + CloudWatch namespace
        aws_sdk_kinesis::Client::new(&aws),
        aws_sdk_dynamodb::Client::new(&aws),
        aws_sdk_cloudwatch::Client::new(&aws),
        "worker-1",
        Arc::new(MyFactory),
    );

    let scheduler = Scheduler::new(
        configs.checkpoint_config(),
        configs.coordinator_config(),
        configs.lease_management_config(),
        configs.lifecycle_config(),
        configs.metrics_config(),
        configs.processor_config(),
        configs.retrieval_config(),
    )?;

    // Graceful shutdown on Ctrl-C.
    let scheduler_for_signal = Arc::clone(&scheduler);
    tokio::spawn(async move {
        tokio::signal::ctrl_c().await.expect("ctrl-c handler");
        scheduler_for_signal.shutdown().await;
    });

    scheduler.run().await; // blocks until shutdown completes
    Ok(())
}

Things worth knowing:

  • The processor callbacks are synchronous (matching Java's void signatures); all AWS I/O underneath is async. Blocking briefly in a callback is fine — callbacks run on blocking-capable threads, never on a tokio worker.
  • Scheduler::new must be called inside a tokio runtime (collaborators capture the runtime handle) but performs no network I/O; the first I/O happens when the scheduler runs.
  • Each of the seven config structs has fluent setters for the knobs you'd tune in Java (failover_time_millis, max_records, idle times, retrieval mode — polling vs enhanced fan-out — and so on). See the common, leases, and retrieval module docs.
  • Everything scales the same way as Java KCL: run more worker processes with the same application_name and leases redistribute automatically.

Consuming from LocalStack

Both languages honor the standard AWS environment, so no code changes:

AWS_ENDPOINT_URL=http://localhost:4566 AWS_REGION=us-east-1 \
AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test \
  cargo run --example single_stream

Development

cargo test -p kcl                        # unit suite (~1,300 tests, hermetic)
cargo test -p kcl -- --include-ignored   # + integration tests (needs AWS or LocalStack)
cargo clippy --workspace --all-targets   # expect zero warnings

# Python bindings (tests embed a Python interpreter):
LD_LIBRARY_PATH=$(python3 -c 'import sysconfig; print(sysconfig.get_config_var("LIBDIR"))') \
  cargo test -p kcl-python

# Build the wheel:
cd kcl-python && maturin build --release

No system prerequisites beyond Rust and Python — the KPL protobuf wire format is decoded by hand-written code (no protoc), and release builds are size-optimized (stripped, thin LTO).

Python e2e tests

kcl-python/tests/ is an opt-in pytest suite that drives a real Scheduler (FANOUT and POLLING) against a live Kinesis + DynamoDB backend — the Python-side analog of the Rust #[ignore] integration tests. It's skipped entirely unless AWS_ENDPOINT_URL is set, so it never runs by accident. Locally, against LocalStack:

uv venv && source .venv/bin/activate
uv pip install --directory kcl-python --group dev maturin
# Run maturin from kcl-python/: `maturin develop` installs the crate's PEP 735
# dependency groups via `uv pip install --group`, resolved against the CWD's
# pyproject.toml — from the repo root (with `-m kcl-python/Cargo.toml`) the
# build works but that group install can't find a root pyproject.toml.
(cd kcl-python && maturin develop --release)   # or omit --release for a faster local build

AWS_ENDPOINT_URL=http://localhost:4566 AWS_REGION=us-east-1 \
AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test \
  pytest kcl-python/tests/ -v

Each Scheduler cold start against LocalStack takes ~30-90s, so the suite's poll-until-done waits are bounded by KCLRS_E2E_AWAIT_SECS (default 300s) rather than fixed sleeps. CI runs this suite in the rust-test job.

Porting conventions, subsystem status, and the decisions log live in PORTING.md; deliberately-skipped Java tests are documented in TEST-PARITY.md.

License

Apache-2.0, same as the upstream Amazon Kinesis Client Library.

Download files

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

Source Distribution

kcl_rs-0.1.4.tar.gz (788.7 kB view details)

Uploaded Source

Built Distributions

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

kcl_rs-0.1.4-cp311-abi3-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ x86-64

kcl_rs-0.1.4-cp311-abi3-musllinux_1_2_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

kcl_rs-0.1.4-cp311-abi3-manylinux_2_28_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ x86-64

kcl_rs-0.1.4-cp311-abi3-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ ARM64

kcl_rs-0.1.4-cp311-abi3-macosx_11_0_arm64.whl (6.7 MB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

File details

Details for the file kcl_rs-0.1.4.tar.gz.

File metadata

  • Download URL: kcl_rs-0.1.4.tar.gz
  • Upload date:
  • Size: 788.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for kcl_rs-0.1.4.tar.gz
Algorithm Hash digest
SHA256 b3df7c5f844f1217f588d10fdaf8d1a95d4a30cf67297e09c4500552c4d22298
MD5 e0692a06db3c9140b4dcbd21e7aa4215
BLAKE2b-256 d54c3689eb8e23455bb10e78da7efef151eda1abafa747899de2047cf287b2bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for kcl_rs-0.1.4.tar.gz:

Publisher: ci.yml on localstack/kcl-rs

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

File details

Details for the file kcl_rs-0.1.4-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kcl_rs-0.1.4-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37060c980bc5a2ca426a9cc7e4d28b7dfeea78752d25d697c62a6df4fe07e178
MD5 1ec19bb832662e07d528d8007f455aba
BLAKE2b-256 71b7f28bcca22df7ce47eebe8e946ca89dca2874196e6294beeea0be15e210b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for kcl_rs-0.1.4-cp311-abi3-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on localstack/kcl-rs

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

File details

Details for the file kcl_rs-0.1.4-cp311-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kcl_rs-0.1.4-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79f259478cffe0693f0a5b0650ec4d41afc9a2ed84a77ed2e085bd1b2ff7839d
MD5 c8f3c848707c48af9ac977af89914bf9
BLAKE2b-256 3ba3f58f03dc31e23d9a0fa54ba2db427bc0be48833a68b371ee2412b80a6369

See more details on using hashes here.

Provenance

The following attestation bundles were made for kcl_rs-0.1.4-cp311-abi3-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on localstack/kcl-rs

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

File details

Details for the file kcl_rs-0.1.4-cp311-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kcl_rs-0.1.4-cp311-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 767af241efd871b52efdd2e135155bc89c23d3c3ad3b16dfc7b6efb30f8f5b77
MD5 ee38cb4d5fc99c6e9a92180f70ff51ba
BLAKE2b-256 41551fa67eba71ca03a2ee3c8716b14f832d05111c41165cd6d0385b958828be

See more details on using hashes here.

Provenance

The following attestation bundles were made for kcl_rs-0.1.4-cp311-abi3-manylinux_2_28_x86_64.whl:

Publisher: ci.yml on localstack/kcl-rs

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

File details

Details for the file kcl_rs-0.1.4-cp311-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kcl_rs-0.1.4-cp311-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 582516afd4a149aae8a537850a3bb311c42e758e2178543412a40f93518b23de
MD5 7cdbbc1abb943c3db61af7b27e6c4417
BLAKE2b-256 60817df359eaf3fbe45dba6c498d2466ae4b457a078d6422a9d00c9d58c27ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for kcl_rs-0.1.4-cp311-abi3-manylinux_2_28_aarch64.whl:

Publisher: ci.yml on localstack/kcl-rs

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

File details

Details for the file kcl_rs-0.1.4-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kcl_rs-0.1.4-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c05231b97a0fbea98f8a610ab2051c2199144596703ccd79eef0aeba234af4a
MD5 3ff80c8b118afdf13dbc7e8b3c4bf16d
BLAKE2b-256 7c095a98db1c50c5f767b5395e9897d445f393cb81d8136569f5c05d0f25acdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for kcl_rs-0.1.4-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: ci.yml on localstack/kcl-rs

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

Release history Release notifications | RSS feed

This release

0.1.4 This release

6 files

0.1.3

6 files

0.1.2

6 files

0.1.1

6 files

0.1.0

6 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