Does Cassandra supports ACID txn

2018-04-18 Thread Rajesh Kishore
Hi, I am bit confused by reading different articles, does recent version of Cassandra supports ACID transaction ? I found BATCH command , but not sure if it supports rollback, consider that transaction I am going to perform would be on single partition. Also, what are the limitations if any? Th

Re: A Cassandra Storage Estimation Mechanism

2018-04-18 Thread Christophe Schmitz
Hi Onmestester, A few comments inline: > > 1. I'm using the real schema + > 3 nodes cluster > Since you are only interested in data usage, for simplicity, you could use a single node cluster (your computer), and use RF=1. If your production cluster will use RF=3, you will just need to multiply.

Re: Dropped Mutations

2018-04-18 Thread hitesh dua
Hi , I'll recommend tuning you heap size further( preferably lower) as large Heap size can lead to Large Garbage collection pauses also known as also known as a stop-the-world event. A pause occurs when a region of memory is full and the JVM needs to make space to continue. During a pause all oper

Re: Token range redistribution

2018-04-18 Thread Richard Gray
On 2018-04-18 21:28, kurt greaves wrote: replacing. Simply removing and adding back a new node without replace address will end up with the new node having different tokens, which would mean data loss in the use case you described. If you have replication factor N > 1, you haven't necessarily

Re: Logback-tools.xml

2018-04-18 Thread Michael Shuler
On 04/18/2018 10:39 AM, Abdul Patel wrote: > > I have instakled 3.11.2 and i see 2 new files ..logback-tools.xml and > -jaas.config .. > > What are they used for ? logback-tools.xml is the logback configuration for all the tools under bin/ and tools/bin/, so you could change the root log level

Dropped Mutations

2018-04-18 Thread shalom sagges
Hi All, I have a 44 node cluster (22 nodes on each DC). Each node has 24 cores and 130 GB RAM, 3 TB HDDs. Version 2.0.14 (soon to be upgraded) ~10K writes per second per node. Heap size: 8 GB max, 2.4 GB newgen I deployed Reaper and GC started to increase rapidly. I'm not sure if it's because the

Logback-tools.xml

2018-04-18 Thread Abdul Patel
Hey All, I have instakled 3.11.2 and i see 2 new files ..logback-tools.xml and -jaas.config .. What are they used for ?

Re: where does c* store the schema?

2018-04-18 Thread Rahul Singh
Blake, you are right — although it’s he system keyspace not the system table. There are a few tables : schema_keyspaces, schema_columnfamilies, schema_columns which are correlated via cf_id , keyspace , columnfamilyname, and Columnname I was thinking about the system_auth keyspace. Jinhua, It

Re: Token range redistribution

2018-04-18 Thread kurt greaves
A new node always generates more tokens. A replaced node using replace_address[_on_first_boot] will reclaim the tokens of the node it's replacing. Simply removing and adding back a new node without replace address will end up with the new node having different tokens, which would mean data loss in