Annotation Type JobStealingDisabled
-
@Documented @Retention(RUNTIME) @Target(TYPE) public @interface JobStealingDisabled
This annotation disables job stealing if corresponding feature is configured. Add this annotation to the job class to disable stealing this kind of jobs from nodes where they were mapped to.Here is an example of how this annotation can be attached to a job class:
@GridJobStealingDisabled public class MyJob extends ComputeJobAdapter<Object> { public Serializable execute() throws IgniteCheckedException { // Job logic goes here. ... } }