private ColumnFamily fetchColumnFamily(String key, String cf, IFilter filter, String ssTableFile) throws IOException
{
SSTable ssTable = new SSTable(ssTableFile);
long start = System.currentTimeMillis();
DataInputBuffer bufIn;
bufIn = filter.next(key, cf, ssTable);
logger_.debug("DISK ssTable.next TIME: " + (System.currentTimeMillis() - start) + " ms.");
if (bufIn.getLength() == 0)
return null;
start = System.currentTimeMillis();
ColumnFamily columnFamily = ColumnFamily.serializer().deserialize(bufIn, cf, filter);
logger_.debug("DISK Deserialize TIME: " + (System.currentTimeMillis() - start) + " ms.");
if (columnFamily == null)