Member since
05-30-2018
26
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
9500 | 06-01-2018 05:48 AM |
06-12-2018
05:30 PM
1 Kudo
Hello @Rahul Kumar. Could you check your /etc/hosts? I saw you are using "localhost" as your broker/bootstrap. Try to change it to your "hostname" instead of "localhost". Some softwares doesn´t use "loopback" as a listener port by default. Besides that, if you are using the native Kafka from HortonWorks, the default port for brokers is 6667 or 6668 (when using Kerberos) and not 9092. I hope this works.
... View more
06-14-2018
05:09 AM
I am using normal kafka in ubuntu. I created /home/kafka/bin/tmp/a.txt Then tried to produce it as bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test < /tmp/a.txt But it gives me same error as bash: /tmp/a.txt: No such file or directory
... View more
06-07-2018
06:00 AM
Yes, it is working as a root user Thanks @Vinicius Higa Murakami
... View more
06-07-2018
03:10 PM
@Vinicius I m right now at a beginner stage of learning kafka. Just running a single instance on my local system ...havn't thought of working on clusters. But It is nice to get in touch with u and enhance my knowledge. Thanks once again 🙂
... View more
06-04-2018
03:54 AM
Thanks @Abdelkrim Hadjidj I understood the difference 🙂
... View more
06-01-2018
05:48 AM
Okay ! after a bit of search on stackoverflow I came across the command `sudo chown -R $USER:$USER /home/rahul/nifi-1.6.0` that will give the permission to the folder to alter the changes with permission to read and write, and Bingo !!! it worked . And after firing the command mentioned in above, there is no error as following : Exception in thread "main" java.io.IOException: /home/nifi-1.6.0/run directory does not have read/write privilege Thanks @Matt Clarke @Jay Kumar SenSharma
... View more
05-31-2018
01:03 PM
2 Kudos
@Rahul Kumar - Where are you getting the nar or jar for this custom influxdb processor from? - Once you have this custom processor nar/jar file, you will want to create a custom lib directory to place it in and then configure your nifi to read that additional custom lib folder location. This is done by adding a new key/value pair to the nifi,properties configuration file: nifi.nar.library.directory.custom-lib=/<path to custom lib dir>/custom-lib - A restart of NiFi will be required before NiFi will load any newly added custom libraries. At that point the new processor shoudl be available to add to the canvas just as you add any other processor. - Thank you, Matt
... View more