We're getting strange results when reading from Cassandra 2.0 in php using
this driver:
http://code.google.com/a/apache-extras.org/p/cassandra-pdo/
Here's the schema:
CREATE TABLE events (
day text,
last_event text,
event_text text,
mdn text,
PRIMARY KEY ((day), last_event)
) WITH CLU
We need to provide search capability based on a field that is a bitmap
combination of 18 possible values. We want to use secondary indexes to
improve performance. One possible solution is to create a named column for
each value and have a secondary index for each of the 18 columns.
Questions we hav
Cassandra rotates system.log when it reaches 20MB. We see that old logs
are kept for over a month. Is Cassandra going to delete or compress these
logs when a certain threshold is reached or are we supposed to do it
ourselves?
Hi Jonathan,
We're using thrift interface with C++.
Andy
On Tue, Oct 25, 2011 at 12:47 PM, Jonathan Ellis wrote:
> Are you using the StorageProxy API directly?
>
> On Tue, Oct 25, 2011 at 12:39 PM, Andy Stec wrote:
> > We're using version 1.0. The following excepti