Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asmrcodez-yt/data-engineer-pipline-docker-
Pipline have ( Kafka, Postgres, )
https://github.com/asmrcodez-yt/data-engineer-pipline-docker-
Last synced: about 1 month ago
JSON representation
Pipline have ( Kafka, Postgres, )
- Host: GitHub
- URL: https://github.com/asmrcodez-yt/data-engineer-pipline-docker-
- Owner: AsmrCodeZ-YT
- License: apache-2.0
- Created: 2024-11-04T15:14:47.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T17:54:26.000Z (2 months ago)
- Last Synced: 2024-11-04T18:41:29.870Z (2 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# create network dataline
docker create network dataline
# run producer
generate data and insert into redis# Run redis
docker run -d --rm --name redis -p 6379:6379 --hostname redis --network dataline redis# run consumer
feed from redis# run postgres
docker run -d --rm --name postgres --hostname postgres --network dataline -p 54321:5432 -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=ecommerce_docker postgres -c wal_level=logical