I am new to Cassandra I am actually doing some investigation and proof of concept to see if it is suitable for our current task. As I am reading about Cassandra and according to what I understand it does not support Aggregations or Map Reduce framework to accomplish aggregation tasks. I have checked these question but they are not a concrete answer to my question: Aggregation queries in Cassandra CQL For example if I have a table of CDRs (Call Data Record )
+--------------+----------+---------+------------+
| src | duration | billsec | route_rate |
+--------------+----------+---------+------------+
| 0000FFFF0008 | 37 | 30 | 0.01 |
+--------------+----------+---------+------------+
sotred in Casandra can I execute queries some thing like
SELECT * FROM CDRS GROUP BY src ORDER BY src, billsec
MongoDB, Hadoop, and may others, provide Map Reduce, RDBMS provide GROUP BY.
Does Cassandra provides somethings similar and can you provide some example ?