You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Nicolas Malin (JIRA)" <ji...@apache.org> on 2015/01/13 23:06:36 UTC

[jira] [Assigned] (OFBIZ-3583) Resolve two issues with scheduled jobs related to clean-up

     [ https://issues.apache.org/jira/browse/OFBIZ-3583?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Nicolas Malin reassigned OFBIZ-3583:
------------------------------------

    Assignee: Nicolas Malin

> Resolve two issues with scheduled jobs related to clean-up
> ----------------------------------------------------------
>
>                 Key: OFBIZ-3583
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-3583
>             Project: OFBiz
>          Issue Type: Bug
>          Components: framework
>            Reporter: Bob Morley
>            Assignee: Nicolas Malin
>         Attachments: OFBIZ-3583_FixsToScheduledJobCleanup.patch
>
>
> Encountered two problems --
> 1) If a semaphore service is executing when the application server goes down (see purgeOldJobs) the reloadCrashedJobs takes over to mark this job as CRASHED.  However, it does not clean-up the ServiceSemaphore record which causes all future jobs to either fail immediately or wait (until semaphore timeout) and then fail.
> 2) When ServiceUtil.purgeOldJobs is invoked it blindly attempts to delete runtimeData and then rollsback if this delete fails (always when other jobs reference the same runtimeData).  This causes a service error log message for what is really typical behavior.
> Solutions --
> 1) When reloading crashed jobs, we look for a rogue ServiceSemaphore for this service name and purge it (on start-up).  This works for multiple application servers because any crashed job would leave behind the semaphore and no other application server running the JobManager could have created it (as they would have been blocked from executing).
> 2) In purgeOldJobs I changed the list of runtimeDataIds from a List to a Set (this remove the redundant delete requests).  When attempting the delete I do a "quick" count on the JobSandbox table to see if there are any jobs still hanging onto the particular RuntimeData instance and only attempt the delete when there are no more remaining jobs.  There is an existing index on the JobSandbox for the runtimeDataId so this count should perform relatively quickly.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)