Re: Upgrade from 2.0.9 to 2.2.4

2015-12-29 Thread Robert Coli
On Tue, Dec 29, 2015 at 2:31 PM, Mir Tanvir Hossain < mir.tanvir.hoss...@gmail.com> wrote: > Hello, is it possible to do a rolling upgrade from 2.0.9 to 2.2.4? > It is never supported to upgrade more than one major version of Cassandra. =Rob

Upgrade from 2.0.9 to 2.2.4

2015-12-29 Thread Mir Tanvir Hossain
Hello, is it possible to do a rolling upgrade from 2.0.9 to 2.2.4? Thanks, Mir

Re: Cassandra 3.1 - Aggregation query failure

2015-12-29 Thread Tyler Hobbs
> > > 1. Is it possible to "tune" the page size or is it hard-coded internally ? > If a page size is set for the request at the driver level, that page size will be used internally. Otherwise, it defaults to something reasonable (probably ~5k rows). > 2. Is read-repair performed on EACH page or

RE: Using TTL for data purge

2015-12-29 Thread SEAN_R_DURITY
If you know how long the records should last, TTL is a good way to go. Remember that neither TTL or deletes are right-away purge strategies. Each inserts a special record called a tombstone to indicate a deleted record. After compaction (that is after gc_grace_seconds for the table, default 10 d

Re: Re: cassandra full gc too long

2015-12-29 Thread Sebastian Estevez
Hi Xutom, What the " modern CQL client with paging support" mean? Is there opensource > CQL client ? I does not use any opensource CQL client and exporting data > with my java code. Use the datastax Java driver which is open source: github: https://github.com/datastax/java-driver docs: http:/

RE: External authentication options for C* (no DSE)

2015-12-29 Thread SEAN_R_DURITY
You can write your own using the appropriate interface(s) (for authentication and authorization). However, the interfaces have changed over the years, so it is likely not a write it and forget it bit of code. External security is one of the important features of DSE, though. Sean Durity – Lead