org.apache.seatunnel.flink.util.ConfigKeyName 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.seatunnel.flink.util;
public class ConfigKeyName {
public static final String TIME_CHARACTERISTIC = "execution.time-characteristic";
public static final String BUFFER_TIMEOUT_MILLIS = "execution.buffer.timeout";
public static final String PARALLELISM = "execution.parallelism";
public static final String MAX_PARALLELISM = "execution.max-parallelism";
public static final String CHECKPOINT_INTERVAL = "execution.checkpoint.interval";
public static final String CHECKPOINT_MODE = "execution.checkpoint.mode";
public static final String CHECKPOINT_TIMEOUT = "execution.checkpoint.timeout";
public static final String CHECKPOINT_DATA_URI = "execution.checkpoint.data-uri";
public static final String MAX_CONCURRENT_CHECKPOINTS = "execution.max-concurrent-checkpoints";
public static final String CHECKPOINT_CLEANUP_MODE = "execution.checkpoint.cleanup-mode";
public static final String MIN_PAUSE_BETWEEN_CHECKPOINTS = "execution.checkpoint.min-pause";
public static final String FAIL_ON_CHECKPOINTING_ERRORS = "execution.checkpoint.fail-on-error";
public static final String RESTART_STRATEGY = "execution.restart.strategy";
public static final String RESTART_ATTEMPTS = "execution.restart.attempts";
public static final String RESTART_DELAY_BETWEEN_ATTEMPTS = "execution.restart.delayBetweenAttempts";
public static final String RESTART_FAILURE_INTERVAL = "execution.restart.failureInterval";
public static final String RESTART_FAILURE_RATE = "execution.restart.failureRate";
public static final String RESTART_DELAY_INTERVAL = "execution.restart.delayInterval";
public static final String MAX_STATE_RETENTION_TIME = "execution.query.state.max-retention";
public static final String MIN_STATE_RETENTION_TIME = "execution.query.state.min-retention";
public static final String STATE_BACKEND = "execution.state.backend";
public static final String PLANNER = "execution.planner";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy