views:

115

answers:

1

How can you pull some # of random keys from a Cassandra supercolumn?

+2  A: 

You mean, random columns?

I guess you'd need to read them all to the client and use random.choice or something, it won't do that for you server-side.

jbellis