public Row getRow(UUID uuid) {
DataRowKey dataRow = new DataRowKey(tableId, uuid);
Get get = new Get(dataRow.encode());
Result result = HBaseOperations.performGet(hTable, get);
if (result.isEmpty()) {
throw new RowNotFoundException(uuid);
}
return Row.deserialize(result.getValue(columnFamily.getBytes(), new byte[0]));
}