我是 PySpark 的新手,我在 Ubuntu 14.04 上安装了 Kafka 单节点和单代理。
安装后我使用kafka-console- Producer和kafka-console-consume测试了Kafka发送和接收数据。
以下是我遵循的步骤 启动消费者消费消息。
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic kafkatopic --from-beginning
启动生产者在新的终端窗口中发送消息。
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic kafkatopic
[2016-09-25 7:26:58,179] WARN Property topic is not valid (kafka.utils.VerifiableProperties)
Good morning
Future big data
this is test message
在消费终端
bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic kafkatopic --from-beginning
Good morning
Future big data
this is test message
来自 meetup.com 的以下链接可生成流数据
http://stream.meetup.com/2/rsvps
我的需求是如何使用Kafka从http站点收集流数据到spark。下载流数据的转换命令是什么?
下载数据后,我可以找到按城市的计数以及特定时间间隔的其他分析。