use of org.apache.hadoop.hbase.mapreduce.CellCreator in project Gaffer by gchq.
the class AddElementsFromHdfsMapper method setup.
@Override
protected void setup(final Context context) {
super.setup(context);
serialisation = new ElementSerialisation(schema);
Configuration conf = context.getConfiguration();
this.kvCreator = new CellCreator(conf);
}
Aggregations