Re: upgrading from 2.x TWCS to 3.x TWCS

2018-11-04 Thread Oleksandr Shulgin
On Sat, Nov 3, 2018 at 1:13 AM Brian Spindler wrote: > That wasn't horrible at all. After testing, provided all goes well I can > submit this back to the main TWCS repo if you think it's worth it. > > Either way do you mind just reviewing briefly for obvious mistakes? > > >

Re: A quick question on unlogged batch

2018-11-04 Thread wxn...@zjqunshuo.com
Hi Onmstester, Thank you all. Now I understand whether to use batch or asynchronous writes really depends on use case. Till now batch writes work for me in a 8 nodes cluster with over 500 million requests per day. > Did you compare the cluster performance including blocked natives, dropped >

Re: data modeling appointment scheduling

2018-11-04 Thread Jonathan Haddad
t;> 2)The ability to select all appointments by organizer and by date range >> on the start date >> >> 3)The ability to update(date, location, status) of an specific >> appointment. >> >> 4)The ability to delete an specific appointment >> >>

Re: data modeling appointment scheduling

2018-11-04 Thread I PVP
ty to update(date, location, status) of an specific appointment. 4)The ability to delete an specific appointment Note: The bucket column is intended to allow date querying and to help spread data evenly around the cluster. The bucket value is composed by year+month+day sample bucket val

Re: data modeling appointment scheduling

2018-11-04 Thread Jonathan Haddad
delete an specific appointment > > Note: The bucket column is intended to allow date querying and to help > spread data evenly around the cluster. The bucket value is composed by > year+month+day sample bucket value: 20181104 ) > > > CREATE TABLE appointment_by_invitee( >

data modeling appointment scheduling

2018-11-04 Thread I PVP
)The ability to delete an specific appointment Note: The bucket column is intended to allow date querying and to help spread data evenly around the cluster. The bucket value is composed by year+month+day sample bucket value: 20181104 ) CREATE TABLE appointment_by_invitee( objectid timeuuid, organizerid

Re: Nodejs connector high latency

2018-11-04 Thread Andy Tolbert
Hi Tarun, There are a ton of factors that can impact query performance. The cassandra native protocol supports multiple simultaneous requests per connection. Most drivers by default only create one connection to each C* host in the local data center. That being said, that shouldn't be a

Nodejs connector high latency

2018-11-04 Thread Tarun Chabarwal
Hi I used cassandra driver provided by datastax (3.5.0) library in nodejs. I've 5 nodes cluster. I'm writing to a table with quorum. I observed that there is some spike in write. In ~20 writes, 2-5 writes are taking longer(~200ms). I debugged one of the node process with strace and found that