table = new HTable(this.conf, tableName);
Scan scan = new Scan(startRow);
scan.addColumns(columns);
scan.setTimeRange(0, timestamp);
// scan.setFilter(filter);
return new ScannerIdentifier(scannerMaster.addScanner(table.getScanner(
scan)));
} catch (IOException e) {
throw new HBaseRestException(e);
}
}