org.apache.hudi.common.table.checkpoint.StreamerCheckpointV1 Maven / Gradle / Ivy
The newest version!
/*
* 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.table.checkpoint;
import org.apache.hudi.common.model.HoodieCommitMetadata;
import java.util.HashMap;
import java.util.Map;
public class StreamerCheckpointV1 extends Checkpoint {
// TODO(yihua): decouple the keys for Hudi Streamer
public static final String STREAMER_CHECKPOINT_KEY_V1 = "deltastreamer.checkpoint.key";
public static final String STREAMER_CHECKPOINT_RESET_KEY_V1 = "deltastreamer.checkpoint.reset_key";
public StreamerCheckpointV1(String key) {
this.checkpointKey = key;
this.checkpointResetKey = null;
this.checkpointIgnoreKey = null;
}
public StreamerCheckpointV1(Checkpoint checkpoint) {
this.checkpointKey = checkpoint.getCheckpointKey();
this.checkpointResetKey = checkpoint.getCheckpointResetKey();
this.checkpointIgnoreKey = checkpoint.getCheckpointIgnoreKey();
}
public StreamerCheckpointV1(HoodieCommitMetadata commitMetadata) {
this.checkpointKey = commitMetadata.getMetadata(STREAMER_CHECKPOINT_KEY_V1);
this.checkpointResetKey = commitMetadata.getMetadata(STREAMER_CHECKPOINT_RESET_KEY_V1);
this.checkpointIgnoreKey = commitMetadata.getMetadata(CHECKPOINT_IGNORE_KEY);
}
@Override
public Map getCheckpointCommitMetadata(String overrideResetKey,
String overrideIgnoreKey) {
Map checkpointCommitMetadata = new HashMap<>();
if (checkpointKey != null) {
checkpointCommitMetadata.put(STREAMER_CHECKPOINT_KEY_V1, getCheckpointKey());
}
// TODO(yihua): handle reset key translation?
// streamerConfig.checkpoint
if (overrideResetKey != null) {
checkpointCommitMetadata.put(STREAMER_CHECKPOINT_RESET_KEY_V1, overrideResetKey);
}
// streamerConfig.ignoreCheckpoint
if (overrideIgnoreKey != null) {
checkpointCommitMetadata.put(CHECKPOINT_IGNORE_KEY, overrideIgnoreKey);
}
return checkpointCommitMetadata;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy