RE: erlang client

2011-01-07 Thread Qvin .
That was it. Thank you so much. Subject: Re: erlang client From: j...@jbrisbin.com Date: Fri, 7 Jan 2011 20:24:35 -0600 CC: riak-users@lists.basho.com To: qvin@msn.com Looks like you're trying to connect to the HTTP port using the Protobuff client. 2> {ok, Pid}=riakc_pb_socket:start_link("

Re: erlang client

2011-01-07 Thread Jon Brisbin
Looks like you're trying to connect to the HTTP port using the Protobuff client. > 2> {ok, Pid}=riakc_pb_socket:start_link("127.0.0.1", 8098). > {ok,<0.35.0>} The examples show: 1> {ok, Pid} = riakc_pb_socket:start_link("127.0.0.1", 8087). Port 8098 is the default port for HTTP. Thanks! Jon

erlang client

2011-01-07 Thread Qvin .
Hi, I am trying to connect to riak using the riak-erlang-client v1.0.2 from https://github.com/basho/riak-erlang-client/ but I've not been successful. I get the error listed below - -- 2> {ok, Pid}=riakc_pb_socket:star

Re: riak-erlang-client

2011-01-07 Thread Anthony Molinaro
On Fri, Jan 07, 2011 at 03:38:45PM -0800, Dan Reverri wrote: > Hi Anthony, > > Would you mind sending a pull request for the documentation updates without > the protobuffs changes? I was trying to figure out how to do that, but it seems to be alluding me, still a bit of a noob with git. I'll tr

Re: riak-erlang-client

2011-01-07 Thread Dan Reverri
Hi Anthony, Would you mind sending a pull request for the documentation updates without the protobuffs changes? Regarding the protobuffs changes, it would be best to apply the changes to a fork of the basho/erlang_protobuffs repository and send a pull request. Regarding the buckets, they should

riak-erlang-client

2011-01-07 Thread Anthony Molinaro
Hi, I recently forked riak-erlang-client to use the mainline erlang_protobuffs (or at least a fork of it). In case any users out there are interested here they are. https://github.com/djnym/riak-erlang-client https://github.com/djnym/erlang_protobuffs So far they work great for me, and allow

Riak Recap for Jan. 5 - 6

2011-01-07 Thread Mark Phillips
Afternoon, Evening, Morning to Everyone - Great Recap for today: Blog posts, updates for riak-js, a Podcast, more code from the prolific Jon Brisbin, some good content from #riak, and much more. Enjoy, Mark Community Manager Basho Technologies wiki.basho.com twitter.com/pharkmillups Riak

Re: PDF or OpenOffice Impresse presentations instead of .KEY + Windows question

2011-01-07 Thread Kyle Quest
The way Erjang is designed goes against some of the core concepts behind Erlang. For example, Erjang shares messages instead of doing a full copy like it's done in Erlang (at least, that's how it worked the last time I checked Erjang). I trust the native Erlang VM a bit more when it comes to stabil

Re: PDF or OpenOffice Impresse presentations instead of .KEY + Windows question

2011-01-07 Thread Timothy Perrett
Hey, During JavaZone last year I spoke with Kresten about Erjang, and he claimed that despite the native code that many Erlang projects use, he was still seeing success using it (the details escape me now) and even did a live benchmark of it outperforming the BeamVM. Crazy stuff indeed. But e

Re: Riak and Mahout Investigation

2011-01-07 Thread Dan Reverri
On Wed, Jan 5, 2011 at 11:47 AM, Lenley Woodard wrote: > We are exploring a Java bridge from Riak to Mahout. > I have a few questions at this point: > 1.) How is parallelization done in Riak? > MapReduce: https://wiki.basho.com/MapReduce.html#An-Introduction-to-MapReduce > 2.) What internal mech

Re: PDF or OpenOffice Impresse presentations instead of .KEY + Windows question

2011-01-07 Thread Kyle Quest
The build process for Riak on Windows is not yet streamlined because of the spidermonkey JS libraries for the erlang_js component that need to be built separately using a different build setup. The C code for the bitcask component required quite a few changes to the file I/O code, so it's still not

Re: PDF or OpenOffice Impresse presentations instead of .KEY + Windows question

2011-01-07 Thread Kyle Quest
Erjang is a nice and fun toy, but it's too much of a hack to be useful for Riak. If you want to use a JVM-based language try Scala and leave Erlang as is :-) One of the main problems with porting Riak to other platforms is not Erlang itself, but the C/C++ code Riak uses through port drivers and NIF

Re: Is there a way to control where data is stored

2011-01-07 Thread Sean Cribbs
The current consistent hashing scheme was chosen because it tends to produce an even (random) spread across the cluster. In general, you should want to avoid hotspots because they will limit availability and concurrency. However, you are free to use a different hashing scheme if you like, as lon

Is there a way to control where data is stored

2011-01-07 Thread Florian Odronitz
Hello, I am new to riak so I might miss something essential. As I understand from (http://wiki.basho.com/Replication.html), the decision about where a piece of data is stored depends on the key (and the ring). Looking at the source code this is defined in chash.erl as: key_of(ObjectName) ->

Re: PDF or OpenOffice Impresse presentations instead of .KEY + Windows question

2011-01-07 Thread Timothy Perrett
Oh interesting :-) In addition, I heard that Riak had also been made to run on Erjang; if that were the case you could in theory already run it on windows via the JVM. Really must find time to try this... Cheers, Tim On 7 Jan 2011, at 07:48, Mark Phillips wrote: > Hey Kyle, > > On Thu, Jan 6