Github user giwa commented on a diff in the pull request:
https://github.com/apache/spark/pull/2538#discussion_r18078083
--- Diff: examples/src/main/python/streaming/network_wordcount.py ---
@@ -0,0 +1,20 @@
+import sys
+
+from pyspark.streaming.context import StreamingContext
+from pyspark.streaming.duration import *
+
+if __name__ == "__main__":
+ if len(sys.argv) != 3:
+ print >> sys.stderr, "Usage: wordcount <hostname> <port>"
+ exit(-1)
+ ssc = StreamingContext(appName="PythonStreamingNetworkWordCount",
--- End diff --
Based on your changes, this line should be
```
sc = SparkContext(appName="PythonStreamingNetworkWordCount")
ssc = StreamingContext(sc, Seconds(1))
```
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]