Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone have example code for mapreduce for Riak that can be run on a single Riak node.

share|improve this question
gimme-teh-code. homework? – Yossarian Jan 23 '10 at 11:42
Dobre den . Jak se mas? (the only czech i remember from when I lived near Olomouc). I did research this, but there are no working examples on the web. – Zubair Jan 23 '10 at 12:58

2 Answers

up vote 3 down vote accepted
cd ~/riak
erl -name zed@127.0.0.1 -setcookie riak -pa apps/riak/ebin

In the shell:

# connect to the server
> {ok, Client} = riak:client_connect('riak@127.0.0.1').
{ok,{riak_client,'riak@127.0.0.1',<<6,201,208,64>>}}

# create and insert objects
> Client:put(riak_object:new(<<"groceries">>, <<"mine">>, ["eggs", "bacons"]), 1).
ok
> Client:put(riak_object:new(<<"groceries">>, <<"yours">>, ["eggs", "sausages"]), 1).
ok

# create Map and Reduce functions
> Count = fun(G, 'undefined', 'none') ->
            [dict:from_list([{I, 1} || I <- riak_object:get_value(G)])]
          end.
#Fun<erl_eval.18.105910772>
> Merge = fun(Gcounts, 'none') ->
            [lists:foldl(fun(G, Acc) ->
                           dict:merge(fun(_, X, Y) -> X+Y end, G, Acc)
                         end, dict:new(), Gcounts)] 
          end.
#Fun<erl_eval.12.113037538>

# do the map-reduce
> {ok, [R]} = Client:mapred([{<<"groceries">>, <<"mine">>},
                             {<<"groceries">>, <<"yours">>}],
                            [{'map', {'qfun', Count}, 'none', false},
                             {'reduce', {'qfun', Merge}, 'none', true}]).           
{ok,[{dict,...

> dict:to_list(R).
[{"eggs",2},{"susages",1},{"bacons",1}]

For the server I used absolutely default config:

$ hg clone http://hg.basho.com/riak/
$ cd riak
$ ./rebar compile generate
$ cd rel
$ ./riak/bin/riak start
share|improve this answer
Yes and I get several different errors depending on the configuration I use. eg: exception error: no match of right hand side value {error,{badarg,[{ets,match,[nodelocal_ring,{ring,'$1'}]}, {riak_ring_manager,get_my_ring,0}, {riak_mapreduce_fsm,init,1}, {gen_fsm,init_it,6}, {proc_lib,init_p_do_apply,3}]}} : is not very helpful – Zubair Jan 23 '10 at 15:21
What is needed is a step by step guide which actually works. – Zubair Jan 23 '10 at 15:21
Does the Map Reduce example from the manual work for you? If so maybe you could help me and talk me through getting it working? – Zubair Jan 23 '10 at 15:23
The documentation is a bit inconsistent, as in the client examples, bucket and object names are binaries, but in the map-reduce example they use atoms and strings. – Zed Jan 23 '10 at 16:29
2  
Yes, you are right, I replaced the atoms for Strings and my previous code works now. – Zubair Jan 23 '10 at 16:48
show 1 more comment

Here's an example of how to do a MapReduce using JavaScript functions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.