aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/python/sql/streaming
diff options
context:
space:
mode:
authorJames Thomas <jamesjoethomas@gmail.com>2016-07-11 17:57:51 -0700
committerTathagata Das <tathagata.das1565@gmail.com>2016-07-11 17:57:51 -0700
commit9e2c763dbb5ac6fc5d2eb0759402504d4b9073a4 (patch)
treeee8b872c7460ffa571e67b15533f2ba4f067a20f /examples/src/main/python/sql/streaming
parentb4fbe140be158f576706f21fa69f40d6e14e4a43 (diff)
downloadspark-9e2c763dbb5ac6fc5d2eb0759402504d4b9073a4.tar.gz
spark-9e2c763dbb5ac6fc5d2eb0759402504d4b9073a4.tar.bz2
spark-9e2c763dbb5ac6fc5d2eb0759402504d4b9073a4.zip
[SPARK-16114][SQL] structured streaming event time window example
## What changes were proposed in this pull request? A structured streaming example with event time windowing. ## How was this patch tested? Run locally Author: James Thomas <jamesjoethomas@gmail.com> Closes #13957 from jjthomas/current.
Diffstat (limited to 'examples/src/main/python/sql/streaming')
-rw-r--r--examples/src/main/python/sql/streaming/structured_network_wordcount.py3
-rw-r--r--examples/src/main/python/sql/streaming/structured_network_wordcount_windowed.py102
2 files changed, 104 insertions, 1 deletions
diff --git a/examples/src/main/python/sql/streaming/structured_network_wordcount.py b/examples/src/main/python/sql/streaming/structured_network_wordcount.py
index 32d63c52c9..afde255058 100644
--- a/examples/src/main/python/sql/streaming/structured_network_wordcount.py
+++ b/examples/src/main/python/sql/streaming/structured_network_wordcount.py
@@ -16,7 +16,7 @@
#
"""
- Counts words in UTF8 encoded, '\n' delimited text received from the network every second.
+ Counts words in UTF8 encoded, '\n' delimited text received from the network.
Usage: structured_network_wordcount.py <hostname> <port>
<hostname> and <port> describe the TCP server that Structured Streaming
would connect to receive data.
@@ -58,6 +58,7 @@ if __name__ == "__main__":
# Split the lines into words
words = lines.select(
+ # explode turns each item in an array into a separate row
explode(
split(lines.value, ' ')
).alias('word')
diff --git a/examples/src/main/python/sql/streaming/structured_network_wordcount_windowed.py b/examples/src/main/python/sql/streaming/structured_network_wordcount_windowed.py
new file mode 100644
index 0000000000..02a7d3363d
--- /dev/null
+++ b/examples/src/main/python/sql/streaming/structured_network_wordcount_windowed.py
@@ -0,0 +1,102 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+"""
+ Counts words in UTF8 encoded, '\n' delimited text received from the network over a
+ sliding window of configurable duration. Each line from the network is tagged
+ with a timestamp that is used to determine the windows into which it falls.
+
+ Usage: structured_network_wordcount_windowed.py <hostname> <port> <window duration>
+ [<slide duration>]
+ <hostname> and <port> describe the TCP server that Structured Streaming
+ would connect to receive data.
+ <window duration> gives the size of window, specified as integer number of seconds
+ <slide duration> gives the amount of time successive windows are offset from one another,
+ given in the same units as above. <slide duration> should be less than or equal to
+ <window duration>. If the two are equal, successive windows have no overlap. If
+ <slide duration> is not provided, it defaults to <window duration>.
+
+ To run this on your local machine, you need to first run a Netcat server
+ `$ nc -lk 9999`
+ and then run the example
+ `$ bin/spark-submit
+ examples/src/main/python/sql/streaming/structured_network_wordcount_windowed.py
+ localhost 9999 <window duration> [<slide duration>]`
+
+ One recommended <window duration>, <slide duration> pair is 10, 5
+"""
+from __future__ import print_function
+
+import sys
+
+from pyspark.sql import SparkSession
+from pyspark.sql.functions import explode
+from pyspark.sql.functions import split
+from pyspark.sql.functions import window
+
+if __name__ == "__main__":
+ if len(sys.argv) != 5 and len(sys.argv) != 4:
+ msg = ("Usage: structured_network_wordcount_windowed.py <hostname> <port> "
+ "<window duration in seconds> [<slide duration in seconds>]")
+ print(msg, file=sys.stderr)
+ exit(-1)
+
+ host = sys.argv[1]
+ port = int(sys.argv[2])
+ windowSize = int(sys.argv[3])
+ slideSize = int(sys.argv[4]) if (len(sys.argv) == 5) else windowSize
+ if slideSize > windowSize:
+ print("<slide duration> must be less than or equal to <window duration>", file=sys.stderr)
+ windowDuration = '{} seconds'.format(windowSize)
+ slideDuration = '{} seconds'.format(slideSize)
+
+ spark = SparkSession\
+ .builder\
+ .appName("StructuredNetworkWordCountWindowed")\
+ .getOrCreate()
+
+ # Create DataFrame representing the stream of input lines from connection to host:port
+ lines = spark\
+ .readStream\
+ .format('socket')\
+ .option('host', host)\
+ .option('port', port)\
+ .option('includeTimestamp', 'true')\
+ .load()
+
+ # Split the lines into words, retaining timestamps
+ # split() splits each line into an array, and explode() turns the array into multiple rows
+ words = lines.select(
+ explode(split(lines.value, ' ')).alias('word'),
+ lines.timestamp
+ )
+
+ # Group the data by window and word and compute the count of each group
+ windowedCounts = words.groupBy(
+ window(words.timestamp, windowDuration, slideDuration),
+ words.word
+ ).count().orderBy('window')
+
+ # Start running the query that prints the windowed word counts to the console
+ query = windowedCounts\
+ .writeStream\
+ .outputMode('complete')\
+ .format('console')\
+ .option('truncate', 'false')\
+ .start()
+
+ query.awaitTermination()