I am using Quartz for schedule the job. At the time of execution sometimes i face some strange issue. first i just explain my use case, we need a job which will trigger at scheduled time and during scheduling we need to reschedule the same job again but with different time. so, sometimes we are facing that the first trigger comes to ACQUIRE state and at the execution time it will goes to ERROR state in QUARTZ table. or sometime it will run successfully but after reschedule the job it will again goes to ERROR state. and sometimes our code run successfully but it will not print the INFO logs in console and sometimes it will print.
NOTE :: I am having same scheduler and configuration my other environment in that environment it will work fine.
so it may be environment specific issue or not? or how to fix this type of wired issue from QUARTZ.