Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastianschmidl/mocc_assignment4
https://github.com/sebastianschmidl/mocc_assignment4
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sebastianschmidl/mocc_assignment4
- Owner: SebastianSchmidl
- Created: 2019-01-31T15:00:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-03T14:25:31.000Z (almost 6 years ago)
- Last Synced: 2024-11-10T16:19:01.270Z (2 months ago)
- Language: Scala
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A Flink application project using Scala and SBT.
To run and test your application locally, you can just execute `sbt run` then select the main class that contains the Flink job .
You can also package the application into a fat jar with `sbt assembly`, then submit it as usual, with something like:
```
flink run -c org.example.WordCount /path/to/your/project/my-app/target/scala-2.11/testme-assembly-0.1-SNAPSHOT.jar
```You can also run your application from within IntelliJ: select the classpath of the 'mainRunner' module in the run/debug configurations.
Simply open 'Run -> Edit configurations...' and then select 'mainRunner' from the "Use classpath of module" dropbox.