Class SimpleJobRepository
- All Implemented Interfaces:
JobRepository
Implementation of JobRepository that stores job instances, job executions, and
step executions using the injected DAOs.
- Author:
- Lucas Ward, Dave Syer, Robert Kasanicky, David Turanski, Mahmoud Ben Hassine, Baris Cubukcuoglu, Parikshit Dutta
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSimpleJobRepository(JobInstanceDao jobInstanceDao, JobExecutionDao jobExecutionDao, StepExecutionDao stepExecutionDao, ExecutionContextDao ecDao) -
Method Summary
Modifier and TypeMethodDescriptionvoidadd(StepExecution stepExecution) Save theStepExecutionand itsExecutionContext.voidaddAll(Collection<StepExecution> stepExecutions) Save a collection ofStepExecutions and eachExecutionContext.createJobExecution(String jobName, JobParameters jobParameters) createJobInstance(String jobName, JobParameters jobParameters) Create a newJobInstancewith the name and job parameters provided.voiddeleteJobExecution(JobExecution jobExecution) Delete the job execution object graph (ie the job execution with its execution context, all related step executions and their executions contexts, as well as associated job parameters)voiddeleteJobInstance(JobInstance jobInstance) Delete the job instance object graph (ie the job instance with all associated job executions along with their respective object graphs as specified inJobRepository.deleteJobExecution(JobExecution)).voiddeleteStepExecution(StepExecution stepExecution) Delete the step execution along with its execution context.findJobExecutions(JobInstance jobInstance) Return allJobExecutions for givenJobInstance, sorted backwards by creation order (so the first element is the most recent).findJobInstancesByName(String jobName, int start, int count) Fetch the last job instances with the provided name, sorted backwards by primary key, using a 'like' criteriagetJobInstance(String jobName, JobParameters jobParameters) Retrieve the names of all job instances sorted alphabetically - i.e.getLastJobExecution(String jobName, JobParameters jobParameters) getLastStepExecution(JobInstance jobInstance, String stepName) longgetStepExecutionCount(JobInstance jobInstance, String stepName) booleanisJobInstanceExists(String jobName, JobParameters jobParameters) Check if an instance of this job already exists with the parameters provided.voidupdate(JobExecution jobExecution) Update theJobExecution(but not itsExecutionContext).voidupdate(StepExecution stepExecution) Update theStepExecution(but not itsExecutionContext).voidupdateExecutionContext(JobExecution jobExecution) Persist the updatedExecutionContextof the givenJobExecution.voidupdateExecutionContext(StepExecution stepExecution) Persist the updatedExecutionContexts of the givenStepExecution.
-
Constructor Details
-
SimpleJobRepository
public SimpleJobRepository(JobInstanceDao jobInstanceDao, JobExecutionDao jobExecutionDao, StepExecutionDao stepExecutionDao, ExecutionContextDao ecDao)
-
-
Method Details
-
getJobNames
Description copied from interface:JobRepositoryRetrieve the names of all job instances sorted alphabetically - i.e. jobs that have ever been executed.- Specified by:
getJobNamesin interfaceJobRepository- Returns:
- the names of all job instances
-
findJobInstancesByName
Description copied from interface:JobRepositoryFetch the last job instances with the provided name, sorted backwards by primary key, using a 'like' criteria- Specified by:
findJobInstancesByNamein interfaceJobRepository- Parameters:
jobName-Stringcontaining the name of the job.start- int containing the offset of where list of job instances results should begin.count- int containing the number of job instances to return.- Returns:
- a list of
JobInstancefor the job name requested.
-
findJobExecutions
Description copied from interface:JobRepositoryReturn allJobExecutions for givenJobInstance, sorted backwards by creation order (so the first element is the most recent).- Specified by:
findJobExecutionsin interfaceJobRepository- Parameters:
jobInstance- parentJobInstanceof theJobExecutions to find.- Returns:
Listcontaining JobExecutions for the jobInstance.
-
isJobInstanceExists
Description copied from interface:JobRepositoryCheck if an instance of this job already exists with the parameters provided.- Specified by:
isJobInstanceExistsin interfaceJobRepository- Parameters:
jobName- the name of the jobjobParameters- the parameters to match- Returns:
- true if a
JobInstancealready exists for this job name and job parameters
-
createJobExecution
public JobExecution createJobExecution(String jobName, JobParameters jobParameters) throws JobExecutionAlreadyRunningException, JobRestartException, JobInstanceAlreadyCompleteException Description copied from interface:JobRepositoryCreate a
JobExecutionfor a givenJobandJobParameters. If matchingJobInstancealready exists, the job must be restartable and it's last JobExecution must *not* be completed. If matchingJobInstancedoes not exist yet it will be created.If this method is run in a transaction (as it normally would be) with isolation level at
Isolation.REPEATABLE_READor better, then this method should block if another transaction is already executing it (for the sameJobParametersand job name). The first transaction to complete in this scenario obtains a validJobExecution, and others throwJobExecutionAlreadyRunningException(or timeout). There are no such guarantees if theJobInstanceDaoandJobExecutionDaodo not respect the transaction isolation levels (e.g. if using a non-relational data-store, or if the platform does not support the higher isolation levels).- Specified by:
createJobExecutionin interfaceJobRepository- Parameters:
jobName- the name of the job that is to be executedjobParameters- the runtime parameters for the job- Returns:
- a valid
JobExecutionfor the arguments provided - Throws:
JobExecutionAlreadyRunningException- if there is aJobExecutionalready running for the job instance with the provided job and parameters.JobRestartException- if one or more existingJobInstances is found with the same parameters andJob.isRestartable()is false.JobInstanceAlreadyCompleteException- if aJobInstanceis found and was already completed successfully.
-
update
Description copied from interface:JobRepositoryUpdate theJobExecution(but not itsExecutionContext). Preconditions:JobExecutionmust contain a validJobInstanceand be saved (have an id assigned).- Specified by:
updatein interfaceJobRepository- Parameters:
jobExecution-JobExecutioninstance to be updated in the repo.
-
add
Description copied from interface:JobRepositorySave theStepExecutionand itsExecutionContext. ID will be assigned - it is not permitted that an ID be assigned before calling this method. Instead, it should be left blank, to be assigned by aJobRepository. Preconditions:StepExecutionmust have a validStep.- Specified by:
addin interfaceJobRepository- Parameters:
stepExecution-StepExecutioninstance to be added to the repo.
-
addAll
Description copied from interface:JobRepositorySave a collection ofStepExecutions and eachExecutionContext. The StepExecution ID will be assigned - it is not permitted that an ID be assigned before calling this method. Instead, it should be left blank, to be assigned byJobRepository. Preconditions:StepExecutionmust have a validStep.- Specified by:
addAllin interfaceJobRepository- Parameters:
stepExecutions- collection ofStepExecutioninstances to be added to the repo.
-
update
Description copied from interface:JobRepositoryUpdate theStepExecution(but not itsExecutionContext). Preconditions:StepExecutionmust be saved (have an id assigned).- Specified by:
updatein interfaceJobRepository- Parameters:
stepExecution-StepExecutioninstance to be updated in the repo.
-
updateExecutionContext
Description copied from interface:JobRepositoryPersist the updatedExecutionContexts of the givenStepExecution.- Specified by:
updateExecutionContextin interfaceJobRepository- Parameters:
stepExecution-StepExecutioninstance to be used to update the context.
-
updateExecutionContext
Description copied from interface:JobRepositoryPersist the updatedExecutionContextof the givenJobExecution.- Specified by:
updateExecutionContextin interfaceJobRepository- Parameters:
jobExecution-JobExecutioninstance to be used to update the context.
-
getJobInstance
- Specified by:
getJobInstancein interfaceJobRepository- Parameters:
jobName-Stringname of the job.jobParameters-JobParametersparameters for the job instance.- Returns:
- the
JobInstancewith the given name and parameters, ornull.
-
getLastStepExecution
- Specified by:
getLastStepExecutionin interfaceJobRepository- Parameters:
jobInstance-JobInstanceinstance containing the step executions.stepName- the name of the step execution that might have run.- Returns:
- the last execution of step for the given job instance.
-
getStepExecutionCount
- Specified by:
getStepExecutionCountin interfaceJobRepository- Parameters:
jobInstance-JobInstanceinstance containing the step executions.stepName- the name of the step execution that might have run.- Returns:
- number of executions of the step within given job instance
-
getLastJobExecution
- Specified by:
getLastJobExecutionin interfaceJobRepository- Parameters:
jobName- the name of the job that might have runjobParameters- parameters identifying theJobInstance- Returns:
- the last execution of job if exists, null otherwise
-
deleteStepExecution
Description copied from interface:JobRepositoryDelete the step execution along with its execution context.- Specified by:
deleteStepExecutionin interfaceJobRepository- Parameters:
stepExecution- the step execution to delete
-
deleteJobExecution
Description copied from interface:JobRepositoryDelete the job execution object graph (ie the job execution with its execution context, all related step executions and their executions contexts, as well as associated job parameters)- Specified by:
deleteJobExecutionin interfaceJobRepository- Parameters:
jobExecution- the job execution to delete
-
deleteJobInstance
Description copied from interface:JobRepositoryDelete the job instance object graph (ie the job instance with all associated job executions along with their respective object graphs as specified inJobRepository.deleteJobExecution(JobExecution)).- Specified by:
deleteJobInstancein interfaceJobRepository- Parameters:
jobInstance- the job instance to delete
-
createJobInstance
Description copied from interface:JobRepositoryCreate a newJobInstancewith the name and job parameters provided.- Specified by:
createJobInstancein interfaceJobRepository- Parameters:
jobName- logical name of the jobjobParameters- parameters used to execute the job- Returns:
- the new
JobInstance
-