blob: 0c6a5f80fab06a90f9887a521694c59e853583bc [file] [log] [blame]
Madan Jampania14047d2015-02-25 12:23:02 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Madan Jampania14047d2015-02-25 12:23:02 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Madan Jampanibd6845d2015-02-25 11:43:48 -080016package org.onosproject.store.cluster.impl;
17
18import static com.google.common.base.Preconditions.checkArgument;
19import static com.google.common.base.Preconditions.checkNotNull;
20
21import java.util.Map;
22
23import org.apache.commons.math3.stat.descriptive.DescriptiveStatistics;
24import org.onosproject.cluster.NodeId;
25
26import com.google.common.collect.Maps;
27
28/**
29 * Phi Accrual failure detector.
30 * <p>
31 * Based on a paper titled: "The φ Accrual Failure Detector" by Hayashibara, et al.
32 */
33public class PhiAccrualFailureDetector {
34 private final Map<NodeId, History> states = Maps.newConcurrentMap();
35
sangyun-hanf98df542016-03-24 20:28:03 +090036 // Default value
37 private static final int DEFAULT_WINDOW_SIZE = 250;
38 private static final int DEFAULT_MIN_SAMPLES = 25;
39 private static final double DEFAULT_PHI_FACTOR = 1.0 / Math.log(10.0);
Madan Jampanibd6845d2015-02-25 11:43:48 -080040
41 // If a node does not have any heartbeats, this is the phi
42 // value to report. Indicates the node is inactive (from the
43 // detectors perspective.
sangyun-hanf98df542016-03-24 20:28:03 +090044 private static final double DEFAULT_BOOTSTRAP_PHI_VALUE = 100.0;
45
46
47 private int minSamples = DEFAULT_MIN_SAMPLES;
48 private double phiFactor = DEFAULT_PHI_FACTOR;
49 private double bootstrapPhiValue = DEFAULT_BOOTSTRAP_PHI_VALUE;
Madan Jampanibd6845d2015-02-25 11:43:48 -080050
51 /**
52 * Report a new heart beat for the specified node id.
53 * @param nodeId node id
54 */
55 public void report(NodeId nodeId) {
56 report(nodeId, System.currentTimeMillis());
57 }
58
59 /**
60 * Report a new heart beat for the specified node id.
61 * @param nodeId node id
62 * @param arrivalTime arrival time
63 */
64 public void report(NodeId nodeId, long arrivalTime) {
65 checkNotNull(nodeId, "NodeId must not be null");
66 checkArgument(arrivalTime >= 0, "arrivalTime must not be negative");
67 History nodeState =
68 states.computeIfAbsent(nodeId, key -> new History());
69 synchronized (nodeState) {
70 long latestHeartbeat = nodeState.latestHeartbeatTime();
71 if (latestHeartbeat != -1) {
72 nodeState.samples().addValue(arrivalTime - latestHeartbeat);
73 }
74 nodeState.setLatestHeartbeatTime(arrivalTime);
75 }
76 }
77
sangyun-hanf98df542016-03-24 20:28:03 +090078
79
Madan Jampanibd6845d2015-02-25 11:43:48 -080080 /**
81 * Compute phi for the specified node id.
82 * @param nodeId node id
83 * @return phi value
84 */
Madan Jampania14047d2015-02-25 12:23:02 -080085 public double phi(NodeId nodeId) {
86 checkNotNull(nodeId, "NodeId must not be null");
Madan Jampanibd6845d2015-02-25 11:43:48 -080087 if (!states.containsKey(nodeId)) {
sangyun-hanf98df542016-03-24 20:28:03 +090088 return bootstrapPhiValue;
Madan Jampanibd6845d2015-02-25 11:43:48 -080089 }
Madan Jampanibd6845d2015-02-25 11:43:48 -080090 History nodeState = states.get(nodeId);
91 synchronized (nodeState) {
92 long latestHeartbeat = nodeState.latestHeartbeatTime();
93 DescriptiveStatistics samples = nodeState.samples();
sangyun-hanf98df542016-03-24 20:28:03 +090094 if (latestHeartbeat == -1 || samples.getN() < minSamples) {
Madan Jampanibd6845d2015-02-25 11:43:48 -080095 return 0.0;
96 }
97 return computePhi(samples, latestHeartbeat, System.currentTimeMillis());
98 }
99 }
100
101 private double computePhi(DescriptiveStatistics samples, long tLast, long tNow) {
102 long size = samples.getN();
103 long t = tNow - tLast;
104 return (size > 0)
sangyun-hanf98df542016-03-24 20:28:03 +0900105 ? phiFactor * t / samples.getMean()
106 : bootstrapPhiValue;
Madan Jampanibd6845d2015-02-25 11:43:48 -0800107 }
108
sangyun-hanf98df542016-03-24 20:28:03 +0900109
110 private void setMinSamples(int samples) {
111 minSamples = samples;
112 }
113
114 private void setPhiFactor(double factor) {
115 phiFactor = factor;
116 }
117
118 private void setBootstrapPhiValue(double phiValue) {
119 bootstrapPhiValue = phiValue;
120 }
121
122
Madan Jampanibd6845d2015-02-25 11:43:48 -0800123 private static class History {
124 DescriptiveStatistics samples =
sangyun-hanf98df542016-03-24 20:28:03 +0900125 new DescriptiveStatistics(DEFAULT_WINDOW_SIZE);
Madan Jampanibd6845d2015-02-25 11:43:48 -0800126 long lastHeartbeatTime = -1;
127
128 public DescriptiveStatistics samples() {
129 return samples;
130 }
131
132 public long latestHeartbeatTime() {
133 return lastHeartbeatTime;
134 }
135
136 public void setLatestHeartbeatTime(long value) {
137 lastHeartbeatTime = value;
138 }
139 }
140}