Veli Kafka Client
Project description
Kafka Client for VELI.STORE
Description
This module helps you to integration kafka messaging into your apps. Supported frameworks: FastAPI, (Django coming soon :D)
How to use (FastAPI):
- Producer
app = FastAPI()
def produce_event(topic, event):
producer = app.state.producer
producer.produce_event(topic, event)
@app.on_event("startup")
async def startup_event():
bootstrap_servers = ['localhost:9092', 'localhost:9093']
producer = KafkaEventProducer(bootstrap_servers)
await producer.start()
app.state.producer = producer
@app.on_event("shutdown")
async def shutdown_event():
await app.state.producer.stop()
@app.post("/products")
async def save_product(product_info: ProductInfo):
product = save_product(product_info)
produce_event(KafkaTopic.PAGE_VIEWS, product)
return product
- Consumer
app = FastAPI()
@app.on_event("startup")
async def startup_event():
# Define the configuration variables
topics = [KafkaTopic.USER_REGISTRATIONS, KafkaTopic.PAGE_VIEWS]
bootstrap_servers = ['localhost:9092', 'localhost:9093']
group_id = 'app_id'
consumer = AsyncKafkaConsumer(topics, bootstrap_servers, group_id)
app.state.consumer = consumer
await consumer.start()
# start the consume_events coroutine in the background
asyncio.create_task(consumer.consume())
@app.on_event("shutdown")
async def shutdown_event():
await app.state.consumer.stop()
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
kafkaclientveli-1.0.9.tar.gz
(4.5 kB
view details)
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 kafkaclientveli-1.0.9.tar.gz.
File metadata
- Download URL: kafkaclientveli-1.0.9.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35bfbeb639895c57d70410abcf9356085c99e0473c576d77a178f1918053dc0d
|
|
| MD5 |
1f1bcd356f891ca00b3e3d888d9c7a82
|
|
| BLAKE2b-256 |
6e77a870121819a5b0e1b97d7d1054e5132118c51de83a4252f645360b7cb7cc
|
File details
Details for the file kafkaclientveli-1.0.9-py3-none-any.whl.
File metadata
- Download URL: kafkaclientveli-1.0.9-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8100a0f3b741d8b65320de8bd03c61b2c9f0a015d879e43bed90f7e007559986
|
|
| MD5 |
1ee6ace37e8f2f121e5d0f18907ab250
|
|
| BLAKE2b-256 |
ddde212115d758f14ddf10a9b8c6ab0acbadfd36d9b4d824c8b1983494cf98df
|