Re: upgrading 2.1.x cluster with ec2multiregionsnitch system.peers "corruption"

2019-03-28 Thread Oleksandr Shulgin
On Wed, Mar 27, 2019 at 6:36 PM Carl Mueller wrote: > > EIPs per the aws experts cost money, > >From what I know they only cost you when you're not using them. This page shows that you are also charged if you remap them too often (more then 100 times a month), this I didn't realize: https://aws

Five Questions for Cassandra Users

2019-03-28 Thread Kenneth Brotman
I'm looking to get a better feel for how people use Cassandra in practice. I thought others would benefit as well so may I ask you the following five questions: 1. Do the same people where you work operate the cluster and write the code to develop the application? 2. Do you have

Re: Five Questions for Cassandra Users

2019-03-28 Thread Abhishek Singh
1. Do the same people where you work operate the cluster and write the code to develop the application? Different teams. Infra separate , Dev separate. 2. Do you have a metrics stack that allows you to see graphs of various metrics with all the nodes displayed together?

Re: Five Questions for Cassandra Users

2019-03-28 Thread Jürgen Albersdorfer
1. Do the same people where you work operate the cluster and write the code to develop the application? yes 2. Do you have a metrics stack that allows you to see graphs of various metrics with all the nodes displayed together? no 3. Do you have a log stack that allows you to

Best practices while designing backup storage system for big Cassandra cluster

2019-03-28 Thread manish khandelwal
Hi I would like to know is there any guideline for selecting storage device (disk type) for Cassandra backups. As per my current observation, NearLine (NL) disk on SAN slows down significantly while copying backup files (taking full backup) from all node simultaneously. Will using SSD disk o

Re: Five Questions for Cassandra Users

2019-03-28 Thread Tom van der Woerdt
1. Do the same people where you work operate the cluster and write the code to develop the application? No, we have a small infrastructure team, and many people developing applications using Cassandra 2. Do you have a metrics stack that allows you to see graphs of various metrics with

Re: Five Questions for Cassandra Users

2019-03-28 Thread Elliott Sims
1. Do the same people where you work operate the cluster and write the code to develop the application? Mostly. Ops vs dev, although there's some overlap 2. Do you have a metrics stack that allows you to see graphs of various metrics with all the nodes displayed together? Yes, Prom

Re: Five Questions for Cassandra Users

2019-03-28 Thread Jonathan Koppenhofer
1. PaaS model. We have a team responsible for the deployment and self-service tooling, as well as SME for both development and Cassandra operations. End users consume the service, and are responsible for app development and operations. Larger apps have separate teams for this, smaller apps have a s

Re: Five Questions for Cassandra Users

2019-03-28 Thread Jonathan Koppenhofer
I think it would also be interesting to hear how people are handling automation (which to me is different than AI) and config management. For us it is a combo of custom Java workflows and Saltstack. On Thu, Mar 28, 2019, 5:03 AM Kenneth Brotman wrote: > I’m looking to get a better feel for how

RE: Five Questions for Cassandra Users

2019-03-28 Thread Kenneth Brotman
Yes, absolutely! From: Jonathan Koppenhofer [mailto:j...@koppedomain.com] Sent: Thursday, March 28, 2019 1:18 PM To: user@cassandra.apache.org Subject: Re: Five Questions for Cassandra Users I think it would also be interesting to hear how people are handling automation (which to me is di

Cassandra Possible read/write race condition in LOCAL_ONE?

2019-03-28 Thread Richard Xin
Hi, Our Cassandra Consistency level is currently set to LOCAL_ONE, we have script doing followings 1) insert one record into table_A  2) select last_inserted_record from table_A and do something ... step #1 & 2 are running sequentially without pause,  and I assume 1 & 2 suppose to run in same DC

Re: Cassandra Possible read/write race condition in LOCAL_ONE?

2019-03-28 Thread Jeff Jirsa
Yes it can race; if you don't want to race, you'd want to use SERIAL or LOCAL_SERIAL. On Thu, Mar 28, 2019 at 3:04 PM Richard Xin wrote: > Hi, > Our Cassandra Consistency level is currently set to LOCAL_ONE, we have > script doing followings > 1) insert one record into table_A > 2) select last_i

Re: Cassandra Possible read/write race condition in LOCAL_ONE?

2019-03-28 Thread Jon Haddad
I'm reading the OP as doing this from a single server, if that's the case QUORUM / LOCAL_QUORUM will work. On Thu, Mar 28, 2019 at 3:29 PM Jeff Jirsa wrote: > > Yes it can race; if you don't want to race, you'd want to use SERIAL or > LOCAL_SERIAL. > > On Thu, Mar 28, 2019 at 3:04 PM Richard Xin