3.2 Stateless Job

This topic provides the instruction to create Stateless Job.

  1. If the job is configured as STATELESS, threads can be run in parallel and can execute the same java class.
  2. If the job is configured as stateless, the value of field Max Number Instances will denote the number of threads that can be executed in parallel .If the job is configured as stateful, then the above value will denote the number of missed instances that will be queued up so that quartz scheduler would start executing them once a long running job ends. This field specifies the number of such job instances that needs to be queued up.
  3. The class defined in the class field has to be provided a fully qualified name.

    Note:

    • For every PLSQL job, the executing class is FCPLSQLJobInvoker.java, which is configured as stateless.
    • Job params can be added to a particular PLSQL job in this screen as shown above which are passed to the procedure maintained.