org.apache.hudi.common.heartbeat.HoodieHeartbeatUtils Maven / Gradle / Ivy
/*
* 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.hudi.common.heartbeat;
import org.apache.hudi.common.table.HoodieTableMetaClient;
import org.apache.hudi.storage.HoodieStorage;
import org.apache.hudi.storage.StoragePath;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
/**
* Common utils for Hudi heartbeat
*/
public class HoodieHeartbeatUtils {
private static final Logger LOG = LoggerFactory.getLogger(HoodieHeartbeatUtils.class);
/**
* Use modification time as last heart beat time.
*
* @param storage {@link HoodieStorage} instance.
* @param basePath Base path of the table.
* @param instantTime Instant time.
* @return Last heartbeat timestamp.
* @throws IOException
*/
public static Long getLastHeartbeatTime(HoodieStorage storage, String basePath,
String instantTime) throws IOException {
StoragePath heartbeatFilePath = new StoragePath(
HoodieTableMetaClient.getHeartbeatFolderPath(basePath), instantTime);
if (storage.exists(heartbeatFilePath)) {
return storage.getPathInfo(heartbeatFilePath).getModificationTime();
} else {
// NOTE : This can happen when a writer is upgraded to use lazy cleaning and the last write had failed
return 0L;
}
}
/**
* Whether a heartbeat is expired.
*
* @param instantTime Instant time.
* @param maxAllowableHeartbeatIntervalInMs Heartbeat timeout in milliseconds.
* @param storage {@link HoodieStorage} instance.
* @param basePath Base path of the table.
* @return {@code true} if expired; {@code false} otherwise.
* @throws IOException upon errors.
*/
public static boolean isHeartbeatExpired(String instantTime,
long maxAllowableHeartbeatIntervalInMs,
HoodieStorage storage, String basePath)
throws IOException {
Long currentTime = System.currentTimeMillis();
Long lastHeartbeatTime = getLastHeartbeatTime(storage, basePath, instantTime);
if (currentTime - lastHeartbeatTime > maxAllowableHeartbeatIntervalInMs) {
LOG.warn("Heartbeat expired, for instant: " + instantTime);
return true;
}
return false;
}
}