blob: 069892d000ad62f59e583f6b77cdf0f30e60f06b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* 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.
*/
package org.apache.iotdb.confignode.manager.node;
import org.apache.iotdb.common.rpc.thrift.TConfigNodeLocation;
import org.apache.iotdb.commons.cluster.NodeStatus;
public class ConfigNodeHeartbeatCache extends BaseNodeCache {
private final TConfigNodeLocation configNodeLocation;
public ConfigNodeHeartbeatCache(TConfigNodeLocation configNodeLocation) {
this.configNodeLocation = configNodeLocation;
}
@Override
public void cacheHeartbeatSample(NodeHeartbeatSample newHeartbeatSample) {
synchronized (slidingWindow) {
// Only sequential heartbeats are accepted.
// And un-sequential heartbeats will be discarded.
if (slidingWindow.size() == 0
|| slidingWindow.getLast().getSendTimestamp() < newHeartbeatSample.getSendTimestamp()) {
slidingWindow.add(newHeartbeatSample);
}
if (slidingWindow.size() > MAXIMUM_WINDOW_SIZE) {
slidingWindow.removeFirst();
}
}
}
@Override
public boolean updateNodeStatus() {
if (configNodeLocation.getInternalEndPoint().equals(NodeManager.CURRENT_NODE)) {
this.status = NodeStatus.Running;
return false;
}
long lastSendTime = 0;
synchronized (slidingWindow) {
if (slidingWindow.size() > 0) {
lastSendTime = slidingWindow.getLast().getSendTimestamp();
}
}
String originStatus = status.getStatus();
// TODO: Optimize judge logic
if (System.currentTimeMillis() - lastSendTime > HEARTBEAT_TIMEOUT_TIME) {
status = NodeStatus.Unknown;
} else {
status = NodeStatus.Running;
}
return !status.getStatus().equals(originStatus);
}
@Override
public long getLoadScore() {
// The ConfigNode whose status isn't Running will get the highest loadScore
return status == NodeStatus.Running ? 0 : Long.MAX_VALUE;
}
}