mirror of
https://gitee.com/johng/gf
synced 2026-07-04 13:02:36 +08:00
9 lines
386 B
Bash
Executable File
9 lines
386 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
cd ${KAFKA_INSTALL_ROOT}/kafka-9092
|
|
bin/kafka-topics.sh --create --partitions 1 --replication-factor 3 --topic test.1 --zookeeper localhost:2181
|
|
bin/kafka-topics.sh --create --partitions 4 --replication-factor 3 --topic test.4 --zookeeper localhost:2181
|
|
bin/kafka-topics.sh --create --partitions 64 --replication-factor 3 --topic test.64 --zookeeper localhost:2181
|