[readme] add hint on how to submit jar to cluster
Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/517c1bd2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/517c1bd2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/517c1bd2 Branch: refs/heads/master Commit: 517c1bd2656f2c1e6b93bae87081203396aaa281 Parents: d7bd7f4 Author: Max <[email protected]> Authored: Tue Jan 19 14:33:55 2016 +0100 Committer: Davor Bonaci <[email protected]> Committed: Fri Mar 4 10:04:23 2016 -0800 ---------------------------------------------------------------------- runners/flink/README.md | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/517c1bd2/runners/flink/README.md ---------------------------------------------------------------------- diff --git a/runners/flink/README.md b/runners/flink/README.md index e8c2170..8c06c1d 100644 --- a/runners/flink/README.md +++ b/runners/flink/README.md @@ -132,6 +132,11 @@ A fat jar is necessary if you want to submit your Dataflow code to a Flink clust includes your program code but also Dataflow code which is necessary during runtime. Note that this step is necessary because the Dataflow Runner is not part of Flink. +You can then build the jar using `mvn clean package`. Please submit the fat jar in the `target` +folder to the Flink cluster using the command-line utility like so: + + ./bin/flink run /path/to/fat.jar + For more information, please visit the [Apache Flink Website](http://flink.apache.org) or contact the [Mailinglists](http://flink.apache.org/community.html#mailing-lists).
