请教下 有没有用logstash 把kafka日志同步到hdfs的

0
已邀请:
0

Bob - 同程旅游大数据+BI 架构师 2016-11-15 回答

logstash有kafka的插件可以使用:

input {
kafka {
zk_connect => "localhost:2181"
topic_id => "testtopic"
}
}
 

要回复问题请先登录注册