Riak search, post schema change reindexation

2016-08-29 Thread Guillaume Boddaert
Hi, I recently needed to alter my Riak Search schema for a bucket type that contains ~30 millions rows. As a result, my index was wiped since we are waiting for a Riak Search 2.2 feature that will sync Riak storage with Solr index on such an occasion. I adapted a since script suggested by Ev

Re: Riak search, post schema change reindexation

2016-08-29 Thread Fred Dushin
Hi Guillame, A few questions. What version of Riak? Does the reindexing need to occur across the entire cluster, or just on one node? What are the expectations about query-ability while re-indexing is going on? If you can afford to take a node out of commission for query, then one approach w

Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-29 Thread Luke Bakken
Kyle - What is the output of these commands? riak-admin security print-users riak-admin security print-sources http://docs.basho.com/riak/kv/2.1.4/using/security/basics/#user-management Please note that setting up certificate authentication *requires* that you have set up SSL / TLS in Riak as w

Re: [ANN] Riak TS v1.4 is released

2016-08-29 Thread Eric Johnson
Hey Chris, thanks for the heads up. We’re looking into issues #2 and #4, but we went ahead and fixed #1 and #3 here . Let us know if anything else comes up! On Fri, Aug 26, 2016 at 2:03 PM, wrote: > We ran this rolling upgrade yesterday and

Re: Riak search, post schema change reindexation

2016-08-29 Thread Guillaume Boddaert
Hi Fred, thanks for your answer. I'm using Riak 2.1 see attached status export. I'm working on a single cluster, and need to update from time to time the some search index on all nodes. As a cloud user, I can consider buying a spare host for a few days in order to achieve a complete rollout.

RE: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-29 Thread Nguyen, Kyle
Thanks a lot, Luke! I finally got the mutual certificate based authentication working by setting check_clr = off since I don't see any documentation on how to set this up and we might not need this feature. Another thing that I added to make it work is to add the correct entry for cidr. I was us

Re: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-29 Thread Luke Bakken
Hi Kyle - Thanks for the info. Just so you know, setting check_clr = off means that Riak will not validate the signing chain of your client certificate. What value are you using for "CN=" for the certificates pointed to by the various "ssl.*" settings in riak.conf? http://docs.basho.com/riak/kv/

RE: Need help with Riak-KV (2.1.4) certificate based authentication using Java client

2016-08-29 Thread Nguyen, Kyle
Hi Luke, The CN for client's certificate is "kyle" and the CN for riak cert (ssl.certfile) is "riak@127.0.0.1" which matches the nodename in the riak.conf. Riak ssl.cacertfile.pem contains the same CA (getACert) which I used to sign both client and riak public keys. It appears that riak also va