This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# establish an interactive session with the spark container | |
KAFKA_CONTAINER=$(docker container ls --filter name=streaming-stack_kafka.1 --format "{{.ID}}") | |
docker exec -it ${KAFKA_CONTAINER} bash | |
# set environment variables used by jobs | |
export BOOTSTRAP_SERVERS="localhost:9092" | |
export TOPIC_PRODUCTS="demo.products" | |
export TOPIC_PURCHASES="demo.purchases" | |
export TOPIC_INVENTORIES="demo.inventories" | |
# list topics | |
kafka-topics.sh --list --bootstrap-server $BOOTSTRAP_SERVERS | |
# read topics from beginning | |
kafka-console-consumer.sh \ | |
--topic $TOPIC_PRODUCTS --from-beginning \ | |
--bootstrap-server $BOOTSTRAP_SERVERS | |
kafka-console-consumer.sh \ | |
--topic $TOPIC_PURCHASES --from-beginning \ | |
--bootstrap-server $BOOTSTRAP_SERVERS | |
kafka-console-consumer.sh \ | |
--topic $TOPIC_INVENTORIES --from-beginning \ | |
--bootstrap-server $BOOTSTRAP_SERVERS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment