skillfed

databricks-zerobus-ingest-sdk

Databricks Zerobus Ingest SDK for Python

databricks-zerobus-ingest-sdk v1.6.1 330.6K downloads/30d#7,534 on PyPI
License unclear Active released

What it is and what it does

The Databricks Zerobus Ingest SDK is a thin Python wrapper around a native Rust implementation (via PyO3 bindings) for streaming records into Databricks Delta tables. It provides both synchronous and asynchronous APIs, handles OAuth 2.0 authentication automatically, and supports two serialization formats: JSON (simpler, higher per-record overhead) and Protocol Buffers (compact, type-safe, recommended for production). The SDK manages stream lifecycle, automatic recovery on transient failures, and acknowledgment tracking—you ingest records in a loop and call flush() to confirm durability, or register callbacks to be notified as records commit.

Core ingestion (gRPC, OAuth, stream management) runs in the compiled Rust layer, delivering native performance. The package requires Python 3.9–3.14 and depends on protobuf and requests at runtime. Optional Arrow Flight ingestion is available via the [arrow] extra, which installs pyarrow with version selection for your Python version. The SDK is marked Production/Stable and released actively.

Use it for:

  • Stream sensor or IoT telemetry data into Delta tables for real-time analytics.
  • Ingest application logs or events from multiple sources into a centralized Delta table.
  • Build a data pipeline that continuously appends records to Delta with automatic acknowledgment and recovery.
  • Prototype quick data ingestion workflows using JSON before migrating to Protocol Buffers for production throughput.
  • Integrate Zerobus ingestion into async Python applications without blocking.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

A Python client for streaming data ingestion into Databricks Delta tables via the Zerobus service, supporting both JSON and Protocol Buffer serialization with synchronous and asynchronous APIs.

Yes, if you are ingesting data into Databricks Delta tables and want a native-performance Python client with built-in recovery and acknowledgment tracking. The medium install friction (compiled wheels) is typical for performance-critical packages. License treatment is unclear—verify the actual license before use in proprietary or restricted contexts. No known vulnerabilities. Active maintenance and broad Python version support (3.9–3.14) make it production-ready.

Install

databricks-zerobus-ingest-sdk on PyPI

pip

pip install databricks-zerobus-ingest-sdk

uv

uv add databricks-zerobus-ingest-sdk

poetry

poetry add databricks-zerobus-ingest-sdk

Installing databricks-zerobus-ingest-sdk

Before you install

Medium install friction due to compiled wheels (abi3 bindings); active maintenance with release 1 day old. Supports Python 3.9–3.14 on Linux (x86_64, aarch64), macOS, and Windows. Two lightweight runtime dependencies (protobuf, requests).

Quickstart

pip install databricks-zerobus-ingest-sdk

from zerobus.sdk.sync import ZerobusSdk
from zerobus.sdk.shared import RecordType, StreamConfigurationOptions, TableProperties

sdk = ZerobusSdk(server_endpoint, workspace_url)
table_properties = TableProperties("main.default.air_quality")
options = StreamConfigurationOptions(record_type=RecordType.JSON)
stream = sdk.create_stream(client_id, client_secret, table_properties, options)
stream.ingest_record_offset({"device_name": "sensor-1", "temp": 20})
stream.flush()
stream.close()

Requires Python 3.9–3.14; free-threaded builds (3.14t) are not supported. Workspace setup, table creation, and service principal credentials required.

Verify before relying

  • Whether the package's license is actually unspecified or simply not declared in PyPI metadata.
  • Whether free-threaded Python builds (e.g., 3.14t) will be supported in future releases.
  • Performance characteristics and throughput benchmarks compared to alternative ingestion methods.

Package facts

License not declared (unclear)
Python support supports the current Python release (<3.15,>=3.9)
Install friction medium — platform-specific wheel
Runtime dependencies 2 — protobuf, requests
Maintenance actively maintained — 1 days since the last release
First released
Downloads 330,586/month — #7,534 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: databricks_zerobus_ingest_sdk-1.6.1-cp39-abi3-manylinux_2_34_aarch64.whl; databricks_zerobus_ingest_sdk-1.6.1-cp39-abi3-manylinux_2_34_x86_64.whl; databricks_zerobus_ingest_sdk-1.6.1-cp39-abi3-win_amd64.whl

Keywords: zerobus, databricks, sdk

Development Status :: 5 - Production/StableIntended Audience :: DevelopersIntended Audience :: Science/ResearchIntended Audience :: System AdministratorsOperating System :: OS IndependentProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: 3.9

Tags

databricks streaming ingestiondelta table data streamingzerobus python clienthigh-performance data ingestdatabricks sdk pythonstream to delta tablesprotobuf json ingestion
databricks-integrationstreaming-ingestionrust-backed

More Database packages

psycopg2-binary

psycopg2-binary is a PostgreSQL database…

copyleft · top 1,000 on PyPI

redis

Python client library for connecting to and…

permissive · top 1,000 on PyPI

ydb

YDB Python SDK is the official client library…

permissive · top 1,000 on PyPI

snowflake-connector-python

Connects Python applications to Snowflake data…

permissive · top 1,000 on PyPI

sqlparse

sqlparse tokenizes SQL text into a tree of…

permissive · top 1,000 on PyPI

dbt-adapters

Provides base adapter protocols and shared…

permissive · top 1,000 on PyPI

snowpipe-streaming

Streams data in real-time into Snowflake tables…

permissive · top 15,000 on PyPI

azure-kusto-ingest

Ingest data into Azure Kusto clusters from…

permissive · top 5,000 on PyPI

dbt-databricks

dbt-databricks is a dbt adapter that enables…

permissive · top 5,000 on PyPI

databricks-ai-search

Python client for Databricks AI Search, a…

unclear · top 5,000 on PyPI

databricks-sql-connector

A Python client library that connects to…

permissive · top 1,000 on PyPI

databricks-dlt

Provides type hints, API specs, and IDE…

unclear · top 5,000 on PyPI

ingestr

ingestr is a command-line tool that copies data…

permissive · top 15,000 on PyPI

openmetadata-ingestion

OpenMetadata Ingestion is a framework for…

unclear · top 15,000 on PyPI

proto-google-cloud-datastore-v1

Provides Protocol Buffer definitions and gRPC…

permissive · top 15,000 on PyPI

deltalite

Performs streaming, partition-level upsert…

permissive · top 15,000 on PyPI