61626364656667
Schema schema; GenericData model = GenericData.get(); /** Construct reading from a file. */ public Params(File file) throws IOException { this(new InputFile(file)); }
4041424344454647
static Input input(String filename) throws IOException { if (filename.startsWith("hdfs://")) { return new HadoopInput(new Path(filename), new Configuration()); } else { return new InputFile(new File(filename)); } }
64656667686970
4142434445464748