yourAverageDeveloper
yourAverageDeveloper

Reputation: 159

Jboss Quartz Subsystem

I am running Jboss on domain mode with some servers distributed. The problem presented itself as the need to update quartz max threads. I searched and understood that I can change this value at quartz.properties and get the output I want. My question is, is there anyway that allows me to update max threads without stopping the servers ? Maybe a subsystem at domain.xml level. Are you aware of something that can do this ?

Upvotes: 0

Views: 98

Answers (1)

James R. Perkins
James R. Perkins

Reputation: 17780

There is no Quartz subsystem therefore the host controller can't manage quartz on the domain servers. If the quartz.properties supports some kind of system property expressions, e.g. ${some.key:default}, then you could use system properties.

Upvotes: 1

Related Questions