org.apache.hudi.utilities.checkpointing.InitialCheckPointProvider 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.utilities.checkpointing;
import org.apache.hudi.ApiMaturityLevel;
import org.apache.hudi.PublicAPIClass;
import org.apache.hudi.PublicAPIMethod;
import org.apache.hudi.common.config.TypedProperties;
import org.apache.hudi.exception.HoodieException;
import org.apache.hudi.utilities.config.HoodieStreamerConfig;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import java.io.IOException;
import static org.apache.hudi.common.util.ConfigUtils.getStringWithAltKeys;
/**
* Provide the initial checkpoint for Hudi Streamer.
*/
@PublicAPIClass(maturity = ApiMaturityLevel.EVOLVING)
public abstract class InitialCheckPointProvider {
protected transient Path path;
protected transient FileSystem fs;
protected transient TypedProperties props;
/**
* Construct InitialCheckPointProvider.
*
* @param props All properties passed to Hudi Streamer
*/
public InitialCheckPointProvider(TypedProperties props) {
this.props = props;
this.path = new Path(
getStringWithAltKeys(props, HoodieStreamerConfig.CHECKPOINT_PROVIDER_PATH));
}
/**
* Initialize the class with the current filesystem.
*
* @param config Hadoop configuration
*/
public void init(Configuration config) throws HoodieException {
try {
this.fs = FileSystem.get(config);
} catch (IOException e) {
throw new HoodieException("CheckpointProvider initialization failed");
}
}
/**
* Get checkpoint string recognizable for Hudi Streamer.
*/
@PublicAPIMethod(maturity = ApiMaturityLevel.EVOLVING)
public abstract String getCheckpoint() throws HoodieException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy