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
- Host: GitHub
- URL: https://github.com/genesisblock3301/event-driven-architecture-with-python
- Owner: GenesisBlock3301
- Created: 2022-10-21T06:12:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-21T06:33:29.000Z (over 3 years ago)
- Last Synced: 2025-01-08T18:47:07.645Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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