GlassFlow Clickhouse ETL Python SDK: Create GlassFlow pipelines between Kafka and ClickHouse
Project description
Clickhouse ETL Python SDK
A Python SDK for creating and managing data pipelines between Kafka and ClickHouse.
Features
- Create and manage data pipelines between Kafka and ClickHouse
- Deduplication of events during a time window based on a key
- Temporal joins between topics based on a common key with a given time window
- Schema validation and configuration management
Installation
pip install glassflow-clickhouse-etl
Quick Start
from glassflow_clickhouse_etl import Pipeline
pipeline_config = {
"pipeline_id": "test-pipeline",
"source": {
"type": "kafka",
"provider": "aiven",
"connection_params": {
"brokers": ["localhoust:9092"],
"protocol": "SASL_SSL",
"mechanism": "SCRAM-SHA-256",
"username": "user",
"password": "pass"
}
"topics": [
{
"consumer_group_initial_offset": "earliest",
"id": "test-topic",
"name": "test-topic",
"schema": {
"type": "json",
"fields": [
{"name": "id", "type": "string" },
{"name": "email", "type": "string"}
]
},
"deduplication": {
"id_field": "id",
"id_field_type": "string",
"time_window": "1h",
"enabled": True
}
}
],
},
"sink": {
"type": "clickhouse",
"host": "localhost:8443",
"port": 8443,
"database": "test",
"username": "default",
"password": "pass",
"table_mapping": [
{
"source_id": "test_table",
"field_name": "id",
"column_name": "user_id",
"column_type": "UUID"
},
{
"source_id": "test_table",
"field_name": "email",
"column_name": "email",
"column_type": "String"
}
]
}
}
# Create a pipeline from a JSON configuration
pipeline = Pipeline(pipeline_config)
# Create the pipeline
pipeline.create()
Configuration
For detailed information about the pipeline configuration, see CONFIGURATION.
Development
Setup
- Clone the repository
- Create a virtual environment
- Install dependencies:
uv venv
source .venv/bin/activate
uv pip install -e .[dev]
Testing
pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file glassflow_clickhouse_etl-0.1.7.tar.gz.
File metadata
- Download URL: glassflow_clickhouse_etl-0.1.7.tar.gz
- Upload date:
- Size: 74.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7ae0500eeaefc0ca8d7a34851cdd4407bad01dc53cc971597957fd97c5865bb
|
|
| MD5 |
047716dbff805df43b135b198c384346
|
|
| BLAKE2b-256 |
656b02e62b7ee700bd2f3dc7c5189d4535a38451b786fdca1f00a0f4e0d6d577
|
File details
Details for the file glassflow_clickhouse_etl-0.1.7-py3-none-any.whl.
File metadata
- Download URL: glassflow_clickhouse_etl-0.1.7-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f94887dd1f4b7cd9c55046f0e5af48ba26ff0db1df084969e680f578c9040cff
|
|
| MD5 |
707b5be2ee1a0c67d8918afeaf078b6e
|
|
| BLAKE2b-256 |
eeb225919d977af27029ed3a0c6f2c90826eb0164c422649cfadb782db9b8a14
|