Re: Riak Character Encoding

2015-11-25 Thread Daniel Abrahamsson
Hi Fasil. Riak stores data as binary blobs. It does not consider encodings at all. That way "riak supports data in any language". //Daniel On Thu, Nov 26, 2015 at 7:15 AM, Fasil K wrote: > Hello, > > I have small doubt regarding the riak character encoding. > > Do we have to configure anything

Riak Character Encoding

2015-11-25 Thread Fasil K
Hello, I have small doubt regarding the riak character encoding. Do we have to configure anything so that riak supports data in any language (for eg: french,chinese etc) ? Thanks in advance With Regards, Fasil K ___ riak-users mailing list riak-user

LucidWorks Banana Integration

2015-11-25 Thread Mark Schmidt
Has anyone successfully integrated Banana with the Riak 2.0 Solr implementation? Regards, - Mark Schmidt ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

Re: Unable to create anonymous user

2015-11-25 Thread Ben Rudolph
Thanks Dmitri, appreciate the effort. You might have a point there. I think it indeed does have to do with our Nginx configuration. Stanchion is communicating with nginx as a proxy to our riak nodes. I just tested out pointing stanchion directly to one of our Riak nodes and the admin user creation

Re: Unable to create anonymous user

2015-11-25 Thread Ben Rudolph
Thanks for the response Dmitri. Just double checked all those settings 1) I checked with stanchion ping and i'm also able to telnet into the stanchion_host from the riak node 2)Double checked and it shows up in the logs: <0.142.0>@riak_cs_config:warnings:120 `anonymous_user_creation` is set as tru

Re: Memory Errors when using RiakCS

2015-11-25 Thread Ben Rudolph
Thanks Kota, this is a great resource. On Wed, Nov 25, 2015 at 4:24 AM, Kota Uenishi wrote: > Hi Ben, > The memory size of your nodes looks rather small. I wrote a section > for such environment to design right configurations. Hope you could > take a look. > > > https://github.com/basho/riak_cs/

Re: Unable to create anonymous user

2015-11-25 Thread Shawn Debnath
I have had issues where passing the POST body via —data didn’t work. # Create credentials curl -v --retry 5 --retry-delay 5 -XPOST "http://127.0.0.1:8080/riak-cs/user"; \ -H "Content-Type: application/json" \ --data '{"email”:”f...@bar.com", "name”:"foobar”}' Another way I have tried to

Re: Unable to create anonymous user

2015-11-25 Thread Dmitri Zagidulin
Ben, Not sure what to advise. Your configs look ok. I just downloaded a fresh copy of Riak CS 2.0.1, Stanchion, and a fresh Riak 2. I set up the configs just as you have (changing only the paths in advanced.config to match my machine). Cutting and pasting your curl line seems to result in correct

RE: Solr Results Grouping using RiakSearchRequest

2015-11-25 Thread Dennis Nicolay
Hi, Just to clarify what I'm trying to accomplish. I'm trying to translate the http solr query into using RiakSearchRequest/RiakFluentSearch. I've gotten this far but I cannot figure out how to do grouping in solr using .net: using (var cluster = RiakCluster.FromConfig("riakConfig"))

Re: Unable to create anonymous user

2015-11-25 Thread Dmitri Zagidulin
Hi Ben, Just to double-check: 1) is Stanchion installed and running, when you try to create the user? (and the stanchion_host entry is pointing to it, in cs config?) 2) is anonymous_user_creation = on in the config file? 3) do you have 'buckets.default.allow_mult = true' in the Riak config file?

Unable to create anonymous user

2015-11-25 Thread Ben Rudolph
Hi, I've almost completed the cluster setup but am running into issues with anonymous user creation. All machines ping/pong and their IPs are matching. When I run the curl command to create an anonymous user: curl -H 'Content-Type: application/json' -XPOST http://**:8080/riak-cs/user --data '{"em

Re: Riak CS/Stanchion troubleshooting (Retrieval of user record)

2015-11-25 Thread Kazuhiro Suzuki
Hi, > I think that I need to extend my Riak cluster with more nodes to increase > performance. It can be a simple solution if your cluster just faced over capacity on most/all nodes. However, it would be better to make sure a fact by reading logs, and monitoring system resources. > I think that

Re: How to control max RAM size of a Solr process?

2015-11-25 Thread mtakahashi-ivi
>> Which is used for memory mapped file, I think. > No, that's wrong. Ignore it. That was correct. If I use solr.NRTCachingDirectoryFactory, FSDirectory picks MMapDirectory, which uses mmap for 64bit JRE. https://github.com/apache/lucene-solr/blob/b9a5b54b5d11d7ef2fb8289d3dec484be6bd74a0/lucene/c

Re: Memory Errors when using RiakCS

2015-11-25 Thread Kota Uenishi
Hi Ben, The memory size of your nodes looks rather small. I wrote a section for such environment to design right configurations. Hope you could take a look. https://github.com/basho/riak_cs/blob/develop/RELEASE-NOTES.md#upgrading-riak---step-3-review-memory-size On Tue, Nov 24, 2015 at 3:30 AM, B