I have a job which has 1)clean-up steps and then 2) load steps in parallel... I'm trying to understand/figure out what and why is Spring/Srping-Batch consuming good amount of 30 minutes (16:32 - 17:04) before start executing the very first step. If someone know what's going on here or is it taking 30 minutes to load all those singletons? Thanks for your help.
Here is copy of the log trace:
2011-05-25 16:32:29.069 [ INFO] [main] org.springframework.beans.factory.support.DefaultL istableBeanFactory:414 => Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultL istableBeanFactory@8ceeea: defining beans [..... removed all the singletons to save space] ; root of factory hierarchy
2011-05-25 16:32:29.537 [ INFO] [main] org.springframework.batch.core.launch.support.Simp leJobLauncher:179 => No TaskExecutor has been set, defaulting to synchronous executor.
2011-05-25 16:32:29.537 [ INFO] [main] org.springframework.batch.core.launch.support.Simp leJobLauncher:179 => No TaskExecutor has been set, defaulting to
synchronous executor.
2011-05-25 17:04:03.839 [ INFO] [main] org.springframework.batch.core.launch.support.Simp leJobLauncher:118 => Job: [FlowJob: [name=jobLoadAllSources]] launched with the following parameters: [{job_run_date_time=1306357443570}]
2011-05-25 17:04:03.839 [ INFO] [main] org.springframework.batch.core.launch.support.Simp leJobLauncher:118 => Job: [FlowJob: [name=jobLoadAllSources]] launched with the following parameters: [{job_run_date_time=1306357443570}]
2011-05-25 17:04:03.945 [ INFO] [main] org.springframework.batch.core.job.SimpleStepHandl er:133 => Executing step: [jobLoadAllSources-stepSendEmailBegin]
2011-05-25 17:04:03.945 [ INFO] [main] org.springframework.batch.core.job.SimpleStepHandl er:133 => Executing step: [jobLoadAllSources-stepSendEmailBegin]
2011-05-25 17:04:04.002 [ INFO] [main] com.citigroup.cti.gto.gis.gssm.reporting.etl.tasks .TaskletCallUnixScriptToSendEmail:36 => Unix Script to send an e-mail: [Ljava.lang.String;@5879fd
2011-05-25 17:04:04.350 [ INFO] [main] com.citigroup.cti.gto.gis.gssm.reporting.etl.tasks .TaskletCallUnixScriptToSendEmail:47 => Send-Email Unix Script is complete and the return code is: 0
2011-05-25 17:04:04.873 [ INFO] [SimpleAsyncTaskExecutor-3] org.springframework.batch.core.job.SimpleStepHandl er:133 => Executing step: [flowTruncateHosts-stepTruncate]
2011-05-25 17:04:04.873 [ INFO] [SimpleAsyncTaskExecutor-3] org.springframework.batch.core.job.SimpleStepHandl er:133 => Executing step: [flowTruncateHosts-stepTruncate]
2011-05-25 17:04:04.904 [ INFO] [SimpleAsyncTaskExecutor-7] org.springframework.batch.core.job.SimpleStepHandl er:133 => Executing step: [flowTruncateClosedAssessment-stepTruncate]


Reply With Quote