Skip to content

Instantly share code, notes, and snippets.

@macintux
Created August 28, 2013 23:38
Show Gist options
  • Save macintux/6372725 to your computer and use it in GitHub Desktop.
Save macintux/6372725 to your computer and use it in GitHub Desktop.
curl -XPOST http://localhost:8098/mapred
-H"Content-Type: application/json"
-d '{"inputs":"notifications","query":[{"map":{"language":"erlang","source":"fun(O,_,_) when element(1,O) == r_object -> S=byte_size(term_to_binary(riak_object:get_values(O))), if (S>1048576) -> {ok,C}=riak:local_client(),C:delete(riak_object:bucket(O),riak_object:key(O)),[riak_object:key(O)]; true -> [] end;(_,_,_) -> [] end."}}]}'
fun(O,_,_) when element(1,O) == r_object ->
S=byte_size(term_to_binary(riak_object:get_values(O))),
if (S>1048576) ->
{ok,C}=riak:local_client(),
C:delete(riak_object:bucket(O),riak_object:key(O)),
[riak_object:key(O)];
true -> []
end;
(_,_,_) -> []
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment