1

I have a column family in Cassandra and on one particular column, I have secondary index defined.

I want to fetch row key for this particular column value. How can I achieve this using plain Thrift API for Java? In Pelops I achieve this by creating IndexClause and calling:

Map <Bytes, List<Column>> qResults = selector.getIndexedColumns(tableName, 
                                                               ix,    
                                                               slicePredicate,
                                                               consistencyLevel);
Crowie
  • 3,220
  • 7
  • 28
  • 48
Amresh
  • 478
  • 1
  • 6
  • 28