conf.set( "cascading.flow.node.num", Integer.toString( flowNode.getOrdinal() ) );
int parallelism = getParallelism( flowNode, conf );
if( parallelism == 0 )
throw new FlowException( getName(), "the default number of gather partitions must be set, see cascading.flow.FlowRuntimeProps" );
Vertex vertex = newVertex( flowNode, conf, parallelism );
for( FlowElement flowElement : sourceConfigs.keySet() )
{