Re: Timestamp of Last Repair

2018-12-18 Thread Fred Habash
Much appreciated. - Thank you. > On Dec 11, 2018, at 10:40 PM, Laxmikant Upadhyay > wrote: > > Below info may be helpful for you : > > 1. In System.log logs (grep for below pattern) > > RepairSession.java (line 244) [repair #2e7009b0-c03d-11e4-9012-99a64119c9d8] > new session: > Repa

Re: TWCS sstables gets merged following node removal

2018-12-18 Thread Jeff Jirsa
The read repair you have disabled is the probabilistic background repair - foreground repair due to mismatch still happens Streaming should respect windows. Streaming doesn’t write to the memtable, only the write path puts data into the memtable. -- Jeff Jirsa > On Dec 18, 2018, at 1:49 AM,

Re: Cassandra Integrated Auth for JMX

2018-12-18 Thread Cyril Scetbon
So it seems we can use jaas with Jolokia as we can do with JMX. Has anyone set it up ? I tried adding authMode=jaas to the Jolokia agent’s configuration in jvm.options and at the end I get the following set of options : -javaagent:/usr/local/share/jolokia-agent.jar=host=0.0.0.0,executor=fixed,

Re: TWCS sstables gets merged following node removal

2018-12-18 Thread Roy Burstein
read repair is disabled in this table : CREATE TABLE gil_test.my_test ( id int, creation_time timestamp, ... AND crc_check_chance = 1.0 AND dclocal_read_repair_chance = 0.0 AND default_time_to_live = 0 AND gc_grace_seconds = 3600 AND max_index_interval = 2048 AND me