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
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
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
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
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
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
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
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