Class JobConfig
- All Implemented Interfaces:
DataSerializable
,IdentifiedDataSerializable
Serialized form of this class should not be changed due to backward
compatibility for JobResult
.
- Since:
- Jet 3.0
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionAdds the given classes and recursively all their nested (inner & anonymous) classes to the Jet job's classpath.addClasspathResource
(File file) Adds a file that will be available as a resource on the Jet job's classpath.addClasspathResource
(File file, String id) Adds a file that will be available as a resource on the Jet job's classpath.addClasspathResource
(String path) Adds a file that will be available as a resource on the Jet job's classpath.addClasspathResource
(String path, String id) Adds a file that will be available as a resource on the Jet job's classpath.addClasspathResource
(URL url) Adds a resource that will be available on the Jet job's classpath.addClasspathResource
(URL url, String id) Adds a resource that will be available on the Jet job's classpath.addCustomClasspath
(String name, String path) Adds custom classpath element to a stage with the given name.addCustomClasspaths
(String name, List<String> paths) Adds custom classpath elements to a stage with the given name.Adds a JAR whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code.Adds a JAR whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code.Adds a JAR whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code.addJarsInZip
(File file) Adds a ZIP file with JARs whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code.addJarsInZip
(String path) Adds a ZIP file with JARs whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code.addJarsInZip
(URL url) Adds a ZIP file with JARs whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code.addPackage
(String... packages) Adds recursively all the classes and resources in given packages to the Jet job's classpath.Attaches all the files/directories in the supplied map, as if by callingattachDirectory(dir, id)
for every entry that resolves to a directory andattachFile(file, id)
for every entry that resolves to a regular file.attachDirectory
(File file) Adds the supplied directory to the list of files that will be available to the job while it's executing in the Jet cluster.attachDirectory
(File file, String id) Adds the supplied directory to the list of files that will be available to the job while it's executing in the Jet cluster.attachDirectory
(String path) Adds the directory identified by the supplied pathname to the list of files that will be available to the job while it's executing in the Jet cluster.attachDirectory
(String path, String id) Adds the directory identified by the supplied pathname to the list of files that will be available to the job while it's executing in the Jet cluster.attachDirectory
(URL url) Adds the directory identified by the supplied URL to the list of directories that will be available to the job while it's executing in the Jet cluster.attachDirectory
(URL url, String id) Adds the directory identified by the supplied URL to the list of directories that will be available to the job while it's executing in the Jet cluster.attachFile
(File file) Adds the supplied file to the list of resources that will be available to the job while it's executing in the Jet cluster.attachFile
(File file, String id) Adds the supplied file to the list of files that will be available to the job while it's executing in the Jet cluster.attachFile
(String path) Adds the file identified by the supplied pathname to the list of files that will be available to the job while it's executing in the Jet cluster.attachFile
(String path, String id) Adds the file identified by the supplied pathname to the list of files that will be available to the job while it's executing in the Jet cluster.attachFile
(URL url) Adds the file identified by the supplied URL as a resource that will be available to the job while it's executing in the Jet cluster.attachFile
(URL url, String id) Adds the file identified by the supplied URL to the list of resources that will be available to the job while it's executing in the Jet cluster.boolean
<T> T
getArgument
(String key) Returns the value to which the specified key is mapped, or null if there is no mapping for the key.int
Returns type identifier for this class.Returns the configuredJobClassLoaderFactory
.Returns configured custom classpath elements, SeeaddCustomClasspath(String, String)
andaddCustomClasspaths(String, List)
int
Returns DataSerializableFactory factory ID for this class.Returns the configured initial snapshot name ornull
if no initial snapshot is configured.long
Returns the maximum number of records that can be accumulated by any singleProcessor
instance in the context of the job.getName()
Returns the name of the job ornull
if no name was given.Returns the configuredprocessing guarantee
.Returns all the registered resource configurations.Returns all the registered serializer configurations.long
Returns the configuredsnapshot interval
.long
Returns maximum execution time for the job in milliseconds.int
hashCode()
boolean
Returns whether auto-scaling is enabled, seesetAutoScaling(boolean)
.boolean
Returns if metrics collection is enabled for the job.boolean
Tells whethersplit brain protection
is enabled.boolean
Returns whether metrics should be stored in the cluster after the job completes successfully.boolean
Returns whether the job will be suspended on failure, seesetSuspendOnFailure(boolean)
.void
lock()
Used to prevent further mutations the config after submitting it with a job execution.void
Reads fields from the input stream<T,
S extends StreamSerializer<T>>
JobConfigregisterSerializer
(Class<T> clazz, Class<S> serializerClass) Registers the given serializer for the given class for the scope of the job.setArgument
(String key, Object value) Associates the specified value with the specified key.setAutoScaling
(boolean enabled) Sets whether Jet will scale the job up or down when a member is added or removed from the cluster.setClassLoaderFactory
(JobClassLoaderFactory classLoaderFactory) Sets a customJobClassLoaderFactory
that will be used to load job classes and resources on Jet members.setInitialSnapshotName
(String initialSnapshotName) Sets the exported state snapshot name to restore the initial job state from.setMaxProcessorAccumulatedRecords
(long maxProcessorAccumulatedRecords) Sets the maximum number of records that can be accumulated by any singleProcessor
instance in the context of the job.setMetricsEnabled
(boolean enabled) Sets whether metrics collection should be enabled for the job.Sets the name of the job.setProcessingGuarantee
(ProcessingGuarantee processingGuarantee) Set theprocessing guarantee
for the job.setSnapshotIntervalMillis
(long snapshotInterval) Sets the snapshot interval in milliseconds — the interval between the completion of the previous snapshot and the start of a new one.setSplitBrainProtection
(boolean isEnabled) Configures the split brain protection feature.setStoreMetricsAfterJobCompletion
(boolean storeMetricsAfterJobCompletion) Sets whether metrics should be stored in the cluster after the job completes.setSuspendOnFailure
(boolean suspendOnFailure) Sets what happens if the job execution fails: If enabled, the job will be suspended.setTimeoutMillis
(long timeoutMillis) Sets the maximum execution time for the job in milliseconds.toString()
void
Writes object fields to output stream
-
Constructor Details
-
JobConfig
public JobConfig()
-
-
Method Details
-
getName
Returns the name of the job ornull
if no name was given. -
setName
Sets the name of the job. There can be at most one active job in the cluster with particular name, however, the name can be reused after the previous job with that name completed or failed. SeeJetService.newJobIfAbsent(com.hazelcast.jet.core.DAG, com.hazelcast.jet.config.JobConfig)
. An active job is a job that is running, suspended or waiting to be run.The job name is printed in logs and is visible in Management Center.
The default value is
null
. Must be set tonull
for light jobs.- Returns:
this
instance for fluent API- Since:
- Jet 3.0
-
isSplitBrainProtectionEnabled
public boolean isSplitBrainProtectionEnabled()Tells whethersplit brain protection
is enabled. -
setSplitBrainProtection
Configures the split brain protection feature. When enabled, Jet will restart the job after a topology change only if the cluster quorum is satisfied. The quorum value iscluster size at job submission time / 2 + 1
.The job can be restarted only if the size of the cluster after restart is at least the quorum value. Only one of the clusters formed due to a split-brain condition can satisfy the quorum. For example, if at the time of job submission the cluster size was 5 and a network partition causes two clusters with sizes 3 and 2 to form, the job will restart only on the cluster with size 3.
Adding new nodes to the cluster after starting the job may defeat this mechanism. For instance, if there are 5 members at submission time (i.e., the quorum value is 3) and later a new node joins, a split into two clusters of size 3 will allow the job to be restarted on both sides.
Split-brain protection is disabled by default.
If auto scaling is disabled and you manually
Job.resume()
the job, the job won't start executing until the quorum is met, but will remain in the resumed state.Ignored for light jobs.
- Returns:
this
instance for fluent API
-
isAutoScaling
public boolean isAutoScaling()Returns whether auto-scaling is enabled, seesetAutoScaling(boolean)
. -
setAutoScaling
Sets whether Jet will scale the job up or down when a member is added or removed from the cluster. Enabled by default. Ignored for light jobs.+--------------------------+-----------------------+----------------+ | Auto scaling | Member added | Member removed | +--------------------------+-----------------------+----------------+ | Enabled | restart (after delay) | restart | | Disabled - snapshots on | no action | suspend | | Disabled - snapshots off | no action | fail | +--------------------------+-----------------------+----------------+
- Returns:
this
instance for fluent API- See Also:
-
isSuspendOnFailure
public boolean isSuspendOnFailure()Returns whether the job will be suspended on failure, seesetSuspendOnFailure(boolean)
.- Since:
- Jet 4.3
-
setSuspendOnFailure
Sets what happens if the job execution fails:- If enabled, the job will be suspended. It can later be resumed or upgraded and the computation state will be preserved.
- If disabled, the job will be terminated. The state snapshots will be deleted.
By default, it's disabled. Ignored for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.3
-
getProcessingGuarantee
Returns the configuredprocessing guarantee
. -
setProcessingGuarantee
Set theprocessing guarantee
for the job. When the processing guarantee is set to at-least-once or exactly-once, the snapshot interval can be configured viasetSnapshotIntervalMillis(long)
, otherwise it will default to 10 seconds.The default value is
ProcessingGuarantee.NONE
. Must be set toNONE
for light jobs.- Returns:
this
instance for fluent API
-
getSnapshotIntervalMillis
public long getSnapshotIntervalMillis()Returns the configuredsnapshot interval
. -
setSnapshotIntervalMillis
Sets the snapshot interval in milliseconds — the interval between the completion of the previous snapshot and the start of a new one. Must be set to a positive value. This setting is only relevant with at-least-once or exactly-once processing guarantees.Default value is set to 10 seconds.
- Returns:
this
instance for fluent API
-
addClass
Adds the given classes and recursively all their nested (inner & anonymous) classes to the Jet job's classpath. They will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code. (An important example is theIMap
data source, which can instantiate only the classes from the Jet instance's classpath.)See also
addJar(java.net.URL)
andaddClasspathResource(java.net.URL)
.Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
addPackage
Adds recursively all the classes and resources in given packages to the Jet job's classpath. They will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code. (An important example is theIMap
data source, which can instantiate only the classes from the Jet instance's classpath.)See also
addJar(java.net.URL)
andaddClasspathResource(java.net.URL)
.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.1
-
addJar
Adds a JAR whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code. An important example is theIMap
data source, which can instantiate only the classes from the Jet instance's classpath.This variant identifies the JAR with a URL, which must contain at least one path segment. The last path segment ("filename") will be used as the resource ID - if there's already a resource with that ID, it will not be replaced.
Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
addJar
Adds a JAR whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code. An important example is theIMap
data source, which can instantiate only the classes from the Jet instance's classpath.This variant identifies the JAR with a
File
. The filename part of the path will be used as the resource ID - if there's already a resource with that ID, it will not be replaced.Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
addJar
Adds a JAR whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code. An important example is theIMap
data source, which can instantiate only the classes from the Jet instance's classpath.This variant identifies the JAR with a path string. The filename part will be used as the resource ID - if there's already a resource with that ID, it will not be replaced.
Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
addJarsInZip
Adds a ZIP file with JARs whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code. (An important example is theIMap
data source, which can instantiate only the classes from the Jet instance's classpath.)This variant identifies the ZIP file with a URL, which must contain at least one path segment. The last path segment ("filename") will be used as the resource ID, so two ZIPs with the same filename will be in conflict.
The ZIP file should contain only JARs. Any other files will be ignored.
Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
addJarsInZip
Adds a ZIP file with JARs whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code. (An important example is theIMap
data source, which can instantiate only the classes from the Jet instance's classpath.)This variant identifies the ZIP file with a
File
. The filename part will be used as the resource ID, so two ZIPs with the same filename will be in conflict.The ZIP file should contain only JARs. Any other files will be ignored.
Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
addJarsInZip
Adds a ZIP file with JARs whose contents will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code. (An important example is theIMap
data source, which can instantiate only the classes from the Jet instance's classpath.)This variant identifies the ZIP file with a path string. The filename part will be used as the resource ID, so two ZIPs with the same filename will be in conflict.
The ZIP file should contain only JARs. Any other files will be ignored.
Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
addClasspathResource
Adds a resource that will be available on the Jet job's classpath. All the code attached to the underlying pipeline or DAG will have access to it.This variant identifies the resource with a URL, which must contain at least one path segment. The last path segment ("filename") will be used as the resource ID, so two resources with the same filename will be in conflict.
Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
addClasspathResource
Adds a resource that will be available on the Jet job's classpath. All the code attached to the underlying pipeline or DAG will have access to it. The suppliedid
becomes the path under which the resource is available from the class loader.Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
addClasspathResource
Adds a file that will be available as a resource on the Jet job's classpath. All the code attached to the underlying pipeline or DAG will have access to it. The file will reside in the root of the classpath, under its own filename. This means that two files with the same filename will be in conflict.Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
addClasspathResource
Adds a file that will be available as a resource on the Jet job's classpath. All the code attached to the underlying pipeline or DAG will have access to it. The suppliedid
becomes the path under which the resource is available from the class loader.Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
addClasspathResource
Adds a file that will be available as a resource on the Jet job's classpath. All the code attached to the underlying pipeline or DAG will have access to it. It will reside in the root of the classpath, under its own filename. This means that two files with the same filename will be in conflict.Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
addClasspathResource
Adds a file that will be available as a resource on the Jet job's classpath. All the code attached to the underlying pipeline or DAG will have access to it. The suppliedid
becomes the path under which the resource is available from the class loader.Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
addCustomClasspath
Adds custom classpath element to a stage with the given name.BatchSource<String> source = ... JobConfig config = new JobConfig(); config.addCustomClasspath(source.name(), "hazelcast-client-3.12.13.jar");
- Parameters:
name
- name of the stage, must be unique for the whole pipeline (the stage name can be set viaStage.setName(String)
)path
- path to the jar relative to the `ext` directory- Returns:
this
instance for fluent API
-
addCustomClasspaths
@Nonnull @Beta public JobConfig addCustomClasspaths(@Nonnull String name, @Nonnull List<String> paths) Adds custom classpath elements to a stage with the given name.BatchSource<String> source = ... JobConfig config = new JobConfig(); config.addCustomClasspaths(source.name(), jarList);
- Parameters:
name
- name of the stage, must be unique for the whole pipeline (the stage name can be set viaStage.setName(String)
)paths
- paths to the jar relative to the `ext` directory- Returns:
this
instance for fluent API
-
attachFile
Adds the file identified by the supplied URL as a resource that will be available to the job while it's executing in the Jet cluster. The resource's filename (the last path segment in the URL) becomes its ID, so two resources with the same filename will be in conflict.To retrieve the file from within the Jet job, call
ctx.attachedFile(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. The file will have the same name as the one supplied here, but it will be in a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachFile
Adds the file identified by the supplied URL to the list of resources that will be available to the job while it's executing in the Jet cluster. The file will be registered under the supplied ID.To retrieve the file from within the Jet job, call
ctx.attachedFile(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. The file will have the same name as the one supplied here, but it will be in a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachFile
Adds the supplied file to the list of resources that will be available to the job while it's executing in the Jet cluster. The filename becomes the ID of the file, so two files with the same name will be in conflict.To retrieve the file from within the Jet job, call
ctx.attachedFile(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. The file will have the same name as the one supplied here, but it will be in a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachFile
Adds the supplied file to the list of files that will be available to the job while it's executing in the Jet cluster. The file will be registered under the supplied ID.To retrieve the file from within the Jet job, call
ctx.attachedFile(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. The file will have the same name as the one supplied here, but it will be in a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachFile
Adds the file identified by the supplied pathname to the list of files that will be available to the job while it's executing in the Jet cluster. The filename becomes the ID of the file, so two files with the same name will be in conflict.To retrieve the file from within the Jet job, call
ctx.attachedFile(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. The file will have the same name as the one supplied here, but it will be in a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachFile
Adds the file identified by the supplied pathname to the list of files that will be available to the job while it's executing in the Jet cluster. The file will be registered under the supplied ID.To retrieve the file from within the Jet job, call
ctx.attachedFile(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. The file will have the same name as the one supplied here, but it will be in a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachDirectory
Adds the directory identified by the supplied URL to the list of directories that will be available to the job while it's executing in the Jet cluster. Directory name (the last path segment in the URL) becomes its ID, so two directories with the same name will be in conflict. Hidden files are ignored.To retrieve the directory from within the Jet job, call
ctx.attachedDirectory(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. It will be a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachDirectory
Adds the directory identified by the supplied URL to the list of directories that will be available to the job while it's executing in the Jet cluster. The directory will be registered under the supplied ID. Hidden files are ignored.To retrieve the directory from within the Jet job, call
ctx.attachedDirectory(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. It will be a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachDirectory
Adds the directory identified by the supplied pathname to the list of files that will be available to the job while it's executing in the Jet cluster. The directory name (the last path segment) becomes its ID, so two directories with the same name will be in conflict. Hidden files are ignored.To retrieve the directory from within the Jet job, call
ctx.attachedDirectory(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. It will be a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachDirectory
Adds the directory identified by the supplied pathname to the list of files that will be available to the job while it's executing in the Jet cluster. The directory will be registered under the supplied ID. Hidden files are ignored.To retrieve the directory from within the Jet job, call
ctx.attachedDirectory(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. It will be a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachDirectory
Adds the supplied directory to the list of files that will be available to the job while it's executing in the Jet cluster. The directory name (the last path segment) becomes its ID, so two directories with the same name will be in conflict. Hidden files are ignored.To retrieve the directory from within the Jet job, call
ctx.attachedDirectory(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. It will be a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachDirectory
Adds the supplied directory to the list of files that will be available to the job while it's executing in the Jet cluster. The directory will be registered under the supplied ID. Hidden files are ignored.To retrieve the directory from within the Jet job, call
ctx.attachedDirectory(id)
, wherectx
is theProcessorSupplier
context available, for example, toServiceFactory.createContextFn()
. It will be a temporary directory on the Jet server.Cannot be used for light jobs.
- Returns:
this
instance for fluent API- Since:
- Jet 4.0
-
attachAll
Attaches all the files/directories in the supplied map, as if by callingattachDirectory(dir, id)
for every entry that resolves to a directory andattachFile(file, id)
for every entry that resolves to a regular file.Cannot be used for light jobs.
- Returns:
this
instance for fluent API
-
getResourceConfigs
Returns all the registered resource configurations. -
getCustomClassPaths
Returns configured custom classpath elements, SeeaddCustomClasspath(String, String)
andaddCustomClasspaths(String, List)
-
registerSerializer
@Nonnull @EvolvingApi public <T,S extends StreamSerializer<T>> JobConfig registerSerializer(@Nonnull Class<T> clazz, @Nonnull Class<S> serializerClass) Registers the given serializer for the given class for the scope of the job. It will be accessible to all the code attached to the underlying pipeline or DAG, but not to any other code. There are several serializer types you can register, see the <a href="https://jet-start.sh/docs/api/serialization#serialization-of-data-types Programming Guide.A serializer registered on the job level has precedence over any serializer registered on the cluster level.
The serializer must have no-arg constructor.
Cannot be used for light jobs.
- Parameters:
clazz
- class to register serializer forserializerClass
- class of the serializer to be registered- Returns:
this
instance for fluent API- Since:
- Jet 4.1
-
getSerializerConfigs
Returns all the registered serializer configurations. This is a private API. -
setArgument
Associates the specified value with the specified key. The mapping will be available to the job while it's executing in the Jet cluster.- Parameters:
key
- key with which the specified value is to be associatedvalue
- value to be associated with the specified key- Returns:
this
instance for fluent API- Since:
- 5.0
-
getArgument
Returns the value to which the specified key is mapped, or null if there is no mapping for the key.- Parameters:
key
- the key whose associated value is to be returned- Since:
- 5.0
-
setClassLoaderFactory
Sets a customJobClassLoaderFactory
that will be used to load job classes and resources on Jet members. Not supported for light jobs- Returns:
this
instance for fluent API
-
getClassLoaderFactory
Returns the configuredJobClassLoaderFactory
. -
getInitialSnapshotName
Returns the configured initial snapshot name ornull
if no initial snapshot is configured. -
setInitialSnapshotName
Sets the exported state snapshot name to restore the initial job state from. This state will be used for initial state and also for the case when the execution restarts before it produces first snapshot.The job will use the state even if processing guarantee is set to
ProcessingGuarantee.NONE
.Cannot be used for light jobs.
- Parameters:
initialSnapshotName
- the snapshot name given toJob.exportSnapshot(String)
- Returns:
this
instance for fluent API- Since:
- Jet 3.0
-
isMetricsEnabled
public boolean isMetricsEnabled()Returns if metrics collection is enabled for the job.- Since:
- Jet 3.2
-
setMetricsEnabled
Sets whether metrics collection should be enabled for the job. NeedsBaseMetricsConfig.isEnabled()
to be on in order to function.Metrics for running jobs can be queried using
Job.getMetrics()
It's enabled by default. Ignored for light jobs.- Since:
- Jet 3.2
-
isStoreMetricsAfterJobCompletion
public boolean isStoreMetricsAfterJobCompletion()Returns whether metrics should be stored in the cluster after the job completes successfully. Needs bothBaseMetricsConfig.isEnabled()
andisMetricsEnabled()
to be on in order to function.If enabled, metrics can be retrieved by calling
Job.getMetrics()
.It's disabled by default.
- Since:
- Jet 3.2
-
setStoreMetricsAfterJobCompletion
Sets whether metrics should be stored in the cluster after the job completes. If enabled, metrics can be retrieved for the configured job after it has completed successfully and is no longer running by callingJob.getMetrics()
.If disabled, once the configured job stops running
Job.getMetrics()
will always return empty metrics for it, regardless of the settings forglobal metrics collection
orper job metrics collection
.It's disabled by default. Ignored for light jobs.
- Since:
- Jet 3.2
-
getMaxProcessorAccumulatedRecords
public long getMaxProcessorAccumulatedRecords()Returns the maximum number of records that can be accumulated by any singleProcessor
instance in the context of the job.- Since:
- 5.0
-
setMaxProcessorAccumulatedRecords
Sets the maximum number of records that can be accumulated by any singleProcessor
instance in the context of the job.For more info see
JetConfig.setMaxProcessorAccumulatedRecords(long)
.If set, it has precedence over
JetConfig
's one.The default value is
-1
- in that caseJetConfig
's value is used.- Since:
- 5.0
-
getTimeoutMillis
public long getTimeoutMillis()Returns maximum execution time for the job in milliseconds.- Since:
- 5.0
-
setTimeoutMillis
Sets the maximum execution time for the job in milliseconds. If the execution time (counted from the time job is submitted), exceeds this value, the job is forcefully cancelled. The default value is0
, which denotes no time limit on the execution of the job.- Since:
- 5.0
-
getFactoryId
public int getFactoryId()Description copied from interface:IdentifiedDataSerializable
Returns DataSerializableFactory factory ID for this class.- Specified by:
getFactoryId
in interfaceIdentifiedDataSerializable
- Returns:
- factory ID
-
getClassId
public int getClassId()Description copied from interface:IdentifiedDataSerializable
Returns type identifier for this class. It should be unique per DataSerializableFactory.- Specified by:
getClassId
in interfaceIdentifiedDataSerializable
- Returns:
- type ID
-
writeData
Description copied from interface:DataSerializable
Writes object fields to output stream- Specified by:
writeData
in interfaceDataSerializable
- Parameters:
out
- output- Throws:
IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the output stream has been closed.
-
readData
Description copied from interface:DataSerializable
Reads fields from the input stream- Specified by:
readData
in interfaceDataSerializable
- Parameters:
in
- input- Throws:
IOException
- if an I/O error occurs. In particular, anIOException
may be thrown if the input stream has been closed.
-
equals
-
hashCode
public int hashCode() -
toString
-
lock
Used to prevent further mutations the config after submitting it with a job execution.It's not a public API, can be removed in the future.
-