Package org.apache.flink.configuration
Class ConfigConstants
- java.lang.Object
-
- org.apache.flink.configuration.ConfigConstants
-
@Public public final class ConfigConstants extends Object
This class contains all constants for the configuration. That includes the configuration keys and the default values.
-
-
Field Summary
-
-
-
Field Detail
-
DEFAULT_PARALLELISM_KEY
@Deprecated public static final String DEFAULT_PARALLELISM_KEY
Deprecated.useCoreOptions.DEFAULT_PARALLELISMinsteadThe config parameter defining the default parallelism for jobs.- See Also:
- Constant Field Values
-
RESTART_STRATEGY
@Deprecated @PublicEvolving public static final String RESTART_STRATEGY
Deprecated.useRestartStrategyOptions.RESTART_STRATEGYinstead.Defines the restart strategy to be used. It can be "off", "none", "disable" to be disabled or it can be "fixeddelay", "fixed-delay" to use the FixedDelayRestartStrategy or it can be "failurerate", "failure-rate" to use FailureRateRestartStrategy.- See Also:
- Constant Field Values
-
RESTART_STRATEGY_FIXED_DELAY_ATTEMPTS
@Deprecated @PublicEvolving public static final String RESTART_STRATEGY_FIXED_DELAY_ATTEMPTS
Deprecated.Maximum number of attempts the fixed delay restart strategy will try before failing a job.- See Also:
- Constant Field Values
-
RESTART_STRATEGY_FIXED_DELAY_DELAY
@Deprecated @PublicEvolving public static final ConfigOption<String> RESTART_STRATEGY_FIXED_DELAY_DELAY
Deprecated.Delay between two consecutive restart attempts in FixedDelayRestartStrategy. It can be specified using Scala's FiniteDuration notation: "1 min", "20 s"
-
RESTART_STRATEGY_FAILURE_RATE_MAX_FAILURES_PER_INTERVAL
@Deprecated @PublicEvolving public static final String RESTART_STRATEGY_FAILURE_RATE_MAX_FAILURES_PER_INTERVAL
Deprecated.Maximum number of restarts in given time intervalRESTART_STRATEGY_FAILURE_RATE_FAILURE_RATE_INTERVALbefore failing a job in FailureRateRestartStrategy.- See Also:
- Constant Field Values
-
RESTART_STRATEGY_FAILURE_RATE_FAILURE_RATE_INTERVAL
@Deprecated @PublicEvolving public static final String RESTART_STRATEGY_FAILURE_RATE_FAILURE_RATE_INTERVAL
Time interval in which greater amount of failures thanRESTART_STRATEGY_FAILURE_RATE_MAX_FAILURES_PER_INTERVALcauses job fail in FailureRateRestartStrategy. It can be specified using Scala's FiniteDuration notation: "1 min", "20 s"- See Also:
- Constant Field Values
-
RESTART_STRATEGY_FAILURE_RATE_DELAY
@Deprecated @PublicEvolving public static final String RESTART_STRATEGY_FAILURE_RATE_DELAY
Deprecated.Delay between two consecutive restart attempts in FailureRateRestartStrategy. It can be specified using Scala's FiniteDuration notation: "1 min", "20 s".- See Also:
- Constant Field Values
-
EXECUTION_RETRIES_KEY
@Deprecated @PublicEvolving public static final String EXECUTION_RETRIES_KEY
Deprecated.The configuration value will be replaced byRESTART_STRATEGY_FIXED_DELAY_ATTEMPTSand the corresponding FixedDelayRestartStrategy.Config parameter for the number of re-tries for failed tasks. Setting this value to 0 effectively disables fault tolerance.- See Also:
- Constant Field Values
-
EXECUTION_RETRY_DELAY_KEY
@Deprecated @PublicEvolving public static final String EXECUTION_RETRY_DELAY_KEY
Deprecated.The configuration value will be replaced byRESTART_STRATEGY_FIXED_DELAY_DELAYand the corresponding FixedDelayRestartStrategy.Config parameter for the delay between execution retries. The value must be specified in the notation "10 s" or "1 min" (style of Scala Finite Durations)- See Also:
- Constant Field Values
-
JOB_MANAGER_IPC_ADDRESS_KEY
@Deprecated public static final String JOB_MANAGER_IPC_ADDRESS_KEY
Deprecated.UseJobManagerOptions.ADDRESSinsteadThe config parameter defining the network address to connect to for communication with the job manager.- See Also:
- Constant Field Values
-
JOB_MANAGER_IPC_PORT_KEY
@Deprecated public static final String JOB_MANAGER_IPC_PORT_KEY
Deprecated.UseJobManagerOptions.PORTinsteadThe config parameter defining the network port to connect to for communication with the job manager.- See Also:
- Constant Field Values
-
RESOURCE_MANAGER_IPC_PORT_KEY
@Deprecated public static final String RESOURCE_MANAGER_IPC_PORT_KEY
Deprecated.UseResourceManagerOptions.IPC_PORTinstead.The config parameter defining the network port to connect to for communication with the resource manager.- See Also:
- Constant Field Values
-
BLOB_STORAGE_DIRECTORY_KEY
@Deprecated public static final String BLOB_STORAGE_DIRECTORY_KEY
Deprecated.useBlobServerOptions.STORAGE_DIRECTORYinstead- See Also:
- Constant Field Values
-
BLOB_FETCH_RETRIES_KEY
@Deprecated public static final String BLOB_FETCH_RETRIES_KEY
Deprecated.useBlobServerOptions.FETCH_RETRIESinstead- See Also:
- Constant Field Values
-
BLOB_FETCH_CONCURRENT_KEY
@Deprecated public static final String BLOB_FETCH_CONCURRENT_KEY
Deprecated.useBlobServerOptions.FETCH_CONCURRENTinstead- See Also:
- Constant Field Values
-
BLOB_FETCH_BACKLOG_KEY
@Deprecated public static final String BLOB_FETCH_BACKLOG_KEY
Deprecated.useBlobServerOptions.FETCH_BACKLOGinstead- See Also:
- Constant Field Values
-
BLOB_SERVER_PORT
@Deprecated public static final String BLOB_SERVER_PORT
Deprecated.useBlobServerOptions.PORTinstead- See Also:
- Constant Field Values
-
BLOB_SERVICE_SSL_ENABLED
@Deprecated public static final String BLOB_SERVICE_SSL_ENABLED
Deprecated.useBlobServerOptions.SSL_ENABLEDinstead- See Also:
- Constant Field Values
-
LIBRARY_CACHE_MANAGER_CLEANUP_INTERVAL
@Deprecated public static final String LIBRARY_CACHE_MANAGER_CLEANUP_INTERVAL
Deprecated.useBlobServerOptions.CLEANUP_INTERVALinsteadThe config parameter defining the cleanup interval of the library cache manager.- See Also:
- Constant Field Values
-
TASK_MANAGER_HOSTNAME_KEY
@Deprecated public static final String TASK_MANAGER_HOSTNAME_KEY
Deprecated.useTaskManagerOptions.HOSTinsteadThe config parameter defining the task manager's hostname.- See Also:
- Constant Field Values
-
TASK_MANAGER_IPC_PORT_KEY
@Deprecated public static final String TASK_MANAGER_IPC_PORT_KEY
Deprecated.useTaskManagerOptions.RPC_PORTinstead- See Also:
- Constant Field Values
-
TASK_MANAGER_DATA_PORT_KEY
@Deprecated public static final String TASK_MANAGER_DATA_PORT_KEY
Deprecated.useNettyShuffleEnvironmentOptions.DATA_PORTinstead- See Also:
- Constant Field Values
-
TASK_MANAGER_DATA_SSL_ENABLED
@Deprecated public static final String TASK_MANAGER_DATA_SSL_ENABLED
Deprecated.useNettyShuffleEnvironmentOptions.DATA_SSL_ENABLEDinsteadConfig parameter to override SSL support for taskmanager's data transport.- See Also:
- Constant Field Values
-
TASK_MANAGER_TMP_DIR_KEY
@Deprecated public static final String TASK_MANAGER_TMP_DIR_KEY
Deprecated.UseCoreOptions.TMP_DIRSinsteadThe config parameter defining the directories for temporary files, separated by ",", "|", or the system'sFile.pathSeparator.- See Also:
- Constant Field Values
-
TASK_MANAGER_LOG_PATH_KEY
public static final String TASK_MANAGER_LOG_PATH_KEY
The config parameter defining the taskmanager log file location.- See Also:
- Constant Field Values
-
TASK_MANAGER_MEMORY_SIZE_KEY
@Deprecated public static final String TASK_MANAGER_MEMORY_SIZE_KEY
Deprecated.UseTaskManagerOptions.MANAGED_MEMORY_SIZEinstead- See Also:
- Constant Field Values
-
TASK_MANAGER_MEMORY_FRACTION_KEY
@Deprecated public static final String TASK_MANAGER_MEMORY_FRACTION_KEY
Deprecated.has no effect- See Also:
- Constant Field Values
-
TASK_MANAGER_MEMORY_OFF_HEAP_KEY
@Deprecated public static final String TASK_MANAGER_MEMORY_OFF_HEAP_KEY
Deprecated.has no effect- See Also:
- Constant Field Values
-
TASK_MANAGER_MEMORY_PRE_ALLOCATE_KEY
@Deprecated public static final String TASK_MANAGER_MEMORY_PRE_ALLOCATE_KEY
Deprecated.has no effect- See Also:
- Constant Field Values
-
TASK_MANAGER_NETWORK_NUM_BUFFERS_KEY
@Deprecated public static final String TASK_MANAGER_NETWORK_NUM_BUFFERS_KEY
Deprecated.The config parameter defining the number of buffers used in the network stack. This defines the number of possible tasks and shuffles.- See Also:
- Constant Field Values
-
TASK_MANAGER_MEMORY_SEGMENT_SIZE_KEY
@Deprecated public static final String TASK_MANAGER_MEMORY_SEGMENT_SIZE_KEY
Deprecated.UseTaskManagerOptions.MEMORY_SEGMENT_SIZEinsteadConfig parameter defining the size of memory buffers used by the network stack and the memory manager.- See Also:
- Constant Field Values
-
TASK_MANAGER_NETWORK_DEFAULT_IO_MODE
@Deprecated public static final String TASK_MANAGER_NETWORK_DEFAULT_IO_MODE
Deprecated.Not used anymore- See Also:
- Constant Field Values
-
TASK_MANAGER_NUM_TASK_SLOTS
@Deprecated public static final String TASK_MANAGER_NUM_TASK_SLOTS
Deprecated.useTaskManagerOptions.NUM_TASK_SLOTSinsteadThe config parameter defining the number of task slots of a task manager.- See Also:
- Constant Field Values
-
TASK_MANAGER_DEBUG_MEMORY_USAGE_START_LOG_THREAD
@Deprecated public static final String TASK_MANAGER_DEBUG_MEMORY_USAGE_START_LOG_THREAD
Deprecated.useTaskManagerOptions.DEBUG_MEMORY_LOGinsteadFlag indicating whether to start a thread, which repeatedly logs the memory usage of the JVM.- See Also:
- Constant Field Values
-
TASK_MANAGER_DEBUG_MEMORY_USAGE_LOG_INTERVAL_MS
@Deprecated public static final String TASK_MANAGER_DEBUG_MEMORY_USAGE_LOG_INTERVAL_MS
Deprecated.The interval (in ms) for the log thread to log the current memory usage.- See Also:
- Constant Field Values
-
TASK_MANAGER_MAX_REGISTRATION_DURATION
@Deprecated public static final String TASK_MANAGER_MAX_REGISTRATION_DURATION
Deprecated.useTaskManagerOptions.REGISTRATION_TIMEOUTinsteadDefines the maximum time it can take for the TaskManager registration. If the duration is exceeded without a successful registration, then the TaskManager terminates.- See Also:
- Constant Field Values
-
TASK_MANAGER_INITIAL_REGISTRATION_PAUSE
@Deprecated public static final String TASK_MANAGER_INITIAL_REGISTRATION_PAUSE
Deprecated.useClusterOptions.INITIAL_REGISTRATION_TIMEOUTinsteadThe initial registration pause between two consecutive registration attempts. The pause is doubled for each new registration attempt until it reaches the maximum registration pause.- See Also:
- Constant Field Values
-
TASK_MANAGER_MAX_REGISTARTION_PAUSE
@Deprecated public static final String TASK_MANAGER_MAX_REGISTARTION_PAUSE
Deprecated.useClusterOptions.MAX_REGISTRATION_TIMEOUTinsteadThe maximum registration pause between two consecutive registration attempts.- See Also:
- Constant Field Values
-
TASK_MANAGER_REFUSED_REGISTRATION_PAUSE
@Deprecated public static final String TASK_MANAGER_REFUSED_REGISTRATION_PAUSE
Deprecated.useClusterOptions.REFUSED_REGISTRATION_DELAYinsteadThe pause after a registration has been refused by the job manager before retrying to connect.- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_MEMORY_PRE_ALLOCATE
@Deprecated public static final boolean DEFAULT_TASK_MANAGER_MEMORY_PRE_ALLOCATE
Deprecated.has no effect- See Also:
- Constant Field Values
-
TASK_CANCELLATION_INTERVAL_MILLIS
@PublicEvolving @Deprecated public static final String TASK_CANCELLATION_INTERVAL_MILLIS
Deprecated.Deprecated. Please useTaskManagerOptions.TASK_CANCELLATION_INTERVAL.- See Also:
- Constant Field Values
-
DEFAULT_SPILLING_MAX_FAN_KEY
@Deprecated public static final String DEFAULT_SPILLING_MAX_FAN_KEY
Deprecated.useAlgorithmOptions.SPILLING_MAX_FANinstead- See Also:
- Constant Field Values
-
DEFAULT_SORT_SPILLING_THRESHOLD_KEY
@Deprecated public static final String DEFAULT_SORT_SPILLING_THRESHOLD_KEY
Deprecated.useinstead- See Also:
- Constant Field Values
-
RUNTIME_HASH_JOIN_BLOOM_FILTERS_KEY
@Deprecated public static final String RUNTIME_HASH_JOIN_BLOOM_FILTERS_KEY
Deprecated.useAlgorithmOptions.HASH_JOIN_BLOOM_FILTERSinstead- See Also:
- Constant Field Values
-
FS_STREAM_OPENING_TIMEOUT_KEY
public static final String FS_STREAM_OPENING_TIMEOUT_KEY
The config parameter defining the timeout for filesystem stream opening. A value of 0 indicates infinite waiting.- See Also:
- Constant Field Values
-
USE_LARGE_RECORD_HANDLER_KEY
@Deprecated public static final String USE_LARGE_RECORD_HANDLER_KEY
Deprecated.Whether to use the LargeRecordHandler when spilling.- See Also:
- Constant Field Values
-
CONTAINERIZED_HEAP_CUTOFF_RATIO
@Deprecated public static final String CONTAINERIZED_HEAP_CUTOFF_RATIO
Deprecated.Not used anymore, but remain here until Flink 2.0Percentage of heap space to remove from containers (YARN / Kubernetes), to compensate for other JVM memory usage.- See Also:
- Constant Field Values
-
CONTAINERIZED_HEAP_CUTOFF_MIN
@Deprecated public static final String CONTAINERIZED_HEAP_CUTOFF_MIN
Deprecated.Not used anymore, but remain here until Flink 2.0Minimum amount of heap memory to remove in containers, as a safety margin.- See Also:
- Constant Field Values
-
CONTAINERIZED_MASTER_ENV_PREFIX
@Deprecated public static final String CONTAINERIZED_MASTER_ENV_PREFIX
Deprecated.Prefix for passing custom environment variables to Flink's master process. For example for passing LD_LIBRARY_PATH as an env variable to the AppMaster, set: containerized.master.env.LD_LIBRARY_PATH: "/usr/lib/native" in the flink-conf.yaml.- See Also:
- Constant Field Values
-
CONTAINERIZED_TASK_MANAGER_ENV_PREFIX
@Deprecated public static final String CONTAINERIZED_TASK_MANAGER_ENV_PREFIX
Deprecated.Similar to the {@see CONTAINERIZED_MASTER_ENV_PREFIX}, this configuration prefix allows setting custom environment variables for the workers (TaskManagers).- See Also:
- Constant Field Values
-
YARN_VCORES
@Deprecated public static final String YARN_VCORES
Deprecated.in favor ofYarnConfigOptions#VCORES.The vcores exposed by YARN.- See Also:
- Constant Field Values
-
YARN_HEAP_CUTOFF_RATIO
@Deprecated public static final String YARN_HEAP_CUTOFF_RATIO
Deprecated.Not used anymore, but remain here until Flink 2.0Percentage of heap space to remove from containers started by YARN.- See Also:
- Constant Field Values
-
YARN_HEAP_CUTOFF_MIN
@Deprecated public static final String YARN_HEAP_CUTOFF_MIN
Deprecated.Not used anymore, but remain here until Flink 2.0Minimum amount of memory to remove from the heap space as a safety margin.- See Also:
- Constant Field Values
-
YARN_REALLOCATE_FAILED_CONTAINERS
@Deprecated public static final String YARN_REALLOCATE_FAILED_CONTAINERS
Deprecated.Not used anymoreReallocate failed YARN containers.- See Also:
- Constant Field Values
-
YARN_MAX_FAILED_CONTAINERS
@Deprecated public static final String YARN_MAX_FAILED_CONTAINERS
Deprecated.in favor ofYarnConfigOptions#MAX_FAILED_CONTAINERS.The maximum number of failed YARN containers before entirely stopping the YARN session / job on YARN.By default, we take the number of initially requested containers.
- See Also:
- Constant Field Values
-
YARN_APPLICATION_ATTEMPTS
@Deprecated public static final String YARN_APPLICATION_ATTEMPTS
Deprecated.in favor ofYarnConfigOptions#APPLICATION_ATTEMPTS.Set the number of retries for failed YARN ApplicationMasters/JobManagers in high availability mode. This value is usually limited by YARN.By default, it's 1 in the standalone case and 2 in the high availability case.
- See Also:
- Constant Field Values
-
YARN_HEARTBEAT_DELAY_SECONDS
@Deprecated public static final String YARN_HEARTBEAT_DELAY_SECONDS
Deprecated.in favor ofYarnConfigOptions#HEARTBEAT_DELAY_SECONDS.The heartbeat interval between the Application Master and the YARN Resource Manager. The default value is 5 (seconds).- See Also:
- Constant Field Values
-
YARN_PROPERTIES_FILE_LOCATION
@Deprecated public static final String YARN_PROPERTIES_FILE_LOCATION
Deprecated.in favor ofYarnConfigOptions#PROPERTIES_FILE_LOCATION.When a Flink job is submitted to YARN, the JobManager's host and the number of available processing slots is written into a properties file, so that the Flink client is able to pick those details up. This configuration parameter allows changing the default location of that file (for example for environments sharing a Flink installation between users).- See Also:
- Constant Field Values
-
YARN_APPLICATION_MASTER_ENV_PREFIX
@Deprecated public static final String YARN_APPLICATION_MASTER_ENV_PREFIX
Deprecated.Please useCONTAINERIZED_MASTER_ENV_PREFIX.Prefix for passing custom environment variables to Flink's ApplicationMaster (JobManager). For example for passing LD_LIBRARY_PATH as an env variable to the AppMaster, set: yarn.application-master.env.LD_LIBRARY_PATH: "/usr/lib/native" in the flink-conf.yaml.- See Also:
- Constant Field Values
-
DEFAULT_YARN_APPLICATION_MASTER_PORT
@Deprecated public static final String DEFAULT_YARN_APPLICATION_MASTER_PORT
Deprecated.Not used anymore, but remain here until Flink 2.0- See Also:
- Constant Field Values
-
DEFAULT_YARN_MIN_HEAP_CUTOFF
@Deprecated public static final int DEFAULT_YARN_MIN_HEAP_CUTOFF
Deprecated.Not used anymore, but remain here until Flink 2.0- See Also:
- Constant Field Values
-
YARN_TASK_MANAGER_ENV_PREFIX
@Deprecated public static final String YARN_TASK_MANAGER_ENV_PREFIX
Deprecated.Please useCONTAINERIZED_TASK_MANAGER_ENV_PREFIX.Similar to the {@see YARN_APPLICATION_MASTER_ENV_PREFIX}, this configuration prefix allows setting custom environment variables.- See Also:
- Constant Field Values
-
YARN_CONTAINER_START_COMMAND_TEMPLATE
public static final String YARN_CONTAINER_START_COMMAND_TEMPLATE
Template for the YARN container start invocation.- See Also:
- Constant Field Values
-
YARN_APPLICATION_MASTER_PORT
@Deprecated public static final String YARN_APPLICATION_MASTER_PORT
Deprecated.in favor ofYarnConfigOptions#APPLICATION_MASTER_PORT.The config parameter defining the Akka actor system port for the ApplicationMaster and JobManagerThe port can either be a port, such as "9123", a range of ports: "50100-50200" or a list of ranges and or points: "50100-50200,50300-50400,51234"
Setting the port to 0 will let the OS choose an available port.
- See Also:
- Constant Field Values
-
YARN_APPLICATION_TAGS
@Deprecated public static final String YARN_APPLICATION_TAGS
Deprecated.in favor ofYarnConfigOptions#APPLICATION_TAGS.A comma-separated list of strings to use as YARN application tags.- See Also:
- Constant Field Values
-
MESOS_INITIAL_TASKS
@Deprecated public static final String MESOS_INITIAL_TASKS
Deprecated.has no effect- See Also:
- Constant Field Values
-
MESOS_MAX_FAILED_TASKS
@Deprecated public static final String MESOS_MAX_FAILED_TASKS
Deprecated.has no effect- See Also:
- Constant Field Values
-
MESOS_MASTER_URL
@Deprecated public static final String MESOS_MASTER_URL
Deprecated.has no effect- See Also:
- Constant Field Values
-
MESOS_FAILOVER_TIMEOUT_SECONDS
@Deprecated public static final String MESOS_FAILOVER_TIMEOUT_SECONDS
Deprecated.has no effect- See Also:
- Constant Field Values
-
MESOS_ARTIFACT_SERVER_PORT_KEY
@Deprecated public static final String MESOS_ARTIFACT_SERVER_PORT_KEY
Deprecated.has no effect- See Also:
- Constant Field Values
-
MESOS_RESOURCEMANAGER_FRAMEWORK_NAME
@Deprecated public static final String MESOS_RESOURCEMANAGER_FRAMEWORK_NAME
Deprecated.has no effect- See Also:
- Constant Field Values
-
MESOS_RESOURCEMANAGER_FRAMEWORK_ROLE
@Deprecated public static final String MESOS_RESOURCEMANAGER_FRAMEWORK_ROLE
Deprecated.has no effect- See Also:
- Constant Field Values
-
MESOS_RESOURCEMANAGER_FRAMEWORK_PRINCIPAL
@Deprecated public static final String MESOS_RESOURCEMANAGER_FRAMEWORK_PRINCIPAL
Deprecated.has no effect- See Also:
- Constant Field Values
-
MESOS_RESOURCEMANAGER_FRAMEWORK_SECRET
@Deprecated public static final String MESOS_RESOURCEMANAGER_FRAMEWORK_SECRET
Deprecated.has no effect- See Also:
- Constant Field Values
-
MESOS_RESOURCEMANAGER_FRAMEWORK_USER
@Deprecated public static final String MESOS_RESOURCEMANAGER_FRAMEWORK_USER
Deprecated.has no effect- See Also:
- Constant Field Values
-
MESOS_ARTIFACT_SERVER_SSL_ENABLED
@Deprecated public static final String MESOS_ARTIFACT_SERVER_SSL_ENABLED
Deprecated.has no effect- See Also:
- Constant Field Values
-
HDFS_DEFAULT_CONFIG
@Deprecated public static final String HDFS_DEFAULT_CONFIG
Deprecated.Use environment variable HADOOP_CONF_DIR instead.Path to hdfs-default.xml file.- See Also:
- Constant Field Values
-
HDFS_SITE_CONFIG
@Deprecated public static final String HDFS_SITE_CONFIG
Deprecated.Use environment variable HADOOP_CONF_DIR instead.Path to hdfs-site.xml file.- See Also:
- Constant Field Values
-
PATH_HADOOP_CONFIG
@Deprecated public static final String PATH_HADOOP_CONFIG
Deprecated.Use environment variable HADOOP_CONF_DIR instead.Path to Hadoop configuration.- See Also:
- Constant Field Values
-
FILESYSTEM_SCHEME
@Deprecated public static final String FILESYSTEM_SCHEME
Deprecated.UseCoreOptions.DEFAULT_FILESYSTEM_SCHEMEinstead.Key to specify the default filesystem to be used by a job. In the case offile:///, which is the default (seeDEFAULT_FILESYSTEM_SCHEME), the local filesystem is going to be used to resolve URIs without an explicit scheme.- See Also:
- Constant Field Values
-
FILESYSTEM_DEFAULT_OVERWRITE_KEY
@Deprecated public static final String FILESYSTEM_DEFAULT_OVERWRITE_KEY
Deprecated.UseCoreOptions.FILESYTEM_DEFAULT_OVERRIDEinstead.Key to specify whether the file systems should simply overwrite existing files.- See Also:
- Constant Field Values
-
FILESYSTEM_OUTPUT_ALWAYS_CREATE_DIRECTORY_KEY
@Deprecated public static final String FILESYSTEM_OUTPUT_ALWAYS_CREATE_DIRECTORY_KEY
Deprecated.Key to specify whether the file systems should always create a directory for the output, even with a parallelism of one.- See Also:
- Constant Field Values
-
DELIMITED_FORMAT_MAX_LINE_SAMPLES_KEY
@Deprecated public static final String DELIMITED_FORMAT_MAX_LINE_SAMPLES_KEY
Deprecated.The maximum number of line samples to be taken by the delimited input format, if no other value is specified for the data source.- See Also:
- Constant Field Values
-
DELIMITED_FORMAT_MIN_LINE_SAMPLES_KEY
@Deprecated public static final String DELIMITED_FORMAT_MIN_LINE_SAMPLES_KEY
Deprecated.The minimum number of line samples to be taken by the delimited input format, if no other value is specified for the data source.- See Also:
- Constant Field Values
-
DELIMITED_FORMAT_MAX_SAMPLE_LENGTH_KEY
@Deprecated public static final String DELIMITED_FORMAT_MAX_SAMPLE_LENGTH_KEY
Deprecated.useOptimizerOptions.DELIMITED_FORMAT_MAX_SAMPLE_LENinsteadThe maximum length of a single sampled record before the sampling is aborted.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_PORT_KEY
@Deprecated public static final String JOB_MANAGER_WEB_PORT_KEY
Deprecated.UseWebOptions.PORTinstead.The port for the runtime monitor web-frontend server.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_SSL_ENABLED
@Deprecated public static final String JOB_MANAGER_WEB_SSL_ENABLED
Deprecated.UseWebOptions.SSL_ENABLEDinstead.Config parameter to override SSL support for the JobManager Web UI.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_TMPDIR_KEY
@Deprecated public static final String JOB_MANAGER_WEB_TMPDIR_KEY
Deprecated.UseWebOptions.TMP_DIRinstead.The config parameter defining the flink web directory to be used by the webmonitor.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_UPLOAD_DIR_KEY
@Deprecated public static final String JOB_MANAGER_WEB_UPLOAD_DIR_KEY
Deprecated.UseWebOptions.UPLOAD_DIRinstead.The config parameter defining the directory for uploading the job jars. If not specified a dynamic directory will be used under the directory specified by JOB_MANAGER_WEB_TMPDIR_KEY.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_ARCHIVE_COUNT
@Deprecated public static final String JOB_MANAGER_WEB_ARCHIVE_COUNT
Deprecated.UseWebOptions.ARCHIVE_COUNTinstead.The config parameter defining the number of archived jobs for the jobmanager.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_LOG_PATH_KEY
@Deprecated public static final String JOB_MANAGER_WEB_LOG_PATH_KEY
Deprecated.UseWebOptions.LOG_PATHinstead.The log file location (may be in /log for standalone but under log directory when using YARN).- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_SUBMIT_ENABLED_KEY
@Deprecated public static final String JOB_MANAGER_WEB_SUBMIT_ENABLED_KEY
Deprecated.UseWebOptions.SUBMIT_ENABLEinstead.Config parameter indicating whether jobs can be uploaded and run from the web-frontend.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_CHECKPOINTS_DISABLE
@Deprecated public static final String JOB_MANAGER_WEB_CHECKPOINTS_DISABLE
Deprecated.Not possible to disable any longer. Use history size of 0.Flag to disable checkpoint stats.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_CHECKPOINTS_HISTORY_SIZE
@Deprecated public static final String JOB_MANAGER_WEB_CHECKPOINTS_HISTORY_SIZE
Deprecated.UseWebOptions.CHECKPOINTS_HISTORY_SIZEinstead.Config parameter defining the number of checkpoints to remember for recent history.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_BACK_PRESSURE_CLEAN_UP_INTERVAL
@Deprecated public static final String JOB_MANAGER_WEB_BACK_PRESSURE_CLEAN_UP_INTERVAL
Deprecated.- no longer used.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_BACK_PRESSURE_REFRESH_INTERVAL
@Deprecated public static final String JOB_MANAGER_WEB_BACK_PRESSURE_REFRESH_INTERVAL
Deprecated.- no longer used.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_BACK_PRESSURE_NUM_SAMPLES
@Deprecated public static final String JOB_MANAGER_WEB_BACK_PRESSURE_NUM_SAMPLES
Deprecated.- no longer used.- See Also:
- Constant Field Values
-
JOB_MANAGER_WEB_BACK_PRESSURE_DELAY
@Deprecated public static final String JOB_MANAGER_WEB_BACK_PRESSURE_DELAY
Deprecated.- no longer used.- See Also:
- Constant Field Values
-
AKKA_STARTUP_TIMEOUT
@Deprecated public static final String AKKA_STARTUP_TIMEOUT
Deprecated.UseAkkaOptions.STARTUP_TIMEOUTinstead.Timeout for the startup of the actor system.- See Also:
- Constant Field Values
-
AKKA_TRANSPORT_HEARTBEAT_INTERVAL
@Deprecated public static final String AKKA_TRANSPORT_HEARTBEAT_INTERVAL
Deprecated.UseAkkaOptions#TRANSPORT_HEARTBEAT_INTERVALinstead.Heartbeat interval of the transport failure detector.- See Also:
- Constant Field Values
-
AKKA_TRANSPORT_HEARTBEAT_PAUSE
@Deprecated public static final String AKKA_TRANSPORT_HEARTBEAT_PAUSE
Deprecated.UseAkkaOptions#TRANSPORT_HEARTBEAT_PAUSEinstead.Allowed heartbeat pause for the transport failure detector.- See Also:
- Constant Field Values
-
AKKA_TRANSPORT_THRESHOLD
@Deprecated public static final String AKKA_TRANSPORT_THRESHOLD
Deprecated.UseAkkaOptions#TRANSPORT_THRESHOLDinstead.Detection threshold of transport failure detector.- See Also:
- Constant Field Values
-
AKKA_WATCH_HEARTBEAT_INTERVAL
@Deprecated public static final String AKKA_WATCH_HEARTBEAT_INTERVAL
Deprecated.This option is no longer used and has no effect on Flink.Heartbeat interval of watch failure detector.- See Also:
- Constant Field Values
-
AKKA_WATCH_HEARTBEAT_PAUSE
@Deprecated public static final String AKKA_WATCH_HEARTBEAT_PAUSE
Deprecated.This option is no longer used and has no effect on Flink.Allowed heartbeat pause for the watch failure detector.- See Also:
- Constant Field Values
-
AKKA_WATCH_THRESHOLD
@Deprecated public static final String AKKA_WATCH_THRESHOLD
Deprecated.This option is no longer used and has no effect on Flink.Detection threshold for the phi accrual watch failure detector.- See Also:
- Constant Field Values
-
AKKA_TCP_TIMEOUT
@Deprecated public static final String AKKA_TCP_TIMEOUT
Deprecated.UseAkkaOptions.TCP_TIMEOUTinstead.Akka TCP timeout.- See Also:
- Constant Field Values
-
AKKA_SSL_ENABLED
@Deprecated public static final String AKKA_SSL_ENABLED
Deprecated.UseAkkaOptions.SSL_ENABLEDinstead.Override SSL support for the Akka transport.- See Also:
- Constant Field Values
-
AKKA_FRAMESIZE
@Deprecated public static final String AKKA_FRAMESIZE
Deprecated.UseAkkaOptions.FRAMESIZEinstead.Maximum framesize of akka messages.- See Also:
- Constant Field Values
-
AKKA_DISPATCHER_THROUGHPUT
@Deprecated public static final String AKKA_DISPATCHER_THROUGHPUT
Deprecated.UseAkkaOptions.DISPATCHER_THROUGHPUTinstead.Maximum number of messages until another actor is executed by the same thread.- See Also:
- Constant Field Values
-
AKKA_LOG_LIFECYCLE_EVENTS
@Deprecated public static final String AKKA_LOG_LIFECYCLE_EVENTS
Deprecated.UseAkkaOptions.LOG_LIFECYCLE_EVENTSinstead.Log lifecycle events.- See Also:
- Constant Field Values
-
AKKA_ASK_TIMEOUT
@Deprecated public static final String AKKA_ASK_TIMEOUT
Deprecated.UseAkkaOptions.ASK_TIMEOUTinstead.Timeout for all blocking calls on the cluster side.- See Also:
- Constant Field Values
-
AKKA_LOOKUP_TIMEOUT
@Deprecated public static final String AKKA_LOOKUP_TIMEOUT
Deprecated.UseAkkaOptions.LOOKUP_TIMEOUTinstead.Timeout for all blocking calls that look up remote actors.- See Also:
- Constant Field Values
-
AKKA_CLIENT_TIMEOUT
@Deprecated public static final String AKKA_CLIENT_TIMEOUT
Deprecated.UseClientOptions#CLIENT_TIMEOUTinstead.Timeout for all blocking calls on the client side.- See Also:
- Constant Field Values
-
AKKA_JVM_EXIT_ON_FATAL_ERROR
@Deprecated public static final String AKKA_JVM_EXIT_ON_FATAL_ERROR
Deprecated.UseAkkaOptions.JVM_EXIT_ON_FATAL_ERRORinstead.Exit JVM on fatal Akka errors.- See Also:
- Constant Field Values
-
SECURITY_SSL_ENABLED
@Deprecated public static final String SECURITY_SSL_ENABLED
Deprecated.useSecurityOptions.SSL_ENABLEDinstead- See Also:
- Constant Field Values
-
SECURITY_SSL_KEYSTORE
@Deprecated public static final String SECURITY_SSL_KEYSTORE
Deprecated.useSecurityOptions.SSL_KEYSTOREinstead- See Also:
- Constant Field Values
-
SECURITY_SSL_KEYSTORE_PASSWORD
@Deprecated public static final String SECURITY_SSL_KEYSTORE_PASSWORD
Deprecated.useSecurityOptions.SSL_KEYSTORE_PASSWORDinstead- See Also:
- Constant Field Values
-
SECURITY_SSL_KEY_PASSWORD
@Deprecated public static final String SECURITY_SSL_KEY_PASSWORD
Deprecated.useSecurityOptions.SSL_KEY_PASSWORDinstead- See Also:
- Constant Field Values
-
SECURITY_SSL_TRUSTSTORE
@Deprecated public static final String SECURITY_SSL_TRUSTSTORE
Deprecated.useSecurityOptions.SSL_TRUSTSTOREinstead- See Also:
- Constant Field Values
-
SECURITY_SSL_TRUSTSTORE_PASSWORD
@Deprecated public static final String SECURITY_SSL_TRUSTSTORE_PASSWORD
Deprecated.useSecurityOptions.SSL_TRUSTSTORE_PASSWORDinstead- See Also:
- Constant Field Values
-
SECURITY_SSL_PROTOCOL
@Deprecated public static final String SECURITY_SSL_PROTOCOL
Deprecated.useSecurityOptions.SSL_PROTOCOLinstead- See Also:
- Constant Field Values
-
SECURITY_SSL_ALGORITHMS
@Deprecated public static final String SECURITY_SSL_ALGORITHMS
Deprecated.useSecurityOptions.SSL_ALGORITHMSinstead- See Also:
- Constant Field Values
-
SECURITY_SSL_VERIFY_HOSTNAME
@Deprecated public static final String SECURITY_SSL_VERIFY_HOSTNAME
Deprecated.useSecurityOptions.SSL_VERIFY_HOSTNAMEinstead- See Also:
- Constant Field Values
-
STATE_BACKEND
@Deprecated public static final String STATE_BACKEND
Deprecated.UseCheckpointingOptions.STATE_BACKENDinstead.State backend for checkpoints.- See Also:
- Constant Field Values
-
FLINK_BASE_DIR_PATH_KEY
@Deprecated public static final String FLINK_BASE_DIR_PATH_KEY
Deprecated.This parameter should not be used any more. A running Flink cluster should make no assumption about its location.The key to the Flink base directory path. Was initially used for configurations of the web UI, but outdated now.- See Also:
- Constant Field Values
-
FLINK_JVM_OPTIONS
@Deprecated public static final String FLINK_JVM_OPTIONS
Deprecated.UseCoreOptions.FLINK_JVM_OPTIONSinstead.- See Also:
- Constant Field Values
-
HA_MODE
@PublicEvolving @Deprecated public static final String HA_MODE
Deprecated.Deprecated in favour ofHighAvailabilityOptions.HA_MODE- See Also:
- Constant Field Values
-
HA_JOB_MANAGER_PORT
@PublicEvolving public static final String HA_JOB_MANAGER_PORT
Ports used by the job manager if not in 'none' recovery mode.- See Also:
- Constant Field Values
-
RECOVERY_MODE
@Deprecated public static final String RECOVERY_MODE
Deprecated.Deprecated in favour ofHA_MODE.- See Also:
- Constant Field Values
-
RECOVERY_JOB_MANAGER_PORT
@Deprecated public static final String RECOVERY_JOB_MANAGER_PORT
Deprecated.Deprecated in favour ofHA_JOB_MANAGER_PORT.- See Also:
- Constant Field Values
-
RECOVERY_JOB_DELAY
@Deprecated public static final String RECOVERY_JOB_DELAY
Deprecated.This option is no longer used and has no effect on Flink.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_QUORUM_KEY
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_QUORUM_KEY
Deprecated.in favor ofHighAvailabilityOptions.HA_ZOOKEEPER_QUORUM.ZooKeeper servers.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_STORAGE_PATH
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_STORAGE_PATH
Deprecated.in favor ofHighAvailabilityOptions.HA_STORAGE_PATH.File system state backend base path for recoverable state handles. Recovery state is written to this path and the file state handles are persisted for recovery.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_DIR_KEY
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_DIR_KEY
Deprecated.in favor ofHighAvailabilityOptions.HA_ZOOKEEPER_ROOT.ZooKeeper root path.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_NAMESPACE_KEY
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_NAMESPACE_KEY
Deprecated.in favor ofHighAvailabilityOptions.HA_CLUSTER_ID.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_LATCH_PATH
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_LATCH_PATH
Deprecated.no longer used.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_JOBGRAPHS_PATH
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_JOBGRAPHS_PATH
Deprecated.in favor ofHighAvailabilityOptions.HA_ZOOKEEPER_JOBGRAPHS_PATH.ZooKeeper root path (ZNode) for job graphs.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_LEADER_PATH
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_LEADER_PATH
Deprecated.no longer used.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_CHECKPOINTS_PATH
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_CHECKPOINTS_PATH
Deprecated.no longer used.ZooKeeper root path (ZNode) for completed checkpoints.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_CHECKPOINT_COUNTER_PATH
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_CHECKPOINT_COUNTER_PATH
Deprecated.no longer used.ZooKeeper root path (ZNode) for checkpoint counters.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_MESOS_WORKERS_PATH
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_MESOS_WORKERS_PATH
Deprecated.has no effect- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_SESSION_TIMEOUT
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_SESSION_TIMEOUT
Deprecated.in favor ofHighAvailabilityOptions.ZOOKEEPER_SESSION_TIMEOUT.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_CONNECTION_TIMEOUT
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_CONNECTION_TIMEOUT
Deprecated.in favor ofHighAvailabilityOptions.ZOOKEEPER_CONNECTION_TIMEOUT.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_RETRY_WAIT
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_RETRY_WAIT
Deprecated.in favor ofHighAvailabilityOptions.ZOOKEEPER_RETRY_WAIT- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_MAX_RETRY_ATTEMPTS
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_MAX_RETRY_ATTEMPTS
Deprecated.in favor ofHighAvailabilityOptions.ZOOKEEPER_MAX_RETRY_ATTEMPTS.- See Also:
- Constant Field Values
-
HA_ZOOKEEPER_CLIENT_ACL
@PublicEvolving @Deprecated public static final String HA_ZOOKEEPER_CLIENT_ACL
Deprecated.in favor ofHighAvailabilityOptions.ZOOKEEPER_CLIENT_ACL.- See Also:
- Constant Field Values
-
ZOOKEEPER_SASL_DISABLE
@PublicEvolving @Deprecated public static final String ZOOKEEPER_SASL_DISABLE
Deprecated.in favor ofSecurityOptions.ZOOKEEPER_SASL_DISABLE.- See Also:
- Constant Field Values
-
ZOOKEEPER_SASL_SERVICE_NAME
@PublicEvolving @Deprecated public static final String ZOOKEEPER_SASL_SERVICE_NAME
Deprecated.in favor ofSecurityOptions.ZOOKEEPER_SASL_SERVICE_NAME.- See Also:
- Constant Field Values
-
ZOOKEEPER_QUORUM_KEY
@Deprecated public static final String ZOOKEEPER_QUORUM_KEY
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_QUORUM_KEY.- See Also:
- Constant Field Values
-
ZOOKEEPER_RECOVERY_PATH
@Deprecated public static final String ZOOKEEPER_RECOVERY_PATH
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_STORAGE_PATH.- See Also:
- Constant Field Values
-
ZOOKEEPER_DIR_KEY
@Deprecated public static final String ZOOKEEPER_DIR_KEY
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_DIR_KEY.- See Also:
- Constant Field Values
-
ZOOKEEPER_NAMESPACE_KEY
@Deprecated public static final String ZOOKEEPER_NAMESPACE_KEY
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_NAMESPACE_KEY.- See Also:
- Constant Field Values
-
ZOOKEEPER_LATCH_PATH
@Deprecated public static final String ZOOKEEPER_LATCH_PATH
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_LATCH_PATH.- See Also:
- Constant Field Values
-
ZOOKEEPER_LEADER_PATH
@Deprecated public static final String ZOOKEEPER_LEADER_PATH
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_LEADER_PATH.- See Also:
- Constant Field Values
-
ZOOKEEPER_JOBGRAPHS_PATH
@Deprecated public static final String ZOOKEEPER_JOBGRAPHS_PATH
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_JOBGRAPHS_PATH.- See Also:
- Constant Field Values
-
ZOOKEEPER_CHECKPOINTS_PATH
@Deprecated public static final String ZOOKEEPER_CHECKPOINTS_PATH
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_CHECKPOINTS_PATH.- See Also:
- Constant Field Values
-
ZOOKEEPER_CHECKPOINT_COUNTER_PATH
@Deprecated public static final String ZOOKEEPER_CHECKPOINT_COUNTER_PATH
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_CHECKPOINT_COUNTER_PATH.- See Also:
- Constant Field Values
-
ZOOKEEPER_MESOS_WORKERS_PATH
@Deprecated public static final String ZOOKEEPER_MESOS_WORKERS_PATH
Deprecated.has no effect- See Also:
- Constant Field Values
-
ZOOKEEPER_SESSION_TIMEOUT
@Deprecated public static final String ZOOKEEPER_SESSION_TIMEOUT
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_SESSION_TIMEOUT.- See Also:
- Constant Field Values
-
ZOOKEEPER_CONNECTION_TIMEOUT
@Deprecated public static final String ZOOKEEPER_CONNECTION_TIMEOUT
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_CONNECTION_TIMEOUT.- See Also:
- Constant Field Values
-
ZOOKEEPER_RETRY_WAIT
@Deprecated public static final String ZOOKEEPER_RETRY_WAIT
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_RETRY_WAIT.- See Also:
- Constant Field Values
-
ZOOKEEPER_MAX_RETRY_ATTEMPTS
@Deprecated public static final String ZOOKEEPER_MAX_RETRY_ATTEMPTS
Deprecated.Deprecated in favour ofHA_ZOOKEEPER_MAX_RETRY_ATTEMPTS.- See Also:
- Constant Field Values
-
METRICS_REPORTERS_LIST
@Deprecated public static final String METRICS_REPORTERS_LIST
Deprecated.UseMetricOptions.REPORTERS_LISTinstead.- See Also:
- Constant Field Values
-
METRICS_REPORTER_PREFIX
public static final String METRICS_REPORTER_PREFIX
The prefix for per-reporter configs. Has to be combined with a reporter name and the configs mentioned below.- See Also:
- Constant Field Values
-
METRICS_REPORTER_CLASS_SUFFIX
@Deprecated public static final String METRICS_REPORTER_CLASS_SUFFIX
Deprecated.- See Also:
- Constant Field Values
-
METRICS_REPORTER_FACTORY_CLASS_SUFFIX
@Deprecated public static final String METRICS_REPORTER_FACTORY_CLASS_SUFFIX
Deprecated.- See Also:
- Constant Field Values
-
METRICS_REPORTER_INTERVAL_SUFFIX
@Deprecated public static final String METRICS_REPORTER_INTERVAL_SUFFIX
Deprecated.- See Also:
- Constant Field Values
-
METRICS_REPORTER_SCOPE_DELIMITER
@Deprecated public static final String METRICS_REPORTER_SCOPE_DELIMITER
Deprecated.- See Also:
- Constant Field Values
-
METRICS_REPORTER_EXCLUDED_VARIABLES
@Deprecated public static final String METRICS_REPORTER_EXCLUDED_VARIABLES
Deprecated.- See Also:
- Constant Field Values
-
METRICS_REPORTER_ADDITIONAL_VARIABLES
@Deprecated public static final String METRICS_REPORTER_ADDITIONAL_VARIABLES
Deprecated.- See Also:
- Constant Field Values
-
METRICS_SCOPE_DELIMITER
@Deprecated public static final String METRICS_SCOPE_DELIMITER
Deprecated.UseMetricOptions.SCOPE_DELIMITERinstead.- See Also:
- Constant Field Values
-
METRICS_SCOPE_NAMING_JM
@Deprecated public static final String METRICS_SCOPE_NAMING_JM
Deprecated.UseMetricOptions.SCOPE_NAMING_JMinstead.- See Also:
- Constant Field Values
-
METRICS_SCOPE_NAMING_TM
@Deprecated public static final String METRICS_SCOPE_NAMING_TM
Deprecated.UseMetricOptions.SCOPE_NAMING_TMinstead.- See Also:
- Constant Field Values
-
METRICS_SCOPE_NAMING_JM_JOB
@Deprecated public static final String METRICS_SCOPE_NAMING_JM_JOB
Deprecated.UseMetricOptions.SCOPE_NAMING_JM_JOBinstead.- See Also:
- Constant Field Values
-
METRICS_SCOPE_NAMING_TM_JOB
@Deprecated public static final String METRICS_SCOPE_NAMING_TM_JOB
Deprecated.UseMetricOptions.SCOPE_NAMING_TM_JOBinstead.- See Also:
- Constant Field Values
-
METRICS_SCOPE_NAMING_TASK
@Deprecated public static final String METRICS_SCOPE_NAMING_TASK
Deprecated.UseMetricOptions.SCOPE_NAMING_TASKinstead.- See Also:
- Constant Field Values
-
METRICS_SCOPE_NAMING_OPERATOR
@Deprecated public static final String METRICS_SCOPE_NAMING_OPERATOR
Deprecated.UseMetricOptions.SCOPE_NAMING_OPERATORinstead.- See Also:
- Constant Field Values
-
METRICS_LATENCY_HISTORY_SIZE
@Deprecated public static final String METRICS_LATENCY_HISTORY_SIZE
Deprecated.UseMetricOptions.LATENCY_HISTORY_SIZEinstead.- See Also:
- Constant Field Values
-
SAVEPOINT_DIRECTORY_KEY
@PublicEvolving @Deprecated public static final String SAVEPOINT_DIRECTORY_KEY
Deprecated.UseCheckpointingOptions.SAVEPOINT_DIRECTORYinstead.The default directory for savepoints.- See Also:
- Constant Field Values
-
CHECKPOINTS_DIRECTORY_KEY
@PublicEvolving @Deprecated public static final String CHECKPOINTS_DIRECTORY_KEY
Deprecated.UseCheckpointingOptions.CHECKPOINTS_DIRECTORYinstead.The default directory used for persistent checkpoints.- See Also:
- Constant Field Values
-
SAVEPOINT_FS_DIRECTORY_KEY
@Deprecated public static final String SAVEPOINT_FS_DIRECTORY_KEY
Deprecated.This key was used in Flink versions <= 1.1.X with the savepoint backend configuration. We now always use the FileSystem for savepoints. For this, the only relevant config key isCheckpointingOptions.SAVEPOINT_DIRECTORY.- See Also:
- Constant Field Values
-
DEFAULT_PARALLELISM
@Deprecated public static final int DEFAULT_PARALLELISM
Deprecated.useCoreOptions.DEFAULT_PARALLELISMinsteadThe default parallelism for operations.- See Also:
- Constant Field Values
-
DEFAULT_EXECUTION_RETRIES
public static final int DEFAULT_EXECUTION_RETRIES
The default number of execution retries.- See Also:
- Constant Field Values
-
DEFAULT_LIBRARY_CACHE_MANAGER_CLEANUP_INTERVAL
@Deprecated public static final long DEFAULT_LIBRARY_CACHE_MANAGER_CLEANUP_INTERVAL
Deprecated.useBlobServerOptions.CLEANUP_INTERVALinsteadThe default library cache manager cleanup interval in seconds.
-
DEFAULT_JOB_MANAGER_IPC_PORT
@Deprecated public static final int DEFAULT_JOB_MANAGER_IPC_PORT
Deprecated.useJobManagerOptions.PORTinstead- See Also:
- Constant Field Values
-
DEFAULT_RESOURCE_MANAGER_IPC_PORT
@Deprecated public static final int DEFAULT_RESOURCE_MANAGER_IPC_PORT
Deprecated.UseResourceManagerOptions.IPC_PORTinstead.The default network port of the resource manager.- See Also:
- Constant Field Values
-
DEFAULT_BLOB_SERVICE_SSL_ENABLED
@Deprecated public static final boolean DEFAULT_BLOB_SERVICE_SSL_ENABLED
Deprecated.useBlobServerOptions.SSL_ENABLEDinstead- See Also:
- Constant Field Values
-
DEFAULT_BLOB_FETCH_RETRIES
@Deprecated public static final int DEFAULT_BLOB_FETCH_RETRIES
Deprecated.useBlobServerOptions.FETCH_RETRIESinstead- See Also:
- Constant Field Values
-
DEFAULT_BLOB_FETCH_CONCURRENT
@Deprecated public static final int DEFAULT_BLOB_FETCH_CONCURRENT
Deprecated.useBlobServerOptions.FETCH_CONCURRENTinstead- See Also:
- Constant Field Values
-
DEFAULT_BLOB_FETCH_BACKLOG
@Deprecated public static final int DEFAULT_BLOB_FETCH_BACKLOG
Deprecated.useBlobServerOptions.FETCH_BACKLOGinstead- See Also:
- Constant Field Values
-
DEFAULT_BLOB_SERVER_PORT
@Deprecated public static final String DEFAULT_BLOB_SERVER_PORT
Deprecated.useBlobServerOptions.PORTinstead- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_IPC_PORT
@Deprecated public static final int DEFAULT_TASK_MANAGER_IPC_PORT
Deprecated.useTaskManagerOptions.RPC_PORTinstead- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_DATA_PORT
@Deprecated public static final int DEFAULT_TASK_MANAGER_DATA_PORT
Deprecated.useNettyShuffleEnvironmentOptions.DATA_PORTinsteadThe default network port the task manager expects to receive transfer envelopes on. The0means that the TaskManager searches for a free port.- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_DATA_SSL_ENABLED
@Deprecated public static final boolean DEFAULT_TASK_MANAGER_DATA_SSL_ENABLED
Deprecated.useNettyShuffleEnvironmentOptions.DATA_SSL_ENABLEDinsteadThe default value to override ssl support for task manager's data transport.- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_TMP_PATH
@Deprecated public static final String DEFAULT_TASK_MANAGER_TMP_PATH
Deprecated.CoreOptions.TMP_DIRSprovides the default value nowThe default directory for temporary files of the task manager.
-
DEFAULT_MEMORY_MANAGER_MEMORY_FRACTION
@Deprecated public static final float DEFAULT_MEMORY_MANAGER_MEMORY_FRACTION
Deprecated.has no effect- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_NETWORK_NUM_BUFFERS
@Deprecated public static final int DEFAULT_TASK_MANAGER_NETWORK_NUM_BUFFERS
Deprecated.NettyShuffleEnvironmentOptions.NETWORK_NUM_BUFFERSprovides the default value nowConfig key has been deprecated. Therefore, no default value required.- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_MEMORY_SEGMENT_SIZE
@Deprecated public static final int DEFAULT_TASK_MANAGER_MEMORY_SEGMENT_SIZE
Deprecated.TaskManagerOptions.MEMORY_SEGMENT_SIZEprovides the default value nowConfig key has been deprecated. Therefore, no default value required.- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_NETWORK_DEFAULT_IO_MODE
@Deprecated public static final String DEFAULT_TASK_MANAGER_NETWORK_DEFAULT_IO_MODE
Deprecated.Not used anymore- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_DEBUG_MEMORY_USAGE_START_LOG_THREAD
@Deprecated public static final boolean DEFAULT_TASK_MANAGER_DEBUG_MEMORY_USAGE_START_LOG_THREAD
Deprecated.useTaskManagerOptions.DEBUG_MEMORY_LOGinsteadFlag indicating whether to start a thread, which repeatedly logs the memory usage of the JVM.- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_DEBUG_MEMORY_USAGE_LOG_INTERVAL_MS
@Deprecated public static final long DEFAULT_TASK_MANAGER_DEBUG_MEMORY_USAGE_LOG_INTERVAL_MS
Deprecated.The interval (in ms) for the log thread to log the current memory usage.- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_MAX_REGISTRATION_DURATION
@Deprecated public static final String DEFAULT_TASK_MANAGER_MAX_REGISTRATION_DURATION
Deprecated.useTaskManagerOptions.REGISTRATION_TIMEOUTinsteadThe default task manager's maximum registration duration.- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_INITIAL_REGISTRATION_PAUSE
@Deprecated public static final String DEFAULT_TASK_MANAGER_INITIAL_REGISTRATION_PAUSE
Deprecated.useClusterOptions.INITIAL_REGISTRATION_TIMEOUTinsteadThe default task manager's initial registration pause.- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_MAX_REGISTRATION_PAUSE
@Deprecated public static final String DEFAULT_TASK_MANAGER_MAX_REGISTRATION_PAUSE
Deprecated.useClusterOptions.MAX_REGISTRATION_TIMEOUTinsteadThe default task manager's maximum registration pause.- See Also:
- Constant Field Values
-
DEFAULT_TASK_MANAGER_REFUSED_REGISTRATION_PAUSE
@Deprecated public static final String DEFAULT_TASK_MANAGER_REFUSED_REGISTRATION_PAUSE
Deprecated.useClusterOptions.REFUSED_REGISTRATION_DELAYinsteadThe default task manager's refused registration pause.- See Also:
- Constant Field Values
-
DEFAULT_TASK_CANCELLATION_INTERVAL_MILLIS
@Deprecated public static final long DEFAULT_TASK_CANCELLATION_INTERVAL_MILLIS
Deprecated.Please useTaskManagerOptions.TASK_CANCELLATION_INTERVAL.- See Also:
- Constant Field Values
-
DEFAULT_RUNTIME_HASH_JOIN_BLOOM_FILTERS
@Deprecated public static final boolean DEFAULT_RUNTIME_HASH_JOIN_BLOOM_FILTERS
Deprecated.useAlgorithmOptions.HASH_JOIN_BLOOM_FILTERSinstead- See Also:
- Constant Field Values
-
DEFAULT_SPILLING_MAX_FAN
@Deprecated public static final int DEFAULT_SPILLING_MAX_FAN
Deprecated.useAlgorithmOptions.SPILLING_MAX_FANinsstead- See Also:
- Constant Field Values
-
DEFAULT_SORT_SPILLING_THRESHOLD
@Deprecated public static final float DEFAULT_SORT_SPILLING_THRESHOLD
Deprecated.useAlgorithmOptions.SORT_SPILLING_THRESHOLDinstead- See Also:
- Constant Field Values
-
DEFAULT_FS_STREAM_OPENING_TIMEOUT
public static final int DEFAULT_FS_STREAM_OPENING_TIMEOUT
The default timeout for filesystem stream opening: infinite (means max long milliseconds).- See Also:
- Constant Field Values
-
DEFAULT_USE_LARGE_RECORD_HANDLER
@Deprecated public static final boolean DEFAULT_USE_LARGE_RECORD_HANDLER
Deprecated.useAlgorithmOptions.USE_LARGE_RECORDS_HANDLERinsteadWhether to use the LargeRecordHandler when spilling.- See Also:
- Constant Field Values
-
DEFAULT_YARN_HEAP_CUTOFF
@Deprecated public static final int DEFAULT_YARN_HEAP_CUTOFF
Deprecated.Not used anymore, but remain here until Flink 2.0Minimum amount of memory to subtract from the process memory to get the TaskManager heap size. We came up with these values experimentally.- See Also:
- Constant Field Values
-
DEFAULT_YARN_HEAP_CUTOFF_RATIO
@Deprecated public static final float DEFAULT_YARN_HEAP_CUTOFF_RATIO
Deprecated.Not used anymore, but remain here until Flink 2.0Relative amount of memory to subtract from Java process memory to get the TaskManager heap size.- See Also:
- Constant Field Values
-
DEFAULT_YARN_CONTAINER_START_COMMAND_TEMPLATE
public static final String DEFAULT_YARN_CONTAINER_START_COMMAND_TEMPLATE
Start command template for Flink on YARN containers.- See Also:
- Constant Field Values
-
DEFAULT_YARN_JOB_MANAGER_PORT
@Deprecated public static final String DEFAULT_YARN_JOB_MANAGER_PORT
Deprecated.in favor ofYarnConfigOptions#APPLICATION_MASTER_PORT.Default port for the application master is 0, which means the operating system assigns an ephemeral port.- See Also:
- Constant Field Values
-
DEFAULT_MESOS_FAILOVER_TIMEOUT_SECS
@Deprecated public static final int DEFAULT_MESOS_FAILOVER_TIMEOUT_SECS
Deprecated.has no effect- See Also:
- Constant Field Values
-
DEFAULT_MESOS_ARTIFACT_SERVER_PORT
@Deprecated public static final int DEFAULT_MESOS_ARTIFACT_SERVER_PORT
Deprecated.has no effect- See Also:
- Constant Field Values
-
DEFAULT_MESOS_RESOURCEMANAGER_FRAMEWORK_NAME
@Deprecated public static final String DEFAULT_MESOS_RESOURCEMANAGER_FRAMEWORK_NAME
Deprecated.has no effect- See Also:
- Constant Field Values
-
DEFAULT_MESOS_RESOURCEMANAGER_FRAMEWORK_ROLE
@Deprecated public static final String DEFAULT_MESOS_RESOURCEMANAGER_FRAMEWORK_ROLE
Deprecated.has no effect- See Also:
- Constant Field Values
-
DEFAULT_MESOS_RESOURCEMANAGER_FRAMEWORK_USER
@Deprecated public static final String DEFAULT_MESOS_RESOURCEMANAGER_FRAMEWORK_USER
Deprecated.has no effect- See Also:
- Constant Field Values
-
DEFAULT_MESOS_ARTIFACT_SERVER_SSL_ENABLED
@Deprecated public static final boolean DEFAULT_MESOS_ARTIFACT_SERVER_SSL_ENABLED
Deprecated.has no effect- See Also:
- Constant Field Values
-
DEFAULT_FILESYSTEM_SCHEME
public static final String DEFAULT_FILESYSTEM_SCHEME
The default filesystem to be used, if no other scheme is specified in the user-provided URI (= local filesystem).- See Also:
- Constant Field Values
-
DEFAULT_FILESYSTEM_OVERWRITE
public static final boolean DEFAULT_FILESYSTEM_OVERWRITE
The default behavior with respect to overwriting existing files (= not overwrite).- See Also:
- Constant Field Values
-
DEFAULT_FILESYSTEM_ALWAYS_CREATE_DIRECTORY
@Deprecated public static final boolean DEFAULT_FILESYSTEM_ALWAYS_CREATE_DIRECTORY
Deprecated.The default behavior for output directory creating (create only directory when parallelism > 1).- See Also:
- Constant Field Values
-
DEFAULT_DELIMITED_FORMAT_MAX_LINE_SAMPLES
@Deprecated public static final int DEFAULT_DELIMITED_FORMAT_MAX_LINE_SAMPLES
Deprecated.The default maximum number of line samples taken by the delimited input format.- See Also:
- Constant Field Values
-
DEFAULT_DELIMITED_FORMAT_MIN_LINE_SAMPLES
@Deprecated public static final int DEFAULT_DELIMITED_FORMAT_MIN_LINE_SAMPLES
Deprecated.The default minimum number of line samples taken by the delimited input format.- See Also:
- Constant Field Values
-
DEFAULT_DELIMITED_FORMAT_MAX_SAMPLE_LEN
@Deprecated public static final int DEFAULT_DELIMITED_FORMAT_MAX_SAMPLE_LEN
Deprecated.useOptimizerOptions.DELIMITED_FORMAT_MAX_SAMPLE_LENinsteadThe default maximum sample length before sampling is aborted (2 MiBytes).- See Also:
- Constant Field Values
-
DEFAULT_JOB_MANAGER_WEB_FRONTEND_ADDRESS
@Deprecated public static final ConfigOption<String> DEFAULT_JOB_MANAGER_WEB_FRONTEND_ADDRESS
Deprecated.useWebOptions.ADDRESSinsteadThe config key for the address of the JobManager web frontend.
-
DEFAULT_JOB_MANAGER_WEB_FRONTEND_PORT
@Deprecated public static final int DEFAULT_JOB_MANAGER_WEB_FRONTEND_PORT
Deprecated.useWebOptions.PORTinsteadThe config key for the port of the JobManager web frontend. Setting this value to-1disables the web frontend.- See Also:
- Constant Field Values
-
DEFAULT_JOB_MANAGER_WEB_SSL_ENABLED
@Deprecated public static final boolean DEFAULT_JOB_MANAGER_WEB_SSL_ENABLED
Deprecated.useWebOptions.SSL_ENABLEDinsteadDefault value to override SSL support for the JobManager web UI.- See Also:
- Constant Field Values
-
DEFAULT_JOB_MANAGER_WEB_ARCHIVE_COUNT
@Deprecated public static final int DEFAULT_JOB_MANAGER_WEB_ARCHIVE_COUNT
Deprecated.useWebOptions.ARCHIVE_COUNTinsteadThe default number of archived jobs for the jobmanager.- See Also:
- Constant Field Values
-
DEFAULT_JOB_MANAGER_WEB_SUBMIT_ENABLED
@Deprecated public static final boolean DEFAULT_JOB_MANAGER_WEB_SUBMIT_ENABLED
Deprecated.useWebOptions.SUBMIT_ENABLEinsteadBy default, submitting jobs from the web-frontend is allowed.- See Also:
- Constant Field Values
-
DEFAULT_JOB_MANAGER_WEB_CHECKPOINTS_DISABLE
@Deprecated public static final boolean DEFAULT_JOB_MANAGER_WEB_CHECKPOINTS_DISABLE
Deprecated.Config key has been deprecated. Therefore, no default value required.- See Also:
- Constant Field Values
-
DEFAULT_JOB_MANAGER_WEB_CHECKPOINTS_HISTORY_SIZE
@Deprecated public static final int DEFAULT_JOB_MANAGER_WEB_CHECKPOINTS_HISTORY_SIZE
Deprecated.useWebOptions.CHECKPOINTS_HISTORY_SIZEinsteadDefault number of checkpoints to remember for recent history.- See Also:
- Constant Field Values
-
DEFAULT_JOB_MANAGER_WEB_BACK_PRESSURE_CLEAN_UP_INTERVAL
@Deprecated public static final int DEFAULT_JOB_MANAGER_WEB_BACK_PRESSURE_CLEAN_UP_INTERVAL
Deprecated.useWebOptions.BACKPRESSURE_CLEANUP_INTERVALinsteadTime after which cached stats are cleaned up.- See Also:
- Constant Field Values
-
DEFAULT_JOB_MANAGER_WEB_BACK_PRESSURE_REFRESH_INTERVAL
@Deprecated public static final int DEFAULT_JOB_MANAGER_WEB_BACK_PRESSURE_REFRESH_INTERVAL
Deprecated.useWebOptions.BACKPRESSURE_REFRESH_INTERVALinsteadTime after which available stats are deprecated and need to be refreshed (by resampling).- See Also:
- Constant Field Values
-
DEFAULT_JOB_MANAGER_WEB_BACK_PRESSURE_NUM_SAMPLES
@Deprecated public static final int DEFAULT_JOB_MANAGER_WEB_BACK_PRESSURE_NUM_SAMPLES
Deprecated.useWebOptions.BACKPRESSURE_NUM_SAMPLESinsteadNumber of samples to take to determine back pressure.- See Also:
- Constant Field Values
-
DEFAULT_JOB_MANAGER_WEB_BACK_PRESSURE_DELAY
@Deprecated public static final int DEFAULT_JOB_MANAGER_WEB_BACK_PRESSURE_DELAY
Deprecated.useWebOptions.BACKPRESSURE_DELAYinsteadDelay between samples to determine back pressure.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_TRANSPORT_HEARTBEAT_INTERVAL
@Deprecated public static final String DEFAULT_AKKA_TRANSPORT_HEARTBEAT_INTERVAL
Deprecated.UseAkkaOptions#TRANSPORT_HEARTBEAT_INTERVALinstead.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_TRANSPORT_HEARTBEAT_PAUSE
@Deprecated public static final String DEFAULT_AKKA_TRANSPORT_HEARTBEAT_PAUSE
Deprecated.UseAkkaOptions#TRANSPORT_HEARTBEAT_PAUSEinstead.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_TRANSPORT_THRESHOLD
@Deprecated public static final double DEFAULT_AKKA_TRANSPORT_THRESHOLD
Deprecated.UseAkkaOptions#TRANSPORT_THRESHOLDinstead.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_WATCH_THRESHOLD
@Deprecated public static final double DEFAULT_AKKA_WATCH_THRESHOLD
Deprecated.This default value is no longer used and has no effect on Flink.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_DISPATCHER_THROUGHPUT
@Deprecated public static final int DEFAULT_AKKA_DISPATCHER_THROUGHPUT
Deprecated.UseAkkaOptions.DISPATCHER_THROUGHPUTinstead.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_LOG_LIFECYCLE_EVENTS
@Deprecated public static final boolean DEFAULT_AKKA_LOG_LIFECYCLE_EVENTS
Deprecated.UseAkkaOptions.LOG_LIFECYCLE_EVENTSinstead.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_FRAMESIZE
@Deprecated public static final String DEFAULT_AKKA_FRAMESIZE
Deprecated.UseAkkaOptions.FRAMESIZEinstead.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_ASK_TIMEOUT
@Deprecated public static final String DEFAULT_AKKA_ASK_TIMEOUT
Deprecated.UseAkkaOptions.ASK_TIMEOUTinstead.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_LOOKUP_TIMEOUT
@Deprecated public static final String DEFAULT_AKKA_LOOKUP_TIMEOUT
Deprecated.UseAkkaOptions.LOOKUP_TIMEOUTinstead.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_CLIENT_TIMEOUT
@Deprecated public static final String DEFAULT_AKKA_CLIENT_TIMEOUT
Deprecated.UseClientOptions#CLIENT_TIMEOUTinstead.- See Also:
- Constant Field Values
-
DEFAULT_AKKA_SSL_ENABLED
@Deprecated public static final boolean DEFAULT_AKKA_SSL_ENABLED
Deprecated.UseAkkaOptions.SSL_ENABLEDinstead.- See Also:
- Constant Field Values
-
DEFAULT_SECURITY_SSL_ENABLED
@Deprecated public static final boolean DEFAULT_SECURITY_SSL_ENABLED
Deprecated.useSecurityOptions.SSL_ENABLEDinstead- See Also:
- Constant Field Values
-
DEFAULT_SECURITY_SSL_PROTOCOL
@Deprecated public static final String DEFAULT_SECURITY_SSL_PROTOCOL
Deprecated.useSecurityOptions.SSL_PROTOCOLinstead- See Also:
- Constant Field Values
-
DEFAULT_SECURITY_SSL_ALGORITHMS
@Deprecated public static final String DEFAULT_SECURITY_SSL_ALGORITHMS
Deprecated.useSecurityOptions.SSL_ALGORITHMSinstead- See Also:
- Constant Field Values
-
DEFAULT_SECURITY_SSL_VERIFY_HOSTNAME
@Deprecated public static final boolean DEFAULT_SECURITY_SSL_VERIFY_HOSTNAME
Deprecated.useSecurityOptions.SSL_VERIFY_HOSTNAMEinstead- See Also:
- Constant Field Values
-
DEFAULT_STATE_BACKEND
public static final String DEFAULT_STATE_BACKEND
- See Also:
- Constant Field Values
-
LOCAL_NUMBER_TASK_MANAGER
public static final String LOCAL_NUMBER_TASK_MANAGER
Sets the number of local task managers.- See Also:
- Constant Field Values
-
DEFAULT_LOCAL_NUMBER_TASK_MANAGER
public static final int DEFAULT_LOCAL_NUMBER_TASK_MANAGER
- See Also:
- Constant Field Values
-
LOCAL_NUMBER_JOB_MANAGER
public static final String LOCAL_NUMBER_JOB_MANAGER
- See Also:
- Constant Field Values
-
DEFAULT_LOCAL_NUMBER_JOB_MANAGER
public static final int DEFAULT_LOCAL_NUMBER_JOB_MANAGER
- See Also:
- Constant Field Values
-
LOCAL_NUMBER_RESOURCE_MANAGER
@Deprecated public static final String LOCAL_NUMBER_RESOURCE_MANAGER
Deprecated.UseResourceManagerOptions.LOCAL_NUMBER_RESOURCE_MANAGERinstead.- See Also:
- Constant Field Values
-
DEFAULT_LOCAL_NUMBER_RESOURCE_MANAGER
@Deprecated public static final int DEFAULT_LOCAL_NUMBER_RESOURCE_MANAGER
Deprecated.UseResourceManagerOptions.LOCAL_NUMBER_RESOURCE_MANAGERinstead.- See Also:
- Constant Field Values
-
LOCAL_START_WEBSERVER
@Deprecated public static final String LOCAL_START_WEBSERVER
Deprecated.Has no effect; the web-server is always started. Will be removed in 2.0.- See Also:
- Constant Field Values
-
DEFAULT_HA_MODE
@PublicEvolving @Deprecated public static final String DEFAULT_HA_MODE
Deprecated.Deprecated in favour ofHighAvailabilityOptions.HA_MODE- See Also:
- Constant Field Values
-
DEFAULT_RECOVERY_MODE
@Deprecated public static final String DEFAULT_RECOVERY_MODE
Deprecated.Deprecated in favour ofDEFAULT_HA_MODE- See Also:
- Constant Field Values
-
DEFAULT_HA_JOB_MANAGER_PORT
@PublicEvolving @Deprecated public static final String DEFAULT_HA_JOB_MANAGER_PORT
Deprecated.No longer used.Default port used by the job manager if not in standalone recovery mode. If0the OS picks a random port port.- See Also:
- Constant Field Values
-
DEFAULT_RECOVERY_JOB_MANAGER_PORT
@Deprecated public static final String DEFAULT_RECOVERY_JOB_MANAGER_PORT
Deprecated.Deprecated in favour ofDEFAULT_HA_JOB_MANAGER_PORT- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_DIR_KEY
@Deprecated public static final String DEFAULT_ZOOKEEPER_DIR_KEY
Deprecated.in favor ofHighAvailabilityOptions.HA_ZOOKEEPER_ROOT.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_NAMESPACE_KEY
@Deprecated public static final String DEFAULT_ZOOKEEPER_NAMESPACE_KEY
Deprecated.in favor ofHighAvailabilityOptions.HA_CLUSTER_ID.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_LATCH_PATH
@Deprecated public static final String DEFAULT_ZOOKEEPER_LATCH_PATH
Deprecated.no longer used.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_LEADER_PATH
@Deprecated public static final String DEFAULT_ZOOKEEPER_LEADER_PATH
Deprecated.no longer used.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_JOBGRAPHS_PATH
@Deprecated public static final String DEFAULT_ZOOKEEPER_JOBGRAPHS_PATH
Deprecated.in favor ofHighAvailabilityOptions.HA_ZOOKEEPER_JOBGRAPHS_PATH.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_CHECKPOINTS_PATH
@Deprecated public static final String DEFAULT_ZOOKEEPER_CHECKPOINTS_PATH
Deprecated.no longer used.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_CHECKPOINT_COUNTER_PATH
@Deprecated public static final String DEFAULT_ZOOKEEPER_CHECKPOINT_COUNTER_PATH
Deprecated.no longer used.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_MESOS_WORKERS_PATH
@Deprecated public static final String DEFAULT_ZOOKEEPER_MESOS_WORKERS_PATH
Deprecated.has no effect- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_SESSION_TIMEOUT
@Deprecated public static final int DEFAULT_ZOOKEEPER_SESSION_TIMEOUT
Deprecated.in favor ofHighAvailabilityOptions.ZOOKEEPER_SESSION_TIMEOUT.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_CONNECTION_TIMEOUT
@Deprecated public static final int DEFAULT_ZOOKEEPER_CONNECTION_TIMEOUT
Deprecated.in favor ofHighAvailabilityOptions.ZOOKEEPER_CONNECTION_TIMEOUT.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_RETRY_WAIT
@Deprecated public static final int DEFAULT_ZOOKEEPER_RETRY_WAIT
Deprecated.in favor ofHighAvailabilityOptions.ZOOKEEPER_RETRY_WAIT.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_MAX_RETRY_ATTEMPTS
@Deprecated public static final int DEFAULT_ZOOKEEPER_MAX_RETRY_ATTEMPTS
Deprecated.in favor ofHighAvailabilityOptions.ZOOKEEPER_MAX_RETRY_ATTEMPTS.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_CLIENT_PORT
@Deprecated public static final int DEFAULT_ZOOKEEPER_CLIENT_PORT
Deprecated.in favor ofFlinkZookeeperQuorumPeer#DEFAULT_ZOOKEEPER_CLIENT_PORT.ZooKeeper default client port.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_INIT_LIMIT
@Deprecated public static final int DEFAULT_ZOOKEEPER_INIT_LIMIT
Deprecated.in favor ofFlinkZookeeperQuorumPeer#DEFAULT_ZOOKEEPER_INIT_LIMIT.ZooKeeper default init limit.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_SYNC_LIMIT
@Deprecated public static final int DEFAULT_ZOOKEEPER_SYNC_LIMIT
Deprecated.in favor ofFlinkZookeeperQuorumPeer#DEFAULT_ZOOKEEPER_SYNC_LIMIT.ZooKeeper default sync limit.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_PEER_PORT
@Deprecated public static final int DEFAULT_ZOOKEEPER_PEER_PORT
Deprecated.in favor ofFlinkZookeeperQuorumPeer#DEFAULT_ZOOKEEPER_PEER_PORT.ZooKeeper default peer port.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_LEADER_PORT
@Deprecated public static final int DEFAULT_ZOOKEEPER_LEADER_PORT
Deprecated.in favor ofFlinkZookeeperQuorumPeer#DEFAULT_ZOOKEEPER_LEADER_PORT.ZooKeeper default leader port.- See Also:
- Constant Field Values
-
DEFAULT_ZOOKEEPER_SASL_DISABLE
@Deprecated public static final boolean DEFAULT_ZOOKEEPER_SASL_DISABLE
Deprecated.in favor ofSecurityOptions.ZOOKEEPER_SASL_DISABLE.Defaults for ZK client security.- See Also:
- Constant Field Values
-
DEFAULT_HA_ZOOKEEPER_CLIENT_ACL
@Deprecated public static final String DEFAULT_HA_ZOOKEEPER_CLIENT_ACL
Deprecated.in favor ofHighAvailabilityOptions.ZOOKEEPER_CLIENT_ACL.ACL options supported "creator" or "open".- See Also:
- Constant Field Values
-
DEFAULT_METRICS_LATENCY_HISTORY_SIZE
@Deprecated public static final int DEFAULT_METRICS_LATENCY_HISTORY_SIZE
Deprecated.UseMetricOptions.LATENCY_HISTORY_SIZEinstead.- See Also:
- Constant Field Values
-
ENV_FLINK_CONF_DIR
public static final String ENV_FLINK_CONF_DIR
The environment variable name which contains the location of the configuration directory.- See Also:
- Constant Field Values
-
ENV_FLINK_LIB_DIR
public static final String ENV_FLINK_LIB_DIR
The environment variable name which contains the location of the lib folder.- See Also:
- Constant Field Values
-
DEFAULT_FLINK_LIB_DIR
public static final String DEFAULT_FLINK_LIB_DIR
The default Flink lib directory if none has been specified viaENV_FLINK_LIB_DIR.- See Also:
- Constant Field Values
-
ENV_FLINK_OPT_DIR
public static final String ENV_FLINK_OPT_DIR
The environment variable name which contains the location of the opt directory.- See Also:
- Constant Field Values
-
DEFAULT_FLINK_OPT_DIR
public static final String DEFAULT_FLINK_OPT_DIR
The default Flink opt directory if none has been specified viaENV_FLINK_OPT_DIR.- See Also:
- Constant Field Values
-
ENV_FLINK_PLUGINS_DIR
public static final String ENV_FLINK_PLUGINS_DIR
The environment variable name which contains the location of the plugins folder.- See Also:
- Constant Field Values
-
DEFAULT_FLINK_PLUGINS_DIRS
public static final String DEFAULT_FLINK_PLUGINS_DIRS
The default Flink plugins directory if none has been specified viaENV_FLINK_PLUGINS_DIR.- See Also:
- Constant Field Values
-
ENV_FLINK_BIN_DIR
public static final String ENV_FLINK_BIN_DIR
The environment variable name which contains the location of the bin directory.- See Also:
- Constant Field Values
-
ENV_FLINK_HOME_DIR
public static final String ENV_FLINK_HOME_DIR
The environment variable name which contains the Flink installation root directory.- See Also:
- Constant Field Values
-
DEFAULT_FLINK_USR_LIB_DIR
public static final String DEFAULT_FLINK_USR_LIB_DIR
The user lib directory name.- See Also:
- Constant Field Values
-
FLINK_REST_CLIENT_HEADERS
public static final String FLINK_REST_CLIENT_HEADERS
The environment variable name which contains a list of newline-separated HTTP headers for Flink's REST client.- See Also:
- Constant Field Values
-
DEFAULT_CHARSET
public static final Charset DEFAULT_CHARSET
-
-