Riak on the cloud.

2011-01-10 Thread Jonah Crawford
Next week we'll be deploying a beta commercial app that uses Riak. We're making some choices regarding cloud providers and I wanted to get some feedback and observations from the community regarding use of Riak on virtualized clusters in general. Info specific to providers might be best to send

Maximum # of Buckets ?

2010-12-01 Thread Jonah Crawford
Mongo's current distribution has a maximum number of namespaces - I think it's around 20,000. Does riak have a problem with say a quarter-million bucket namespaces ? Would make my queries much simpler. Jonah ___ riak-users mailing list riak-users@lis

Creating/Accessing nested buckets - python client

2010-11-29 Thread Jonah Crawford
Hi all, The python client tests show only the creation of a bucket at the first uri namespace beyond riak http://127.0.0.1:8091/riak/myspecialbucket I'm looking to do something like this: http://127.0.0.1:8091/riak/myclientbucket/irs/filings/10K/2010/Q1/ Would like to know how to create neste

Re: Error installing riak from source on OS X

2010-11-27 Thread Jonah Crawford
Nov 27, 2010, at 10:16 AM, Jeremiah Peschka wrote: > > > Did you pull down the riak sources by cloning the github repo or did you > > just download from somewhere? > > > > Jeremiah Peschka > > SQL Server MVP > > MCITP: Database Developer, DBA > > 614.51

Error installing riak from source on OS X

2010-11-26 Thread Jonah Crawford
Hi I've been able to get riak funning using brew but getting some glitches with client code so I decided to install from source to see if it helps any. Here is the error I'm getting: abort: There is no Mercurial repository here (.hg not found) ./rebar get-deps Uncaught error in rebar_core: {'EXI

Python client issue

2010-11-06 Thread Jonah Crawford
My calls to riak using the python client are taking upwards of 8-9 seconds to return. Obviously this is some form of error even though the calls still run/work. I've isolated what I think is the problem (creating the client) This code takes 7 seconds to return on an dual core mac - http://cod

Re: Python client issue - hanging on obj.store()

2010-10-23 Thread Jonah Crawford
Disregard. I reinstalled the python client from source and that solved the issue. ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

Python client issue - hanging on obj.store()

2010-10-23 Thread Jonah Crawford
I'm using the following code in the python interpreter to make a few tests of the python client: >>> import riak >>> client = riak.RiakClient('127.0.0.1', 8098) >>> mybucket = client.bucket('mybucket') >>> obj = mybucket.new('myobject') >>> obj.set_data({ 'foo': 1, 'bar': 2}) >>> obj.store() I