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

Categories

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

jboss - Quartz clustering broken with EAP7.2

Recently upgraded an application from JBoss 6.4 -> JBoss 7.2 and we're seeing our Quartz triggers intermittently fire among multiple instances of a 4 node cluster. This wasn't a problem until the upgrade and adding org.quartz.jobStore.clusterCheckinInterval = 20000 hasn't worked.

Has anyone else experienced this? If so how was it resolved?

quartz 2.3.2

Quartz Properties

# ===========================================================================
# Configure Main Scheduler Properties  ======================================
# ===========================================================================
#
org.quartz.scheduler.instanceName = Scheduler
org.quartz.scheduler.instanceId = AUTO
org.quartz.scheduler.skipUpdateCheck = true

# ===========================================================================
# Configure ThreadPool  =====================================================
# ===========================================================================
#
org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount = 100
org.quartz.threadPool.threadPriority = 5

# ===========================================================================
# Configure JobStore  =======================================================
# ===========================================================================
#
org.quartz.jobStore.misfireThreshold = 60000
        
org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.oracle.OracleDelegate
org.quartz.jobStore.useProperties = false
org.quartz.jobStore.dataSource=DataSource
org.quartz.jobStore.tablePrefix = QRTZ_
org.quartz.jobStore.isClustered = true
org.quartz.jobStore.clusterCheckinInterval = 20000


#============================================================================
# Configure Datasources
#============================================================================
org.quartz.dataSource.DataSource.jndiURL=java:/DataSource

# ============= ==============================================================
# Configure SchedulerPlugins  ===============================================
# ===========================================================================

org.quartz.plugin.jobInitializer.class = org.quartz.plugins.xml.XMLSchedulingDataProcessorPlugin
org.quartz.plugin.jobInitializer.fileNames = /quartz/quartz-jobs.xml
org.quartz.plugin.jobInitializer.failOnFileNotFound = true
org.quartz.plugin.jobInitializer.scanInterval = 0
org.quartz.plugin.jobInitializer.wrapInUserTransaction =false
question from:https://stackoverflow.com/questions/65921142/quartz-clustering-broken-with-eap7-2

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

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...