Re: Pattern to store maps of maps...

2014-06-14 Thread DuyHai Doan
Every thing is possible with Thrift, provided that you manage every thing manually client side. Having coded an implementation of Achilles (object mapper) over Hector, it was really painfull to manage collections in Thrift. Now to stick to the topic, if you want to nest collections into

incremental backups

2014-06-14 Thread S C
Is it ok to delete files from backups directory (hardlinks) once I have it copied over remotely? Any caution to take? Thanks,Kumar

RE: Backup Cassandra to

2014-06-14 Thread S C
Despite storing a replica in the backup node, what is the guarantee that the backup node has all the data? Unless you make consistency a priority over availability of your cluster. I could think of another approach. You can design your cluster with a topology such that your work load is split

Re: Pattern to store maps of maps...

2014-06-14 Thread Kevin Burton
Wow.. that's the right answer. Now I'm super excited for C* 2.1 :) .. yeah.. that would work perfectly. having custom types would perfectly solve my problem. Now the issue is whether I wait for the next version or just push through this version… On Sat, Jun 14, 2014 at 2:24 AM, DuyHai Doan

Cassandra 2.0.8 MemoryMeter goes crazy

2014-06-14 Thread horschi
Hi everyone, this week we upgraded one of our Systems from Cassandra 1.2.16 to 2.0.8. All 3 nodes were upgraded. SStables are upgraded. Unfortunetaly we are now experiencing that Cassandra starts to hang every 10 hours or so. We can see the MemoryMeter being very active, every time it is

Re: incremental backups

2014-06-14 Thread Peter Sanford
You should delete the backup files once you have copied them off. Otherwise they will start to use disk space as the live SSTables diverge from the snapshots/incrementals. -psanford On Sat, Jun 14, 2014 at 10:17 AM, S C as...@outlook.com wrote: Is it ok to delete files from backups directory

RE: incremental backups

2014-06-14 Thread S C
I am thinking of rm file.db once the backup is complete. Any special cases to be careful about? -Kumar Date: Sat, 14 Jun 2014 13:13:10 -0700 Subject: Re: incremental backups From: psanf...@retailnext.net To: user@cassandra.apache.org You should delete the backup files once you have copied them

CQL IN query with 2i index

2014-06-14 Thread tommaso barbugli
Hi there, I was wondering if there is a good reason for select queries on secondary indexes to not support any where operator other than the equality operator, or if its just a missing feature in CQL. Thanks, Tommaso