Adding a New Node

2017-10-24 Thread shalom sagges
Hi Everyone, I have 2 DCs (v2.0.14) with the following topology.properties: DC1: xxx11=DC1:RAC1 xxx12=DC1:RAC1 xxx13=DC1:RAC1 xxx14=DC1:RAC1 xxx15=DC1:RAC1 DC2: yyy11=DC2:RAC1 yyy12=DC2:RAC1 yyy13=DC2:RAC1 yyy14=DC2:RAC1 yyy15=DC2:RAC1 # default for unknown nodes default=DC1:RAC1 Now let's

Re: Adding a New Node

2017-10-24 Thread kurt greaves
Your node shouldn't show up in DC1 in nodetool status from the other nodes, this implies a configuration problem. Sounds like you haven't added the new node to all the existing nodes cassandra-topology.properties file. You don't need to do a rolling restart with PropertyFileSnitch, it should

Re: Golang + Cassandra + Text Search

2017-10-24 Thread DuyHai Doan
There is already a full text search index in Cassandra called SASI On Tue, Oct 24, 2017 at 6:50 AM, Ridley Submission < ridley.submission2...@gmail.com> wrote: > Hi, > > Quick question, I am wondering if anyone here who works with Go has > specific recommendations for as simple framework to add

Re: cassandra non-super user login fails but super user works

2017-10-24 Thread Sam Tunnicliffe
Which version of Cassandra are you running? My guess is that you're on a version >= 2.2 and that you've created the non-superuser since upgrading, but haven't yet removed the legacy tables from the system_auth keyspace. If that's the case, then the new user will be present in the new tables, but

can repair and bootstrap run simultaneously

2017-10-24 Thread Peng Xiao
Hi there, Can we add a new node (bootstrap) and run repair on another DC in the cluster or even run repair in the same DC? Thanks, Peng Xiao

Re: Adding a New Node

2017-10-24 Thread shalom sagges
Thanks Kurt! That sorted things in my head. Much appreciated! On Tue, Oct 24, 2017 at 12:29 PM, kurt greaves wrote: > Your node shouldn't show up in DC1 in nodetool status from the other > nodes, this implies a configuration problem. Sounds like you haven't added > the

RE: Request for Advice about Cassandra on Bitnami AWS

2017-10-24 Thread Lutaya Shafiq Holmes
Greetings Iam new to Cassandra - after having gone through the book- Cassandra- The Definitive Guide, by Eben Hewitt, I installed Cassandra on AWS EC2, using AMI Bitnami on Amazon Web Services, I successfully connected to the EC2 Ubuntu Instance and created Key Spaces and input some tables and

Re: Cassandra 3.10 Bootstrap- Error

2017-10-24 Thread Dipan Shah
Hi Anumod, I faced the same issue with 3.11 and I'll suggest you first go through this link to check if the new node is able to communicate back on forth on the required port with the seed node.

Re: Golang + Cassandra + Text Search

2017-10-24 Thread Jon Haddad
When someone talks about full text search, I usually assume there’s more required than keyword search, ie simple tokenization and a little stemming. * Term Vectors, common used for a “more like this feature” * Ranking of search results * Facets * More complex tokenization like trigrams So

Re: Golang + Cassandra + Text Search

2017-10-24 Thread Who Dadddy
Ridley - have a look at Elassandra https://github.com/strapdata/elassandra > On 24 Oct 2017, at 06:50, Ridley Submission > wrote: > > Hi, > > Quick question, I am wondering if anyone here who works with Go has

Re: Cassandra 3.10 Bootstrap- Error

2017-10-24 Thread Anumod Mullachery
Hi All, thanks for all your inputs, appreciate it. the issue resolved , nodes are able to join. Pls find the solution I applied, : Enable 256 bit encryption a : Copy the jce_policy-8.zip from .. to all nodes. b : Unzip jce_policy-8.zip, c : Copy local_policy.jar and

Re: Best approach to prepare to shutdown a cassandra node

2017-10-24 Thread Javier Canillas
So, just to clarify.. a good approach to shutdown an instance of cassandra should be: *# Drain all information from commitlog into sstables* *bin/nodetool stopdaemon* *cassandra_pid=`ps -ef|grep "java.*apache-cassandra"|grep -v "grep"|awk '{print $2}'`* *if [ "$?" -ne 0 ]; then* *echo

Index summary redistribution seems to block all compactions

2017-10-24 Thread Sotirios Delimanolis
On a Cassandra 2.2.11 cluster, I noticed estimated compactions accumulating on one node. nodetool compactionstats showed the following:                 compaction type    keyspace         table   completed        total    unit   progress                     Compaction         ks1    some_table   

RE: [EXTERNAL]

2017-10-24 Thread Mohapatra, Kishore
Hi Vedant, I was actually referring to command line select query with Consistency level=ALL . This will force a read repair in the background. But as I can see, you have tried with consistency level = one and and it is still timing out. SO what error you see in the

Re: [EXTERNAL] Lot of hints piling up

2017-10-24 Thread Jai Bheemsen Rao Dhanwada
No OOM or HEAP errors On Tue, Oct 24, 2017 at 2:51 PM, Mohapatra, Kishore < kishore.mohapa...@nuance.com> wrote: > Check how many sstables are there for the table you are having issues with. > > You might be having the Heap pressure. Check your system.log for any OOM > error or HEAP error. > > >

RE: [EXTERNAL] Lot of hints piling up

2017-10-24 Thread Mohapatra, Kishore
Check how many sstables are there for the table you are having issues with. You might be having the Heap pressure. Check your system.log for any OOM error or HEAP error. Thanks Kishore Mohapatra Principal Operations DBA Seattle, WA Email :

Re: Golang + Cassandra + Text Search

2017-10-24 Thread Justin Cameron
https://github.com/Stratio/cassandra-lucene-index is another option - it plugs a full Lucene engine into Cassandra's custom secondary index interface. If you only need text prefix/postfix/substring matching or basic tokenization there is SASI. On Wed, 25 Oct 2017 at 03:50 Who Dadddy