try {
JsonFactory factory = new JsonFactory();
parser = factory.createJsonParser(fileSystem.open(hadoopPath));
parser.nextToken(); // Read to the first START_OBJECT token
generator = new SchemaIdGenerator();
} catch (IOException e) {
throw new ExecutionSetupException(e);
}
}