Re: TWCS sstables gets merged following node removal

2018-12-16 Thread Roy Burstein
hey jeff, attaching more information. so this the situation before - 3 nodes in the cluster (3.11.3 in this case but i saw same thing in 2.1 and 3.0), there is a script writing one row every minute and another script doing nodetool flush every 10 minute. window is defined as two hours, so after a f

Re: Cassandra Integrated Auth for JMX

2018-12-16 Thread Cyril Scetbon
Good catch Jonathan, I forgot that layer between me and JMX… So I need to add the authentication at Jolokia’s level and not JMX. Thank you ! — Cyril Scetbon > On Dec 16, 2018, at 12:50 PM, Jonathan Haddad wrote: > > Jolokia is running as an agent, which means it runs in process and has access

Re: Cassandra Integrated Auth for JMX

2018-12-16 Thread Jonathan Haddad
Jolokia is running as an agent, which means it runs in process and has access to everything within the JVM. JMX credentials are supplies to the JMX server, which Jolokia is bypassing. You'll need to read up on Jolokia's security if you want to keep using it: https://jolokia.org/reference/html/sec

Cassandra Integrated Auth for JMX

2018-12-16 Thread Cyril Scetbon
Hey guys, I’ve followed https://docs.datastax.com/en/cassandra/3.0/cassandra/configuration/secureJmxAuthentication.html to setup JMX with Cassandra’s internal auth using Cassandra 3.11.3 However