difference between exactly-once and at-least-once guarantees

Below definitions are quoted from Akka Documentation at-most-once delivery means that for each message handed to the mechanism, that message is delivered zero or one times; in more casual terms it means that messages may be lost. at-least-once delivery means that for each message handed to the mechanism potentially multiple attempts are made at delivering … Read more

cassandra get all records in time range

The timeout is because Cassandra is taking longer than the timeout (default is 10 seconds) to return the data. For your query, Cassandra will attempt to fetch the entire dataset before returning. For more than a few records this can easily take longer than the timeout. For queries that are producing lots of data you … Read more

What’s the difference between creating a table and creating a columnfamily in Cassandra?

To answer the original question you posed: a column family and a table are the same thing. The name “column family” was used in the older Thrift API. The name “table” is used in the newer CQL API. More info on the APIs can be found here: http://wiki.apache.org/cassandra/API If you need to use “group by,order … Read more