sridharswamy / Twitter-Sentiment-Analysis-Using-Spark-Streaming-And-Kafka

Twitter Sentiment Analysis using Spark and Kafka
114 stars 74 forks source link

create new kafka topic #5

Open mynameisvinn opened 6 years ago

mynameisvinn commented 6 years ago

bin/kafka-topics.sh --create --zookeeper --partitions 1 --topic twitterstream localhost:2181 --replication-factor 1 throws errors.

instead, it should be replaced with bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic twitterstream.

jjordanbaird commented 5 years ago

Thanks @mynameisvinn