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
[If no picture show,please click me](http://upload-images.jianshu.io/upload_images/1063603-968e744a1ef2e334.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
10
+
11
+
12
+
## Spark Streaming
13
+
14
+
Spark Streaming is an extension of the core Spark API that enables stream processing
15
+
from a variety of sources.
16
+
Spark is a extensible and programmable framework for massive distributed processing of datasets,
17
+
called Resilient Distributed Datasets (RDD). Spark Streaming receives input data streams and
18
+
divides the data into batches, which are then processed by the Spark engine to generate the results.
19
+
20
+
Spark Streaming data is organized into a sequence of DStreams,
21
+
represented internally as a sequence of RDDs.
22
+
23
+
## StreamingPro
24
+
5
25
StreamingPro is not a complete
6
-
application, but rather a code library and API that can easily be used
7
-
to build your streaming application which may run on Spark Streaming.
26
+
application, but rather a extensible and programmable framework for spark streaming (also include spark,storm)
27
+
that can easily be used to build your streaming application.
8
28
9
-
StreamingPro also make it possible that all you should do to build streaming program is assembling components(eg. SQL Component) in configuration file.
10
-
Of source , if you are a geek who like do every thing by programing,we also encourage you use API provided
11
-
by StreamingPro which is more easy to use then original API designed by Spark/Storm.
29
+
30
+
StreamingPro also make it possible that all you should do to build streaming program is
31
+
assembling components(eg. SQL Component) in configuration file.
12
32
13
33
## Features
14
34
15
-
* Pure spark streaming program (Storm/Spark in future)
35
+
* Pure Spark Streaming(Or normal Spark) program (Storm in future)
16
36
* No need of coding, only declarative workflows
37
+
* Rest API for interactive
17
38
* SQL-Oriented workflows support
18
39
* Data continuously streamed in & processed in near real-time
19
-
* dynamically CURD of workflows at runtime via Rest API (in single instance or multiple instances)
40
+
* dynamically CURD of workflows at runtime via Rest API
0 commit comments