Exemplo n.º 1
0
 public FlowGraph resolve(FlowDescription flowDescription) {
   return driver.createFlowGraph(flowDescription);
 }
Exemplo n.º 2
0
 @Override
 public <T> Out<T> addOutput(String name, Class<T> dataType) {
   String basePath = CompilerConstants.getRuntimeWorkingDirectory();
   String path = MapReduceCompierUtil.createOutputLocation(basePath, name).toPath('/');
   return driver.createOut(name, new DirectExporterDescription(dataType, path));
 }