aboutsummaryrefslogtreecommitdiff
path: root/docs/streaming-custom-receivers.md
diff options
context:
space:
mode:
authorTathagata Das <tathagata.das1565@gmail.com>2013-02-24 16:32:44 -0800
committerTathagata Das <tathagata.das1565@gmail.com>2013-02-24 16:32:44 -0800
commitabb54718658f8cfa0005fe99f4159eabce074f45 (patch)
treeec822b1e0fdab2eccabad2437e20dca8371230cf /docs/streaming-custom-receivers.md
parent5ab37be9831e8a70b2502b14aed1c87cb002a189 (diff)
downloadspark-abb54718658f8cfa0005fe99f4159eabce074f45.tar.gz
spark-abb54718658f8cfa0005fe99f4159eabce074f45.tar.bz2
spark-abb54718658f8cfa0005fe99f4159eabce074f45.zip
Removing duplicate doc.
Diffstat (limited to 'docs/streaming-custom-receivers.md')
-rw-r--r--docs/streaming-custom-receivers.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/streaming-custom-receivers.md b/docs/streaming-custom-receivers.md
index 0eb4246158..5476c00d02 100644
--- a/docs/streaming-custom-receivers.md
+++ b/docs/streaming-custom-receivers.md
@@ -1,9 +1,9 @@
---
layout: global
-title: Tutorial - Spark streaming, Plugging in a custom receiver.
+title: Tutorial - Spark Streaming, Plugging in a custom receiver.
---
-A "Spark streaming" receiver can be a simple network stream, streams of messages from a message queue, files etc. A receiver can also assume roles more than just receiving data like filtering, preprocessing, to name a few of the possibilities. The api to plug-in any user defined custom receiver is thus provided to encourage development of receivers which may be well suited to ones specific need.
+A "Spark Streaming" receiver can be a simple network stream, streams of messages from a message queue, files etc. A receiver can also assume roles more than just receiving data like filtering, preprocessing, to name a few of the possibilities. The api to plug-in any user defined custom receiver is thus provided to encourage development of receivers which may be well suited to ones specific need.
This guide shows the programming model and features by walking through a simple sample receiver and corresponding Spark Streaming application.