Github user W4anD0eR96 commented on a diff in the pull request:
https://github.com/apache/flink/pull/5957#discussion_r186453573
--- Diff: docs/quickstart/setup_quickstart.md ---
@@ -233,29 +239,17 @@ window of processing time, as long as words are
floating in.
* First of all, we use **netcat** to start local server via
- {% highlight bash %}
- $ nc -l 9000
- {% endhighlight %}
+{% highlight bash %}
+$ nc -l 9000
+{% endhighlight %}
* Submit the Flink program:
- {% highlight bash %}
- $ ./bin/flink run examples/streaming/SocketWindowWordCount.jar --port
9000
-
- Cluster configuration: Standalone cluster with JobManager at
/127.0.0.1:6123
- Using address 127.0.0.1:6123 to connect to JobManager.
- JobManager web interface address http://127.0.0.1:8081
- Starting execution of program
- Submitting job with JobID: 574a10c8debda3dccd0c78a3bde55e1b. Waiting for
job completion.
- Connected to JobManager at
Actor[akka.tcp://[email protected]:6123/user/jobmanager#297388688]
- 11/04/2016 14:04:50 Job execution switched to status RUNNING.
- 11/04/2016 14:04:50 Source: Socket Stream -> Flat Map(1/1) switched
to SCHEDULED
- 11/04/2016 14:04:50 Source: Socket Stream -> Flat Map(1/1) switched
to DEPLOYING
- 11/04/2016 14:04:50 Fast TumblingProcessingTimeWindows(5000) of
WindowedStream.main(SocketWindowWordCount.java:79) -> Sink: Unnamed(1/1)
switched to SCHEDULED
--- End diff --
> You are effectively addressing FLINK-9282, could you adjust the PR title
and commit message?
> (There's also another bit that needs an update, see the JIRA.
Done as suggestion.
And file a issue on https://issues.apache.org/jira/browse/FLINK-9307 about
suspected regression.
---