I plan to use the Quartz scheduler as I read many good opinions about it.
My problem is as follows: I will have thousands of triggers living in the system at any given time. Most of the triggers will fire just one event and die. In addition, it is very likely I will have to cancel many jobs after their allocation (based on new input).
Can Quartz scale to this? Which JobStore is recommended? I planned to use the JDBC one over mysql.
Added Information: My jobs will either send an e-mail or post data via HTTP post to other services (over WAN).