An open API service indexing awesome lists of open source software.

https://github.com/genesisblock3301/event-driven-architecture-with-python

Implement Event driven architecture using python and kafka
https://github.com/genesisblock3301/event-driven-architecture-with-python

Last synced: 19 days ago
JSON representation

Implement Event driven architecture using python and kafka

Awesome Lists containing this project

README

          

## Docker env setup
docker-compose.yml
```yml
version: '2'
services:
zookeeper:
image: confluentinc/cp-zookeeper:latest
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
ports:
- 22181:2181

kafka:
image: confluentinc/cp-kafka:5.3.1
depends_on:
- zookeeper
ports:
- 29092:29092
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
```

## Install Python Env
```python
pip3 install -r requirements.txt
```

## How to run:
open four terminal and run all four files parallely.
```python
order_backend.py
transaction.py
email.py
analytics.py
```

know more about that watch this video:
https://www.youtube.com/watch?v=qi7uR3ItaOY&ab_channel=CodewithIrtiza