Ah yes that's it exactly, including the time outs/errors. I wonder why
this didn't come up when I googled the error from my system logs.
Thanks!
Stephen
On Thu, Jun 21, 2012 at 2:47 AM, Sylvain Lebresne wrote:
> On Thu, Jun 21, 2012 at 5:11 AM, Stephen Powis
> wrote:
> > I have the following s
On Thu, Jun 21, 2012 at 5:11 AM, Stephen Powis wrote:
> I have the following schema:
>
> describe columnfamily visitor_audit;
>
> CREATE TABLE visitor_audit (
> visitor_id text,
> audit_id uuid,
> account_id int,
> audit_type int,
> created_at text,
> PRIMARY KEY (visitor_id, audit_id)
I have the following schema:
describe columnfamily visitor_audit;
CREATE TABLE visitor_audit (
visitor_id text,
audit_id uuid,
account_id int,
audit_type int,
created_at text,
PRIMARY KEY (visitor_id, audit_id)
) WITH
comment='' AND
caching='KEYS_ONLY' AND
read_repair_chance=0.1