How can I use the addJar() method when I implement a stream?
The newJob() uses a DAG:
JobConfig config = new JobConfig();
config.addJar("..");
jet.newJob(dag, config).execute().get();
Streams are changed to DAGs internally:
IMap<String, Long> counts = lines
.stream()
.flatMap(..);