Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

spring - Scheduler on multiple server instances

Hi I have Java scheduler which run on every hour and i have 16 server instances , this will be deployed in all 16 server instances . How i can ensure that these schedulers tasks won't clash each other. We doesn't want to introduce Spring batch .

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Basically you can follow 2 approaches for that:

  1. Be sure every instance manages its own data (not sharing it with any other one).
  2. Be sure only one instance can access to the information every time.

The first point depends of your own business logic, for the second one there are some tools can help you, with an easy integration with Spring:

Quartz

Shedlock (easier than Quartz but with less functionality)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...