-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adds a check for strong consistency configuration -- warning when
strong consistency is enabled and AAE is disabled (defect basho/riak_kv#959)
- Loading branch information
John Burwell
committed
Jun 10, 2014
1 parent
8e06fd9
commit 7abb29c
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
src/weatherreport/src/riaknostic_check_strong_consistency.erl
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
%% ------------------------------------------------------------------- | ||
%% | ||
%% riaknostic - automated diagnostic tools for Riak | ||
%% | ||
%% Copyright (c) 2011 Basho Technologies, Inc. All Rights Reserved. | ||
%% | ||
%% This file is provided to you under the Apache License, | ||
%% Version 2.0 (the "License"); you may not use this file | ||
%% except in compliance with the License. You may obtain | ||
%% a copy of the License at | ||
%% | ||
%% http://www.apache.org/licenses/LICENSE-2.0 | ||
%% | ||
%% Unless required by applicable law or agreed to in writing, | ||
%% software distributed under the License is distributed on an | ||
%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
%% KIND, either express or implied. See the License for the | ||
%% specific language governing permissions and limitations | ||
%% under the License. | ||
%% | ||
%% ------------------------------------------------------------------- | ||
|
||
%% @doc Diagnostic that checks Riak's current memory usage. If memory | ||
%% usage is high, a warning message will be sent, otherwise only | ||
%% informational messages. | ||
-module(riaknostic_check_strong_consistency). | ||
-behaviour(riaknostic_check). | ||
|
||
-export([description/0, | ||
valid/0, | ||
check/0, | ||
format/1]). | ||
|
||
-spec description() -> string(). | ||
description() -> | ||
"Strong consistency configuration valid". | ||
|
||
-spec valid() -> boolean(). | ||
valid() -> | ||
riaknostic_node:can_connect(). | ||
|
||
-spec check() -> [{lager:log_level(), term()}]. | ||
check() -> | ||
StrongConsistencyOption = riaknostic_config:get_app_env([riak_core, enable_consensus]), | ||
{ AAEOption, _ } = riaknostic_config:get_app_env([riak_kv, anti_entropy]), | ||
maybe_strong_consistency_aae_misconfigured(StrongConsistencyOption, AAEOption). | ||
|
||
-spec maybe_strong_consistency_aae_misconfigured(boolean, on | off | any()) -> [ { term(), term() } ] | []. | ||
maybe_strong_consistency_aae_misconfigured(true, off) -> | ||
[ { critical, { strong_consistency_aae_misconfigured } } ]; | ||
maybe_strong_consistency_aae_misconfigured(false, _) -> | ||
[]; | ||
maybe_strong_consistency_aae_misconfigured(true, on) -> | ||
[]. | ||
|
||
-spec format(term()) -> {io:format(), [term()]}. | ||
format({ strong_consistency_aae_misconfigured }) -> | ||
{ "Strong consistency has been enabled without AAE -- all consistent operations will timeout until AAE is enabled.", [] }. |