Hi,
I'm running quartz jobs within my application. I would like to know what happen if I scale my app to 5 instances, Is the job going to be executed on each instance?
thanks
There is nothing "quartz aware" about the deployment environment, so your application would need to coordinate the execution of your background tasks to ensure they get run when expected. My suggestion would be use a database to coordinate which instance of the application is responsible for running background tasks or to pull the quartz stuff out into its own non-clustered application.