Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
PandraCore::getRangeKey - Key range is overlapping keys #49
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
loretoparisi commentedDec 10, 2010
I'm using the key slice in this way on a Super Column Family:
This is the only way using parameters $start and $limit to achieve a sortain of key range, sliciing from $start=0 to $start=$limit
But something is wrong, because I'm having back same keys during iterations:
Event: block:1 start:50 size:24 count:24 memory: 6.22 M
Following keys will be repeated in the next loop:
(...omissis)
And the repeating keys block:
Event: block:0 start:26 size:20 count:44 memory: 6.22 M
(...omissis)
Since the block total size should be 50, from the second block (I'm reading from the last one), starting from 26:
Event: block:0 start:26 size:20 count:44 memory: 6.22 M
I should have a new key range.
What's happening is that key ranges are overlapping in some way.
Any idea?