I'm implementing a small library of graph analyse tools. I wrote a wrapper for it the idea is that you specify what analysis you want to run and on what graph and everything is done in a single job.
Some parts share a common pre processing step everyone else just shares the initial DataSets.
When I try to run it I get the following exception (interestingly after the first sub job has finished and produced an output):
Exception in thread "main" eu.stratosphere.compiler.CompilerException: The given program contains multiple disconnected data flows.
QUESTION's:
What does the exception mean in detail, all sub jobs share at least the input DataSets so in my mind they are connected.
Is the structure I tried to build illegal? If so why, and what would be a good alternative to have the same functionality.
cheers Martin
ExecutionEnvironment.getExecutionEnvironment();
load the DataSets
pre process if needed
for each analysis
if analysis x should be done do it and output it to file
env.execute();
--
You received this message because you are subscribed to a topic in the Google Groups "stratosphere-dev" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/stratosphere-dev/KXTow5OLNIs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to stratosphere-d...@googlegroups.com.
Visit this group at http://groups.google.com/group/stratosphere-dev.
For more options, visit https://groups.google.com/d/optout.
Are multiple of the algorithms you add iterative?
--