How to handle scheduler synchronization over multiple instances using Spring MVC? - spring

If application is deployed on multiple server and one instance is executing the scheduler then scheduler should not initiate from other instances.

Related

Running a Spring Boot project with Quartz scheduler on Kubernetes

I am working on a Spring Boot project which has a scheduler service using Quartz. This scheduler service runs a specific scheduled or cron job by calling a separate micro-service.
Now I am planning to deploy my micro-services on kubernetes and I want to make sure that my scheduler service is also clustered. I have noticed that Quartz supports clustering using JDBC-JobStore but I am not entirely sure if such a scenario can be deployed using kubernetes. Will it work if I have 3 pods of the Scheduler service managed and scaled using kubernetes?
Yes as long as you run the quartz in Cluster Mode and set org.quartz.scheduler.instanceId = AUTO it does work.
In case of scaling, just some pods will be added or get removed, Quartz will take care of it since each instance would have its distinct instance ID.

Schedule and monitor spring batch using IBM workload scheduler

Is there any way to schedule and monitor spring batch using IBM workload scheduler.
If your application exposes REST APIs, the easiest solution is to use RESTful job type running on dynamic or zcentric agent, the job connects remotely to the REST API, so the agent can run on a separate machine or container.

Schedule jobs for quartz scheduler from other spring boot application

I have two spring boot applications, where one features the creating and scheduling of the job. There is another Spring Boot application where I configured the Quartz Scheduler, which will prepare the job parameters using a shared database and launches the spring batch job.
I need to update the running Quartz Scheduler if the user updates or adds a new job from UI. Also if server restarts I need to restart the Scheduler and the Jobs.
How should I update my Quartz Scheduler object when there's the new job added or updated by the user? My Quartz Scheduler will always be in running condition. Can I use REST Template so that my UI application will notify my scheduler application for the jobs?
You will need to store the jobs to schedule in a database (using the share database) from the UI application, create a job and build a trigger for it.
Its hard to say without any code given, but there is a guide that does something like you want.
https://www.callicoder.com/spring-boot-quartz-scheduler-email-scheduling-example/
This is a dynamic scheduler/trigger

Spring #scheduler vs. Quartz Scheduler which one is best

I got in to a task where we have to publish Metadata of one table to another application via REST web services.
Basically need is
It has to be weekly scheduler and every week we push the data to
them.
Synchronous way.
Job scheduler will kick up the job and call REST client.
I am thinking using spring batch scheduler as it is simple and not with Quartz scheduler. Let me know you view and perspectives.

Spring batch Spring integration

We are using spring batch 2.1.x coupled with spring integration 2.0 for the poller jobs. There are scheduled jobs as well in the mix.The launching of all these poller and scheduled jobs happen by invoking the spring batch api. We have around 60-65 jobs in total. Very frequently in the production environment what we are seeing is the jobs go into "starting" and they do not recover. So once we observe such occurrences we have to keep restarting our servers which contains our spring batch application. The backend of the spring batch datasource is Oracle 11gr2.

Resources