Hi Nicos,
Under the flink-example module, there are many examples, including batch
and streaming. You could build the project from the source, this way you
could found many jars under the target directory. You can submit these jars
to the Flink cluster. Also, you could run these examples directly
Hi minglei,
Maybe you could try to remove your local maven repo and settings.xml, which
usually located on ~/.m2/repository and ~/.me/settings.xml by default. You
could do this by
mv ~/.m2 ~/m2_backup
And then try to rebuild the project by:
mvn clean install -Dmaven.test.skip=true
Zhengwen