CrunchInputFormat.class,
source.getConverter().getKeyClass(),
source.getConverter().getValueClass());
input.rdd().setName(source.toString());
return input
.map(new InputConverterFunction(source.getConverter()))
.map(new MapFunction(source.getType().getInputMapFn(), runtime.getRuntimeContext()));
} catch (IOException e) {
throw new RuntimeException(e);
}
}