Quartz Scheduling
Issues with Quartz Instance ID with Cluster
SimpleInstanceIdGenerator
tries to generate instance ID using InetAddress.getLocalHost().getHostName()
that can sometimes fail, when Java is not able to resolve DNS name of the machine. InetAddress.getHostName()
is doing a reverse lookup on the server's IP address using the naming service (DNS) configured in your O/S.
Then we need to set our new ID generator in Quartz properties.
Last updated
Was this helpful?