forked from basho/riak_core
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
343 additions
and
1,452 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,32 @@ | ||
{application,riak_core, | ||
[{description,"Riak Core Lite"}, | ||
{application, riak_core, | ||
[{description, "Riak Core Lite"}, | ||
{vsn,"0.10.1"}, | ||
{applications, | ||
[kernel,stdlib,crypto,os_mon,poolboy] | ||
[kernel, stdlib, crypto, os_mon, poolboy] | ||
}, | ||
{mod,{riak_core_app,[]}}, | ||
{mod, {riak_core_app, []}}, | ||
{env, | ||
[{cluster_name,"default"}, | ||
{platform_data_dir,"data"}, | ||
{ring_state_dir,"data/ring"}, | ||
{ring_creation_size,64}, | ||
[{cluster_name, "default"}, | ||
{platform_data_dir, "data"}, | ||
{ring_state_dir, "data/ring"}, | ||
{ring_creation_size, 64}, | ||
{gossip_interval, 60000}, | ||
{target_n_val,4}, | ||
{target_n_val, 4}, | ||
{vnode_inactivity_timeout, 60000}, | ||
{vnode_check_interval, 5000}, | ||
{vnode_overload_threshold, 10000}, | ||
{vnode_modules, []}, | ||
{vnode_routing, proxy}, | ||
{handoff_concurrency,2}, | ||
{handoff_concurrency, 2}, | ||
{handoff_receive_timeout, 300000}, % 5 minutes TCP timeout | ||
{handoff_receive_vnode_timeout, 60000}, % timeout for vnode to process the hand-off data msg | ||
{default_bucket_props, []}, | ||
{handoff_port,8099}, | ||
{handoff_ip,"0.0.0.0"}, | ||
{bucket_fixups, []}, | ||
{bucket_validators, []}, | ||
{handoff_port, 8099}, | ||
{handoff_ip, "0.0.0.0"}, | ||
{stat_mods, []}, | ||
{health_checks, []} | ||
]}, | ||
{pkg_name,"riak_core_lite"}, | ||
{maintainers,["riak_core_lite","Albert Schimpf"]}, | ||
{licenses,["Apache"]}, | ||
{links,[{"Github","https://github.com/riak-core-lite/riak_core_lite"}]} | ||
{pkg_name, "riak_core_lite"}, | ||
{maintainers, ["riak_core_lite", "Albert Schimpf"]}, | ||
{licenses, ["Apache"]}, | ||
{links, [{"Github", "https://github.com/riak-core-lite/riak_core_lite"}]} | ||
]}. |
Oops, something went wrong.