You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spark Streaming can receive streaming data from any arbitrary data source beyond
7
-
the one's for which it has in-built support (that is, beyond Flume, Kafka, files, sockets, etc.).
7
+
the one's for which it has in-built support (that is, beyond Flume, Kafka, Kinesis, files, sockets, etc.).
8
8
This requires the developer to implement a *receiver* that is customized for receiving data from
9
9
the concerned data source. This guide walks through the process of implementing a custom receiver
10
10
and using it in a Spark Streaming application.
@@ -174,7 +174,7 @@ val words = lines.flatMap(_.split(" "))
174
174
...
175
175
{% endhighlight %}
176
176
177
-
The full source code is in the example [CustomReceiver.scala](https://github.com/apache/spark/blob/master/examples/src/main/scala/org/apache/spark/streaming/examples/CustomReceiver.scala).
177
+
The full source code is in the example [CustomReceiver.scala](https://github.com/apache/spark/blob/master/examples/src/main/scala/org/apache/spark/examples/streaming/CustomReceiver.scala).
0 commit comments