1 Star 0 Fork 48

Operations/docker-kafka

forked from Koma/docker-kafka 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
local-kafka-manager.sh 2.11 KB
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
########################################################
# #
# This is a script for control my local Kafka docker #
# #
# Koma <komazhang@foxmail.com> #
# #
########################################################
echo "##########################################";
echo "# local Kafka Docker 环境管理 #"
echo "# 1 显示 topics 列表 #"
echo "# 2 创建 topic #"
echo "# 3 向 topic 中插入消息 #"
echo "# 4 消费 topic 中的消息 - from-beginning #"
echo "# 5 消费 topic 中的消息 - from-beginning #"
echo "##########################################";
read -p "请输入对应操作编号:" op
function getContainerId()
{
read -p "请输入容器ID:" containerId
export containerId
}
function getTopicName()
{
read -p "请输入Topic名称:" topicName
export topicName
}
function getContainerIp()
{
read -p "请输入容器IP:" containerIp
export containerIp
}
function showTopicLists()
{
getContainerId
sudo docker exec -it ${containerId} kafka-topics.sh --list --zookeeper localhost:2181
}
function createTopic()
{
getContainerId
getTopicName
sudo docker exec -it ${containerId} kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic ${topicName}
}
function insertMessage()
{
getContainerId
getContainerIp
getTopicName
sudo docker exec -it ${containerId} kafka-console-producer.sh --broker-list ${containerIp}:9092 --topic ${topicName}
}
function consumeMessageFromBeginning()
{
getContainerId
getContainerIp
getTopicName
sudo docker exec -it ${containerId} kafka-console-consumer.sh --bootstrap-server ${containerIp}:9092 --topic ${topicName} --from-beginning
}
case $op in
1)
showTopicLists
exit 0
;;
2)
createTopic
exit 0
;;
3)
insertMessage
exit 0
;;
4)
consumeMessageFromBeginning
exit 0
;;
esac
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Docker
1
https://gitee.com/bookge/docker-kafka.git
git@gitee.com:bookge/docker-kafka.git
bookge
docker-kafka
docker-kafka
master

搜索帮助