Created
October 18, 2016 15:57
-
-
Save angrycub/6d43e21995b1ebb25247c9e59c5f4eaf to your computer and use it in GitHub Desktop.
This will enable a ring to be created using riak_core_claim_sim. These rings could then be used to bootstrap a cluster without having to do the join steps.
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
RingSize = 32, | |
FirstNodeName = '[email protected]', | |
NewRing = riak_core_claim_sim:run([ | |
{ring, riak_core_ring:fresh(RingSize, FirstNodeName)}, | |
{target_n_val,4}, | |
{wants,{riak_core_claim,wants_claim_v3}}, | |
{choose,{riak_core_claim,choose_claim_v3}}, | |
{cmds, [[ | |
{join, '[email protected]'}, | |
{join, '[email protected]'}, | |
{join, '[email protected]'}, | |
{join, '[email protected]'} | |
]]}, | |
{print,false}, | |
{return_ring, true} | |
]). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment