blob: 922057fb6bfd7160756274e1dcdf915e8242a2b5 [file] [log] [blame]
Madan Jampania14047d2015-02-25 12:23:02 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
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
Jordan Halterman5b54dad2018-01-16 19:41:31 -080078 /**
79 * Resets the failure detector for the given node.
80 *
81 * @param nodeId node identifier for the node for which to reset the failure detector
82 */
83 public void reset(NodeId nodeId) {
84 states.put(nodeId, new History());
85 }
sangyun-hanf98df542016-03-24 20:28:03 +090086
Madan Jampanibd6845d2015-02-25 11:43:48 -080087 /**
88 * Compute phi for the specified node id.
89 * @param nodeId node id
90 * @return phi value
91 */
Madan Jampania14047d2015-02-25 12:23:02 -080092 public double phi(NodeId nodeId) {
93 checkNotNull(nodeId, "NodeId must not be null");
Madan Jampanibd6845d2015-02-25 11:43:48 -080094 if (!states.containsKey(nodeId)) {
sangyun-hanf98df542016-03-24 20:28:03 +090095 return bootstrapPhiValue;
Madan Jampanibd6845d2015-02-25 11:43:48 -080096 }
Madan Jampanibd6845d2015-02-25 11:43:48 -080097 History nodeState = states.get(nodeId);
98 synchronized (nodeState) {
99 long latestHeartbeat = nodeState.latestHeartbeatTime();
100 DescriptiveStatistics samples = nodeState.samples();
sangyun-hanf98df542016-03-24 20:28:03 +0900101 if (latestHeartbeat == -1 || samples.getN() < minSamples) {
Madan Jampanibd6845d2015-02-25 11:43:48 -0800102 return 0.0;
103 }
104 return computePhi(samples, latestHeartbeat, System.currentTimeMillis());
105 }
106 }
107
108 private double computePhi(DescriptiveStatistics samples, long tLast, long tNow) {
109 long size = samples.getN();
110 long t = tNow - tLast;
111 return (size > 0)
sangyun-hanf98df542016-03-24 20:28:03 +0900112 ? phiFactor * t / samples.getMean()
113 : bootstrapPhiValue;
Madan Jampanibd6845d2015-02-25 11:43:48 -0800114 }
115
sangyun-hanf98df542016-03-24 20:28:03 +0900116
117 private void setMinSamples(int samples) {
118 minSamples = samples;
119 }
120
121 private void setPhiFactor(double factor) {
122 phiFactor = factor;
123 }
124
125 private void setBootstrapPhiValue(double phiValue) {
126 bootstrapPhiValue = phiValue;
127 }
128
129
Madan Jampanibd6845d2015-02-25 11:43:48 -0800130 private static class History {
131 DescriptiveStatistics samples =
sangyun-hanf98df542016-03-24 20:28:03 +0900132 new DescriptiveStatistics(DEFAULT_WINDOW_SIZE);
Madan Jampanibd6845d2015-02-25 11:43:48 -0800133 long lastHeartbeatTime = -1;
134
135 public DescriptiveStatistics samples() {
136 return samples;
137 }
138
139 public long latestHeartbeatTime() {
140 return lastHeartbeatTime;
141 }
142
143 public void setLatestHeartbeatTime(long value) {
144 lastHeartbeatTime = value;
145 }
146 }
147}