}
@Override
public VertexReader createVertexReader(final InputSplit split,
final TaskAttemptContext context) throws IOException {
VertexReader reader = new GraphSONVertexReader();
try {
reader.initialize(split, context);
} catch (InterruptedException e) {
throw new IOException(e);
}
return reader;
}