Re: which driver to use with cassandra 3

2018-07-20 Thread Patrick McFadin
Vitaliy, The DataStax Java driver is very actively maintained by a good size team and a lot of great community contributors. It's version 3.x compatible and even has some 4.x features starting to creep in. Support for virtual tables (https://issues.apache.org/jira/browse/CASSANDRA-7622) was just

Re: which driver to use with cassandra 3

2018-07-20 Thread Andy Tolbert
Hi Vitaliy, Spring uses driver from datastax, though is it a reliable solution for > a long term project, having in mind that datastax and cassandra > parted? > I would definitely consider the DataStax drivers a reliable solution going forward. We remain very committed to supporting our C*

Re: which driver to use with cassandra 3

2018-07-20 Thread Vitaliy Semochkin
Thank you very much Duy Hai Doan! I have relatively simple demands and since spring using datastax driver I can always get back to it, though I would prefer to use spring in order to do bootstrapping and resource management for me. On Fri, Jul 20, 2018 at 4:51 PM DuyHai Doan wrote: > > Spring

Re: how to make cassandra listen not on 127.0.0.1 on 9042

2018-07-20 Thread Vitaliy Semochkin
Thank you very much for fast response Riccardo! Setting rpc_interface to eth0 did the trick and now listen interface works on eth0 as was specified. PS I wonder is it a bug or a feature? E.g. I don't want to expose thrift rpc because all clients work via CQL, why should I keep it exposed in order

Re: which driver to use with cassandra 3

2018-07-20 Thread Joseph Arriola
Hi Vitaly! You can check https://docs.datastax.com/en/developer/driver-matrix/doc/common/driverMatrix.html 2018-07-20 7:36 GMT-06:00 Vitaliy Semochkin : > Hi, > > Which driver to use with cassandra 3 > > the one that is provided by datastax, netflix or something else. > > Spring uses driver

Re: Timeout for only one keyspace in cluster

2018-07-20 Thread learner dba
Anybody has any ideas about this? This is happening in production and we really need to fix it. On Thursday, July 19, 2018, 10:41:59 AM CDT, learner dba wrote: Our foreignid is unique idetifier and we did check for wide partitions; cfhistorgrams show all partitions are evenly sized:

Re: which driver to use with cassandra 3

2018-07-20 Thread DuyHai Doan
Spring data cassandra is so so ... It has less features (at last at the time I looked at it) than the default Java driver For driver, right now most of people are using Datastax's ones On Fri, Jul 20, 2018 at 3:36 PM, Vitaliy Semochkin wrote: > Hi, > > Which driver to use with cassandra 3 > >

which driver to use with cassandra 3

2018-07-20 Thread Vitaliy Semochkin
Hi, Which driver to use with cassandra 3 the one that is provided by datastax, netflix or something else. Spring uses driver from datastax, though is it a reliable solution for a long term project, having in mind that datastax and cassandra parted? Regards, Vitaliy

Re: how to make cassandra listen not on 127.0.0.1 on 9042

2018-07-20 Thread Riccardo Ferrari
Hi, Have a look at the rcp_address description http://cassandra.apache.org/doc/latest/configuration/cassandra_config_file.html?highlight=rpc_address#rpc-address. what does your hostname resolves to? Best, On Fri, Jul 20, 2018 at 3:09 PM, Vitaliy Semochkin wrote: > Hi > > I'm building a

how to make cassandra listen not on 127.0.0.1 on 9042

2018-07-20 Thread Vitaliy Semochkin
Hi I'm building a cluster of cassandra RHEL 7 using cassandra 3.11.2 rpm I want cassandra to listen on 9042 on eth0 however no matter what I do, it listens on 127.0.0.1 I tried to specify listen_address instead but it doesn't work too. What am I missing? How to make cassandra listen on 9042