Questions tagged [crontrigger]

Use ConTrigger if you need a job-firing schedule that recurs based on calendar-like notions

ConTrigger class from Quartz Job Scheduling Library allowing you to create

"job-firing schedule that recurs based on calendar-like notions, rather than on the exactly specified intervals of SimpleTrigger."

To find more information :

206 questions
0
votes
2 answers

Quartz schedular stops suddenly and it is not able to handle threads

Our current application was running on glassfish and windows server. We moved the application to jetty and running on linux server now. there is a quartz job in the application which runs every minute and getting ftp files from remote server.…
fa.
  • 63
  • 2
  • 11
0
votes
1 answer

how to fire Quartz Scheduler's cronTrigger every 10 minutes starting at 11am and ending at 3pm everyday?

I'm using "0 0/10 11-15 * * ?" cron expression to fire the trigger. But the trigger is fired even after 3pm.
binodsh
  • 3
  • 3
0
votes
0 answers

cron expression for quartz to start on particular month and repeat every months onwards

I am working on Quartz Scheduler where need to trigger my job on basis of monthly where user can select desired month date from which he want to make it run for every month on that particular date. lets say- I want to schedule quartz job from August…
0
votes
1 answer

Create custom cron in wordpress?

I have a wordpress page and i need to set this page in cron. How can i do it? My wordpress page link is: http://example.com/wp-admin/admin.php?page=popshop-import&category=32194&cate_id=1279 This page works fine when i run this url in browser. How…
Padmanathan J
  • 4,614
  • 5
  • 37
  • 75
0
votes
1 answer

Quartz.net - crontrigger for specific days

I coded a Crontrigger to work for 2 specific days... 14 and 28 of each month. It´s working at the specified time(11:55 pm) but works for every single day :S // Definimos el job de la clase que hereda de la interfaz iJob IJobDetail…
0
votes
2 answers

Cron executing wrong

was set on crontab the line below. But is not validate the day. When I remove de day of week is executed correctly. Any suggestion? # uname -a Linux server 2.6.32-358.14.1.el6.x86_64 #1 SMP Tue Jul 16 23:51:20 UTC 2013 x86_64 x86_64 x86_64…
0
votes
1 answer

Creating Cron Expression with of Days and Months Simultaneously

I simply want to create a cron expression that will execute a job after 'N' number of days. Where N can be any number greater than Zero. So, It's alright if number is between 1 and 30. For Example Cron Expression to Execute Job after each 25 days…
0
votes
1 answer

Run script every 5 minutes on specific Seconds

I want to run a script every day, every 5 minutes at hour:minute:20 seconds between 09:00 and 22:00 I know how to configure the cron job between these hours and every 5 minutes, but it is very important to run it at hour:minute:20 seconds... Is…
WizMeister
  • 609
  • 7
  • 16
0
votes
1 answer

setup cron that when a flash drive is mounted a file(sql) is written into it

I'm using cron to create my database backup file. I'm wondering if I can setup it up in a way that when a flash drive(im thinking that the drive should have a specific name) is mounted the sql file will be written automatically into it.
lewd
  • 7
  • 2
0
votes
1 answer

Setting Cron Job

I have requirement which say I need to set cron to run a job daily from monday to thursday twice i.e at 10 PM and 5 PM.And the same job should also run on friday 5 PM and on sunday at 10 PM For the first part of the requirement I have set as " 0…
scot ggh
  • 5
  • 2
0
votes
1 answer

java Quartz2 cron trigger is not firing immediately

I need to execute scheduler immediately when I will call the scheduler and next time it will execute base on the cron expression. But here my code which is only executing after 10 minute but not executing when I run this…
ishwar
  • 444
  • 7
  • 20
0
votes
2 answers

Trigger a process on change of a file in unix

I need to trigger a process in remote node when a file changes in different remote node. Scenario is like this. There is a cron running at an unknown time in a remote node. Cron triggers some process which will change some files in the same node.…
Sarath
  • 1,438
  • 4
  • 24
  • 40
0
votes
1 answer

Quartz CronTrigger - How Can I Pause a Job and Resume It the Next Day

I have a job with a CronTrigger that is set to run once every minute, Monday through Friday: 0 0/1 * ? * MON-FRI. This job connects to a server and checks a SQL table. Once it finds a given number of rows in the table, it needs to stop checking the…
user2424607
  • 295
  • 3
  • 19
0
votes
1 answer

How to reschedule job immediately when i update CRON expression?

Firstly when i start job my cron expression is 0 0/10 * * * ? *(For Every 10 Minutes) Eventually i have updated my cron expression to 0 0/2 * * * ? *(Updated for 2 minutes) i want the update cron expression to take immediate effect instead of…
kusumat
  • 319
  • 3
  • 9
  • 21
0
votes
1 answer

What column type should be used to store serialized data in a postgresql 9.2 db?

Previously i was using the BLOB data type in oracle to store a serialized data of quartz(job data) and it was working correct but right now i am using POSTGRESQL 9.2 so i would like to know that which data type is best for the same. And also i am…
KRISHNA
  • 611
  • 1
  • 5
  • 7