I am using Hector to do a range query for a column family that uses TimeUUIDs
as column names. However, I'm not sure how to create the "range". I figured
I'd create some UUIDs using the com.eaio.uuid library with timestamps for the
range I was interested in. When trying this, I don't get any
To make sure I had an all-encompassing date range, I tried this:
UUID startId = new UUID(UUIDGen.createTime(0L),
UUIDGen.getClockSeqAndNode());
UUID finishId = new UUID(UUIDGen.createTime(Long.MAX_VALUE),
UUIDGen.getClockSeqAndNode());
For the range slice parameters, and I am still not getting a