Open fnozarian opened 8 years ago
These examples really need a good polish: although the general strategies are roughly right, the implementation details have changed significantly. In particular, the Spark project has evolved considerably since the examples were written:
I'm currently planning some work on improving the way Kafka is supported and hope to revisit the examples after that.
Hello. I noticed that the
divolteStream
usescreateStream
method ofKafkaUtils
to establish a stream, however since Spark 1.3 it is recomended to use DirectStream API (createDirectStream
) to read data from Kafka. Do you have any plan to re-implementdivolteStream
using this API?