Below is configuration to connect to zookeeper server which configured with Kafka 0.10
input {
kafka {
bootstrap_servers => "zk_server:2181"
topics => ['logstash_log_2']
}
}
output{
stdout{}
}
In zookeeper which is configured with Kafka -0.10 is giving below error in logs.
[2016-07-13 20:21:36,574] WARN Exception causing close of session 0x0 due to java.io.IOException: Unreasonable length = 1819240307 (org.apache.zookeeper.server.NIOServerCnxn)
because of which i feel data cannot be picked from kafka in logstash.
Please provide help