You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jo...@apache.org on 2007/09/08 10:25:20 UTC

svn commit: r573800 - /ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobManager.java

Author: jonesde
Date: Sat Sep  8 01:25:19 2007
New Revision: 573800

URL: http://svn.apache.org/viewvc?rev=573800&view=rev
Log:
Redid transaction management for poller; noticed that this is using a dangerous pattern so changed to use the one more common and help catch some corner cases, and make SURE the transaction gets closed; based on observation in a production server that this code appears to have locked a bunch of stuff and then the commit never happened, so the poller was dead until that went away

Modified:
    ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobManager.java

Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobManager.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobManager.java?rev=573800&r1=573799&r2=573800&view=diff
==============================================================================
--- ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobManager.java (original)
+++ ofbiz/trunk/framework/service/src/org/ofbiz/service/job/JobManager.java Sat Sep  8 01:25:19 2007
@@ -27,6 +27,7 @@
 import java.util.List;
 import java.util.Map;
 
+import javolution.util.FastList;
 import javolution.util.FastMap;
 
 import org.ofbiz.base.util.Debug;
@@ -103,7 +104,7 @@
     }
 
     public synchronized Iterator poll() {
-        List poll = new ArrayList();
+        List poll = FastList.newInstance();
         Collection jobEnt = null;
 
         // sort the results by time
@@ -135,61 +136,67 @@
         boolean pollDone = false;
 
         while (!pollDone) {
-            boolean beganTransaction;
-            try {
-                beganTransaction = TransactionUtil.begin();
-            } catch (GenericTransactionException e) {
-                Debug.logError(e, "Unable to start transaction; not polling for jobs", module);
-                return null;
-            }
-            if (!beganTransaction) {
-                Debug.logError("Unable to poll for jobs; transaction was not started by this process", module);
-                return null;
-            }
+            boolean beganTransaction = false;
 
             try {
+                beganTransaction = TransactionUtil.begin();
+                if (!beganTransaction) {
+                    Debug.logError("Unable to poll for jobs; transaction was not started by this process", module);
+                    return null;
+                }
+                
+                List localPoll = FastList.newInstance();
+                
                 // first update the jobs w/ this instance running information
                 delegator.storeByCondition("JobSandbox", updateFields, mainCondition);
 
                 // now query all the 'queued' jobs for this instance
                 jobEnt = delegator.findByAnd("JobSandbox", updateFields, order);
                 //jobEnt = delegator.findByCondition("JobSandbox", mainCondition, null, order);
-            } catch (GenericEntityException ee) {
-                Debug.logError(ee, "Cannot load jobs from datasource.", module);
-            } catch (Exception e) {
-                Debug.logError(e, "Unknown error.", module);
-            }
-
-            if (jobEnt != null && jobEnt.size() > 0) {
-                Iterator i = jobEnt.iterator();
 
-                while (i.hasNext()) {
-                    GenericValue v = (GenericValue) i.next();
-                    DispatchContext dctx = getDispatcher().getDispatchContext();
-
-                    if (dctx == null) {
-                        Debug.logError("Unable to locate DispatchContext object; not running job!", module);
-                        continue;
-                    }
-                    Job job = new PersistedServiceJob(dctx, v, null); // todo fix the requester
-                    try {
-                        job.queue();
-                        poll.add(job);
-                    } catch (InvalidJobException e) {
-                        Debug.logError(e, module);
+                if (jobEnt != null && jobEnt.size() > 0) {
+                    Iterator i = jobEnt.iterator();
+                    while (i.hasNext()) {
+                        GenericValue v = (GenericValue) i.next();
+                        DispatchContext dctx = getDispatcher().getDispatchContext();
+                        if (dctx == null) {
+                            Debug.logError("Unable to locate DispatchContext object; not running job!", module);
+                            continue;
+                        }
+                        Job job = new PersistedServiceJob(dctx, v, null); // TODO fix the requester
+                        try {
+                            job.queue();
+                            localPoll.add(job);
+                        } catch (InvalidJobException e) {
+                            Debug.logError(e, module);
+                        }
                     }
+                } else {
+                    pollDone = true;
+                }
+                
+                // nothing should go wrong at this point, so add to the general list
+                poll.addAll(localPoll);
+            } catch (Throwable t) {
+                // catch Throwable so nothing slips through the cracks... this is a fairly sensitive operation
+                String errMsg = "Error in polling JobSandbox: [" + t.toString() + "]. Rolling back transaction.";
+                Debug.logError(t, errMsg, module);
+                try {
+                    // only rollback the transaction if we started one...
+                    TransactionUtil.rollback(beganTransaction, errMsg, t);
+                } catch (GenericEntityException e2) {
+                    Debug.logError(e2, "[GenericDelegator] Could not rollback transaction: " + e2.toString(), module);
+                }
+            } finally {
+                try {
+                    // only commit the transaction if we started one... but make sure we try
+                    TransactionUtil.commit(beganTransaction);
+                } catch (GenericTransactionException e) {
+                    String errMsg = "Transaction error trying to commit when polling and updating the JobSandbox: " + e.toString();
+                    // we don't really want to do anything different, so just log and move on
+                    Debug.logError(e, errMsg, module);
                 }
-            } else {
-                pollDone = true;
-            }
-
-            // finished this run; commit the transaction
-            try {
-                TransactionUtil.commit(beganTransaction);
-            } catch (GenericTransactionException e) {
-                Debug.logError(e, module);
             }
-
         }
         return poll.iterator();
     }