Hello,
I am running Camunda on the standard docker distribution. I have a process that has some timers that create jobs in the ACT_RU_JOB table. I can see the tasks:
# ID_, REV_, TYPE_, LOCK_EXP_TIME_, LOCK_OWNER_, EXCLUSIVE_, EXECUTION_ID_, PROCESS_INSTANCE_ID_, PROCESS_DEF_ID_, PROCESS_DEF_KEY_, RETRIES_, EXCEPTION_STACK_ID_, EXCEPTION_MSG_, DUEDATE_, REPEAT_, HANDLER_TYPE_, HANDLER_CFG_, DEPLOYMENT_ID_, SUSPENSION_STATE_, JOB_DEF_ID_, PRIORITY_, SEQUENCE_COUNTER_, TENANT_ID_
'8f27e53e-ce4d-11e8-8b40-0a58a9feac2a', '1', 'timer', NULL, NULL, '1', '8f25c25c-ce4d-11e8-8b40-0a58a9feac2a', '8f1ee455-ce4d-11e8-8b40-0a58a9feac2a', 'P_OCPE_2:1:1c4c8c3e-cda0-11e8-896d-0a58a9feac2a', 'P_OCPE_2', '3', NULL, NULL, '2018-10-12 18:40:00', NULL, 'timer-intermediate-transition', 'IntermediateCatchEvent_1b8zfqq', '1c28144c-cda0-11e8-896d-0a58a9feac2a', '1', '1c4cb35b-cda0-11e8-896d-0a58a9feac2a', '0', '1', NULL
'8f285972-ce4d-11e8-8b40-0a58a9feac2a', '1', 'timer', NULL, NULL, '1', '8f280c50-ce4d-11e8-8b40-0a58a9feac2a', '8f1ee455-ce4d-11e8-8b40-0a58a9feac2a', 'P_OCPE_2:1:1c4c8c3e-cda0-11e8-896d-0a58a9feac2a', 'P_OCPE_2', '3', NULL, NULL, '2018-10-12 18:40:00', NULL, 'timer-intermediate-transition', 'IntermediateCatchEvent_0qkitty', '1c28144c-cda0-11e8-896d-0a58a9feac2a', '1', '1c4cb35d-cda0-11e8-896d-0a58a9feac2a', '0', '1', NULL
The job executor is running - I can see this in the logs:
18-Oct-2018 22:18:47.052 INFO [Thread-6] org.camunda.commons.logging.BaseLogger.logInfo ENGINE-14018 JobExecutor[org.camunda.bpm.engine.impl.jobexecutor.RuntimeContainerJobExecutor] starting to acquire jobs
However, the jobs remain untouched in the database.
I would like to increase the logging level for the job executor to get a better idea of what’s going on, so I added the following line to the bottom of the file /camunda/conf/logging.properties:
org.camunda.bpm.engine.impl.jobexecutor = FINEST
but I haven’t seen an increase in log messages. Is this the correct way to increase the logging?
Thanks!