You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2010/08/30 14:29:41 UTC

[jira] Issue Comment Edited: (CAMEL-3009) Add option to quartz consumer to ignore jobs being triggered due restarting

    [ https://issues.apache.org/activemq/browse/CAMEL-3009?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=61503#action_61503 ] 

Claus Ibsen edited comment on CAMEL-3009 at 8/30/10 8:28 AM:
-------------------------------------------------------------

Thanks Ben for reporting back.

Yeah the {{org.quartz.jobStore.misfireThreshold}} option is to configure this. However Quartz doesn't have a nice API to set that from Java API.
Getting the JobStore is not easy and the SPI interface doesn't expose this setter. Its only avail on specialized JobStore instances and whatnot.

So end users most often have to use a quartz.properties file to configure it and have the Camel Quartz Component pickup this quartz.properties file.
But that's the standard way with Quartz, so let's keep it as is.

      was (Author: davsclaus):
    Thanks Ben for reporting back.

Yeah the {{org.quartz.jobStore.misfireThreshold}} option is to configure this. However Quartz doesn't have a nice API to set that from Java API.
So end users most often have to use a quartz.properties file to configure it and have the Camel Quartz Component pickup this quartz.properties file.
  
> Add option to quartz consumer to ignore jobs being triggered due restarting
> ---------------------------------------------------------------------------
>
>                 Key: CAMEL-3009
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-3009
>             Project: Apache Camel
>          Issue Type: New Feature
>          Components: camel-quartz
>    Affects Versions: 2.4.0
>            Reporter: Claus Ibsen
>            Assignee: Claus Ibsen
>            Priority: Minor
>             Fix For: 2.5.0
>
>         Attachments: camel-quartz-maxTimeDelay-patch.txt, camel-quartz-skip-missed-jobs-patch.txt
>
>
> Quartz scheduler may by default try to catch up if a quartz consumer has been stopped for a while.
> Then when its started it may trigger a series of jobs due they were supposed to be triggered if the consumer has been always running.
> We should make it easy to configure an option to tell Camel to ignore those jobs.
> For example if you have a trigger to run every 5th second. And you pause a consumer for 2 hours. You may not want quartz to fire 12 * 60 * 2 jobs when its started to catch up for those 2 hours.
> Quartz itself may have an option you can configure on the job but it may not be obviously how to do this.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.