ColumnFQ.fetch(scanner, Constants.METADATA_DIRECTORY_COLUMN);
scanner.fetchColumnFamily(Constants.METADATA_CURRENT_LOCATION_COLUMN_FAMILY);
// TODO since not using tablet iterator, are there any issues w/ splits merges?
long t1 = System.currentTimeMillis();
RowIterator ri = new RowIterator(scanner);
int tabletsToWaitFor = 0;
int tabletCount = 0;
while (ri.hasNext()) {
Iterator<Entry<Key,Value>> row = ri.next();
long tabletCompactID = -1;
TServerInstance server = null;
Entry<Key,Value> entry = null;