try {
Get get = new Get(encodedRow);
get.addFamily(columnFamily);
Result result = HBaseOperations.performGet(hTable, get);
if (result.isEmpty()) {
throw new TableNotFoundException(tableId);
}
Map<byte[], byte[]> serializedNameIds = result.getFamilyMap(columnFamily);
Map<String, Long> nameToId = new HashMap<String, Long>(serializedNameIds.size());