All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.runtime.checkpoint.CheckpointOptions 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.flink.runtime.checkpoint;

import org.apache.flink.annotation.VisibleForTesting;
import org.apache.flink.runtime.jobgraph.tasks.AbstractInvokable;
import org.apache.flink.runtime.state.CheckpointStorageLocationReference;

import java.io.Serializable;
import java.util.Objects;

import static org.apache.flink.util.Preconditions.checkArgument;
import static org.apache.flink.util.Preconditions.checkNotNull;
import static org.apache.flink.util.Preconditions.checkState;

/**
 * Options for performing the checkpoint. Note that different {@link
 * org.apache.flink.runtime.io.network.api.CheckpointBarrier barriers} may have different options.
 *
 * 

The {@link CheckpointProperties} are related and cover properties that are only relevant at * the {@link CheckpointCoordinator}. These options are relevant at the {@link AbstractInvokable} * instances running on task managers. */ public class CheckpointOptions implements Serializable { /** How a checkpoint should be aligned. */ public enum AlignmentType { AT_LEAST_ONCE, ALIGNED, UNALIGNED, FORCED_ALIGNED } public static final long NO_ALIGNED_CHECKPOINT_TIME_OUT = Long.MAX_VALUE; private static final long serialVersionUID = 5010126558083292915L; /** Type of the checkpoint. */ private final SnapshotType checkpointType; /** Target location for the checkpoint. */ private final CheckpointStorageLocationReference targetLocation; private final AlignmentType alignmentType; private final long alignedCheckpointTimeout; public static CheckpointOptions notExactlyOnce( SnapshotType type, CheckpointStorageLocationReference location) { return new CheckpointOptions( type, location, AlignmentType.AT_LEAST_ONCE, NO_ALIGNED_CHECKPOINT_TIME_OUT); } public static CheckpointOptions alignedNoTimeout( SnapshotType type, CheckpointStorageLocationReference location) { return new CheckpointOptions( type, location, AlignmentType.ALIGNED, NO_ALIGNED_CHECKPOINT_TIME_OUT); } public static CheckpointOptions unaligned( SnapshotType type, CheckpointStorageLocationReference location) { checkArgument(!type.isSavepoint(), "Savepoints can not be unaligned"); return new CheckpointOptions( type, location, AlignmentType.UNALIGNED, NO_ALIGNED_CHECKPOINT_TIME_OUT); } public static CheckpointOptions alignedWithTimeout( SnapshotType type, CheckpointStorageLocationReference location, long alignedCheckpointTimeout) { checkArgument(!type.isSavepoint(), "Savepoints can not be unaligned"); return new CheckpointOptions( type, location, AlignmentType.ALIGNED, alignedCheckpointTimeout); } private static CheckpointOptions forceAligned( SnapshotType type, CheckpointStorageLocationReference location, long alignedCheckpointTimeout) { checkArgument(!type.isSavepoint(), "Savepoints can not be unaligned"); return new CheckpointOptions( type, location, AlignmentType.FORCED_ALIGNED, alignedCheckpointTimeout); } public static CheckpointOptions forConfig( SnapshotType checkpointType, CheckpointStorageLocationReference locationReference, boolean isExactlyOnceMode, boolean isUnalignedEnabled, long alignedCheckpointTimeout) { if (!isExactlyOnceMode) { return notExactlyOnce(checkpointType, locationReference); } else if (checkpointType.isSavepoint()) { return alignedNoTimeout(checkpointType, locationReference); } else if (!isUnalignedEnabled) { return alignedNoTimeout(checkpointType, locationReference); } else if (alignedCheckpointTimeout == 0 || alignedCheckpointTimeout == NO_ALIGNED_CHECKPOINT_TIME_OUT) { return unaligned(checkpointType, locationReference); } else { return alignedWithTimeout(checkpointType, locationReference, alignedCheckpointTimeout); } } @VisibleForTesting public CheckpointOptions( SnapshotType checkpointType, CheckpointStorageLocationReference targetLocation) { this(checkpointType, targetLocation, AlignmentType.ALIGNED, NO_ALIGNED_CHECKPOINT_TIME_OUT); } public CheckpointOptions( SnapshotType checkpointType, CheckpointStorageLocationReference targetLocation, AlignmentType alignmentType, long alignedCheckpointTimeout) { checkArgument( alignmentType != AlignmentType.UNALIGNED || !checkpointType.isSavepoint(), "Savepoint can't be unaligned"); checkArgument( alignedCheckpointTimeout == NO_ALIGNED_CHECKPOINT_TIME_OUT || alignmentType != AlignmentType.UNALIGNED, "Unaligned checkpoint can't have timeout (%s)", alignedCheckpointTimeout); this.checkpointType = checkNotNull(checkpointType); this.targetLocation = checkNotNull(targetLocation); this.alignmentType = checkNotNull(alignmentType); this.alignedCheckpointTimeout = alignedCheckpointTimeout; } public boolean needsAlignment() { return isExactlyOnceMode() && (getCheckpointType().isSavepoint() || !isUnalignedCheckpoint()); } public long getAlignedCheckpointTimeout() { return alignedCheckpointTimeout; } public AlignmentType getAlignment() { return alignmentType; } public boolean isTimeoutable() { if (alignmentType == AlignmentType.FORCED_ALIGNED) { return false; } return alignmentType == AlignmentType.ALIGNED && (alignedCheckpointTimeout > 0 && alignedCheckpointTimeout != NO_ALIGNED_CHECKPOINT_TIME_OUT); } // ------------------------------------------------------------------------ /** Returns the type of checkpoint to perform. */ public SnapshotType getCheckpointType() { return checkpointType; } /** Returns the target location for the checkpoint. */ public CheckpointStorageLocationReference getTargetLocation() { return targetLocation; } public boolean isExactlyOnceMode() { return alignmentType != AlignmentType.AT_LEAST_ONCE; } public boolean isUnalignedCheckpoint() { return alignmentType == AlignmentType.UNALIGNED; } public CheckpointOptions withUnalignedSupported() { if (alignmentType == AlignmentType.FORCED_ALIGNED) { return alignedCheckpointTimeout != NO_ALIGNED_CHECKPOINT_TIME_OUT ? alignedWithTimeout(checkpointType, targetLocation, alignedCheckpointTimeout) : unaligned(checkpointType, targetLocation); } return this; } public CheckpointOptions withUnalignedUnsupported() { if (isUnalignedCheckpoint() || isTimeoutable()) { return forceAligned(checkpointType, targetLocation, alignedCheckpointTimeout); } return this; } // ------------------------------------------------------------------------ @Override public int hashCode() { return Objects.hash( targetLocation, checkpointType, alignmentType, alignedCheckpointTimeout); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } else if (obj != null && obj.getClass() == CheckpointOptions.class) { final CheckpointOptions that = (CheckpointOptions) obj; return this.checkpointType.equals(that.checkpointType) && this.targetLocation.equals(that.targetLocation) && this.alignmentType == that.alignmentType && this.alignedCheckpointTimeout == that.alignedCheckpointTimeout; } else { return false; } } @Override public String toString() { return "CheckpointOptions{" + "checkpointType=" + checkpointType + ", targetLocation=" + targetLocation + ", alignmentType=" + alignmentType + ", alignedCheckpointTimeout=" + alignedCheckpointTimeout + '}'; } // ------------------------------------------------------------------------ // Factory methods // ------------------------------------------------------------------------ private static final CheckpointOptions CHECKPOINT_AT_DEFAULT_LOCATION = new CheckpointOptions( CheckpointType.CHECKPOINT, CheckpointStorageLocationReference.getDefault()); @VisibleForTesting public static CheckpointOptions forCheckpointWithDefaultLocation() { return CHECKPOINT_AT_DEFAULT_LOCATION; } public CheckpointOptions toUnaligned() { checkState(alignmentType == AlignmentType.ALIGNED); return unaligned(checkpointType, targetLocation); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy