@Override
 public <T> In<T> addInput(String name, Class<T> dataType) {
   String basePath = CompilerConstants.getRuntimeWorkingDirectory();
   String path = MapReduceCompierUtil.createInputLocation(basePath, name).toPath('/');
   return driver.createIn(name, new DirectImporterDescription(dataType, path));
 }