Created
August 28, 2013 23:38
-
-
Save macintux/6372725 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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."}}]}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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