Re: riak_pipe_fitting error

2014-10-26 Thread Christopher Meiklejohn
Hi Oleksiy, What version of Riak are you running? - Chris > On Oct 26, 2014, at 6:20 AM, Oleksiy Krivoshey wrote: > > Thanks! The map/reduce function being executed is > map_get_old_processed_files/3: > > https://gist.github.com/oleksiyk/abdb48ebd4554d3a40e1 > > The request is (in Javascr

Re: riak_pipe_fitting error

2014-10-26 Thread Oleksiy Krivoshey
It is riak_2.0.0-1 running as 5 node cluster on Ubuntu 14.04 On 26 October 2014 10:02, Christopher Meiklejohn < christopher.meiklej...@gmail.com> wrote: > Hi Oleksiy, > > What version of Riak are you running? > > - Chris > > > On Oct 26, 2014, at 6:20 AM, Oleksiy Krivoshey > wrote: > > > > Thank

Riak CS Authorization Problems

2014-10-26 Thread Lukas Welte
Hey folks, I wanted to play around with Riak CS to build up a own S3. The Riak cluster is running perfectly (saving and retrieving data and so on) and also Riak CS seems to be up, cause I was able to create a user.  I then setted this user in the config to be the admin user and configured s3cmd

Re: Riak Search Schema Question

2014-10-26 Thread Andrew Zeneski
Yes right, I was tired when I typed this; stats should be an array: {"id": 1, "stats": [{ "name": "stat1", "value": 1 }, {"name": "stat2", "value": 5}]} {"id": 2, "stats": [{ "name": "stat3", "value": 2 }, {"name": "stat1", "value": 3}]} {"id": 3, "stats": [{ "name": "stat2", "value": 3 }, {"name"

Re: Riak Search Schema Question

2014-10-26 Thread Alexander Sicular
That might happen. Could you rearrange your data to look like Id: ... , stats: { Stat1: [ ... ], Stat2: [ ... ], ... } Then you could do a stats_stat1 > 1 query. It's also more space efficient. Derived vs explicit naming. Stat(N) could even be an array of hashes like [{value:..., dates

Re: Riak Search Schema Question

2014-10-26 Thread Andrew Zeneski
That would be ideal I know, but would require a huge effort and is something I am saving as a last resort. A custom extractor should allow me to massage the value into a more index friendly format before sending to Solr but allowing the value to remain in its current form. I have no experience wit

Re: Riak CS Authorization Problems

2014-10-26 Thread Kota Uenishi
Lucas, Thank you for being interested in Riak CS. > s3cmd ls and retrieving the admin user works fine but I am not able to create a new bucket. That is typical observation when Stanchion is not correctly configured. I'm afraid you didn't put admin key and secret into Stanchion's app.config. Othe