I am using Voltdb. And my use case is to import data from kafka to voltdb. I am using below command : Command: kafkaloader test --brokers <>:2181, --topic kafkavoltdb
In deployment.xml file the configuration is:
<security enabled="false" provider="hash"/> <import> <configuration type="kafka" enabled="true" format="csv"> <property name="topics">kafkavoltdb</property> <property name="procedure">TEST.insert</property> <property name="brokers">brokers:6667</property> </configuration> </import>
I am not able to fetch data from kafka to voltdb and the kafkaloader commands hungs up and not throwing any error. The logs showing : Failed to get Kafka partition info org.apache.kafka.common.errors.TimeoutException: Timeout expired while fetching topic metadata. Note: i am using apache kafka (HDP version 3.0 ,Kerberos security cluster) Kindly help me with solution.