So currently my flink project produces two jars when "mvn package" is ran. From what I can tell, based on looking around the internet, the maven shade plugin makes the other jar. Here is a snapshot of the jars that are produced in the project's target folder:
So I can upload the 82.9MB one to the flink cluster and run the job and it works fine, but if I try using the original-mtsas-flink-1.3 jar that's 146.4KB, it will throw an error along the lines of "no main class found".
So my question is two parts: 1.) Why are the two jars being produced. 2.) Is there a way to upload the smaller jar and be able to run a job from it?
Thanks for any help in advance!