Member since
09-10-2015
9
Posts
3
Kudos Received
3
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
690 | 09-01-2017 07:33 AM | |
1433 | 05-24-2017 03:42 PM | |
2965 | 11-11-2016 09:55 AM |
05-30-2017
10:03 AM
I think that is not possible at the moment.
... View more
05-24-2017
03:42 PM
1 Kudo
From version 0.10.2.0 it is supported to use different keystores You need to set config: listener.name.<CLIENTNAME IN LOWERCASE>.ssl.keystore.location If this client does not defined kafka will fallback to the default config: ssl.keystore.location
... View more
05-16-2017
09:39 AM
If this does not help either: try recreating the test topic: kafka-topics.sh --zookeeper localhost:2181 --create --topic mytest --partitions 1 --replication-factor 1
... View more
05-16-2017
09:19 AM
Hmm, My first guess is the kafka-broker is not listening on port 6667. You can check it using the ambari, or with zkCli.sh -server localhost:2181
get /brokers/ids/<your broker id> My second guess is, try with localhost:6667 instead of using an ip.
... View more
05-16-2017
08:00 AM
Can you please check if your topic is created properly with the following command: /usr/hdp/current/kafka-broker/bin/kafka-topics.sh --zookeeper 10.74.58.106:2181 --list
... View more
04-03-2017
09:54 AM
I am not sure, what do you mean by "configure multiple broker using python API" but maybe you want to add an another broker to the sandbox. If yes, please follow the instructions stated here: https://community.hortonworks.com/questions/617/is-it-possible-to-add-another-kafka-broker-to-my-c.html
... View more
03-23-2017
07:44 AM
@Pradhuman GuptaI think your best option is: https://blog.couchbase.com/introducing-the-couchbase-kafka-connector/ https://github.com/couchbase/couchbase-kafka-connector
... View more
11-11-2016
09:55 AM
2 Kudos
If the cluster is kerberized only one user can create new topic with command: bin/kafka-topics.sh --create --zookeeper <you zk node> --replication-factor 1 --partitions 1 --topic kafka_topic
This user is the user who runs the kafka broker, this is a zookeeper security limitation but there is a property in kafka auto.create.topics.enable, if this one is set to true the required topic will be created if the user produce/consume message. bin/kafka-console-producer.sh --broker-list broker address --topic kafka_topic --security-protocol SASL_PLAINTEXT
This command will create the kafka_topic, with different users.
... View more