redis-quartz
redis-quartz copied to clipboard
A Quartz Scheduler JobStore that uses Redis for persistent storage.
Hello, I'm running into an issue where the RedisJobStore blocks for long periods of time (>1 minute) during execution of `storeJobAndTrigger(...)`. It seems to be when we are acquiring the...
Hi Does it support an instance of Redis running on Cloud Foundry where we only have a service name and cannot rely on the Host and Port as they can...
I'm interested to know why these methods always get a new Jedis instance from the pool, even when the calling method already has an instance. Is there a particular reason...
As per the blog: https://redislabs.com/blog/run-quartz-the-java-job-scheduler-on-top-of-redis/, redis-quartz should be using pub/sub mechanism to implement global locking. Instead I see the library using JedisLock to implement this (which is in-turn using setNX...
HI I have 2 jobs with separate triggers, trigger : group1.triggerA For Job key refreshgroup1.refreshjobA will run at: Tue Oct 18 15:23:12 IST 2016 and repeat: 10 times, every 10...
HI, I am using redisStore for Quartz. I see that if I pass data using JobDetail.JobDataMap.put("key","value") I can access it when my job fires doing context.getJobDetail().getJObDataMap() But if i try...
Are there plans to add Redis 3.x clustering support?
First of all thanks for this sample, i used as a reference and modified a bit, trying to make it as simple as possible, in my case triggers are stored...