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

Is there anyway to load JS libraries for Riak Mapreduce queries? What built in libraries are available (I don't mean the Basho provided ones, but things like string, math, etc). I would really prefer not to do copy and paste.

share|improve this question

1 Answer

up vote 2 down vote accepted

Yes - if you look in the app.config file for Riak you'll find:

%% js_source_dir should point to a directory containing Javascript
%% source files which will be loaded by Riak when it initializes
%% Javascript VMs.
%{js_source_dir, "/tmp/js_source"},

You can also store JS in Riak itself and use it in your MR queries:

http://wiki.basho.com/MapReduce.html#Map

You'd store a java function in Riak as an object in the bucket "myjs" with the key "mymap" then reference it via

{"map":{"language":"javascript","bucket":"myjs","key":"mymap"}}
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.