You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@cassandra.apache.org by Jared Laprise <ja...@webonyx.com> on 2010/04/16 04:01:37 UTC

Is it possible to get all records in a CF?

If you do not have the key for SuperColumn in a ColumnFamily is it not possible to browse all the data in the ColumnFamily? Thus far I've only been able to find a way to pull out data if I know the key.


Re: Is it possible to get all records in a CF?

Posted by Gary Dusbabek <gd...@gmail.com>.
You'll have to scan the CF.  If you're using
OrderPreservingPartitioner please see 'get_range_slices'
(http://wiki.apache.org/cassandra/API).  It would help if you had an
idea of where the key might be, so you would know where to start
scanning.

Gary.

On Thu, Apr 15, 2010 at 21:01, Jared Laprise <ja...@webonyx.com> wrote:
> If you do not have the key for SuperColumn in a ColumnFamily is it not
> possible to browse all the data in the ColumnFamily? Thus far I’ve only been
> able to find a way to pull out data if I know the key.
>
>