Re: Riak Recap for July 20 - 24

2011-07-25 Thread Jeremiah Peschka
Rusty did an excellent job today at OSCON. He's on the OSCON Data track, so he's not visible on the main OSCON whatnot. --- Jeremiah Peschka Founder, Brent Ozar PLF, LLC On Jul 25, 2011, at 7:15 PM, Kev Burns wrote: > Is Rusty ready to spill the beans on secondary indexes at OSCON this week? >

Re: Riak Recap for July 20 - 24

2011-07-25 Thread Kev Burns
Is Rusty ready to spill the beans on secondary indexes at OSCON this week? I don't see him on the speaker list http://www.oscon.com/oscon2011/public/schedule/speakers - Kev c: +001 (650) 521-7791 On Mon, Jul 25, 2011 at 4:56 PM, Mark Phillips wrote: > Evening, Morning, Afternoon to All - > >

Re: Riak Recap for July 20 - 24

2011-07-25 Thread OJ Reeves
> > 1) OJ Reeves (@thecolonial) and Jeremiah Peschka (@peschkaj) released > a .NET client for Riak yesterday called "CorrugatedIron". In short, > this library is awesome. > > * Project site ---> http://corrugatediron.org/ > * Repo on GitHub ---> > https://github.com/DistributedNonsense/CorrugatedIr

Riak Recap for July 20 - 24

2011-07-25 Thread Mark Phillips
Evening, Morning, Afternoon to All - This Recap is coming to you live from OSCON. We've got videos, blog posts, new code, and more. Enjoy. Mark Community Manager Basho Technologies wiki.basho.com twitter.com/pharkmillups Riak Recap for July 20 - 24

Connection Pool with Erlang PB Client Necessary?

2011-07-25 Thread Andrew Berman
I know that this subject has been brought up before, but I'm still wondering what the value of a connection pool is with Riak. In my app, I'm using Webmachine resources to talk to a gen_server which in turn talks to Riak. So, in other words, the Webmachine resources never talk to Riak directly, t

Re: Reduce phase behavior clarification

2011-07-25 Thread siculars
And wouldn't the concatenation be [1,2,3,3,4,5] ? -alexander Sent from my Verizon Wireless BlackBerry -Original Message- From: Bob Ippolito Sender: riak-users-boun...@lists.basho.com Date: Mon, 25 Jul 2011 15:13:36 To: Brian Rowe Cc: riak-users Subject: Re: Reduce phase behavior clarif

Re: Reduce phase behavior clarification

2011-07-25 Thread Bob Ippolito
It sounds like there is a typo, I would assume that it should be "the input of later evaluations will include the output of earlier evaluations". It's not really a reduction otherwise. On Mon, Jul 25, 2011 at 3:03 PM, Brian Rowe wrote: > Hello, > > I see the following on the Basho wiki for Riak [

Reduce phase behavior clarification

2011-07-25 Thread Brian Rowe
Hello, I see the following on the Basho wiki for Riak [1]: The important thing to understand is that the function defining the reduce phase may be evaluated multiple times, and the input of later evaluations will include the input of earlier evaluations. For example, a reduce phase may implem

Re: How to add Riak Search index to DB from Erlang?

2011-07-25 Thread Dan Reverri
On Mon, Jul 25, 2011 at 7:43 AM, Dimitry D wrote: > Hello. > > I have quite simple questions, but I cannot find answers: > > 1. How to add to existing bucket Riak Search index? As far as I understood > "/search-cmd install " only adds pre-commit hooks and do not create > index for existing data.

How to add Riak Search index to DB from Erlang?

2011-07-25 Thread Dimitry D
Hello. I have quite simple questions, but I cannot find answers: 1. How to add to existing bucket Riak Search index? As far as I understood "/search-cmd install " only adds pre-commit hooks and do not create index for existing data. 2. How to add pre-commit hook (I am interested in Riak Search h

Re: riak-ql

2011-07-25 Thread francisco treacy
It's awesome for ad-hoc querying, at least. An example can better explain. Consider this: db.add('users').map('query', '.address .street where .weight:expr(x<180), .exempt && .acl .state:val("1101") && !.expired').run() as opposed to: db.add('users').map(function(v) { v = Riak.mapValuesJson(v

Scan through Keys?

2011-07-25 Thread Maria Neise
Hey, I am writing an application with the Java Client. I would like to implement a scan through a various numbers of keys. I already figured out two ways to do that. Using Links ( I don't have any) and using the listKey-Method on a bucket to get all the keys, which is very expensive. So I wondered