I'm trying to figure out how to batch delete rows in Cassandra DB using Pelops.
Ideally, I could specify a KeyRange of rows that need to be deleted. That would work fine for my purposes.
However, my (albeit brief) research is leading me to believe that this is not currently possible. RowDeletor only takes a rowKey, and not a KeyRange. Are these findings correct?
I should be able to do it programmatically using a modified version of one of my List functions, but, again, a KeyRange would be preferable.