]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/jobq.c
Fix rescheduling on error for new job queue code
[bacula/bacula] / bacula / src / dird / jobq.c
1 /*
2  * Bacula job queue routines.
3  *
4  *  This code consists of three queues, the waiting_jobs
5  *  queue, where jobs are initially queued, the ready_jobs
6  *  queue, where jobs are placed when all the resources are
7  *  allocated and they can immediately be run, and the
8  *  running queue where jobs are placed when they are
9  *  running.
10  *
11  *  Kern Sibbald, July MMIII
12  *
13  *   Version $Id$
14  *
15  *  This code was adapted from the Bacula workq, which was
16  *    adapted from "Programming with POSIX Threads", by
17  *    David R. Butenhof
18  *
19  */
20 /*
21    Copyright (C) 2000-2003 Kern Sibbald and John Walker
22
23    This program is free software; you can redistribute it and/or
24    modify it under the terms of the GNU General Public License as
25    published by the Free Software Foundation; either version 2 of
26    the License, or (at your option) any later version.
27
28    This program is distributed in the hope that it will be useful,
29    but WITHOUT ANY WARRANTY; without even the implied warranty of
30    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
31    General Public License for more details.
32
33    You should have received a copy of the GNU General Public
34    License along with this program; if not, write to the Free
35    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
36    MA 02111-1307, USA.
37
38  */
39
40 #include "bacula.h"
41 #include "dird.h"
42
43 #ifdef JOB_QUEUE
44
45 /* Forward referenced functions */
46 static void *jobq_server(void *arg);
47 static int   start_server(jobq_t *jq);
48
49 /*   
50  * Initialize a job queue
51  *
52  *  Returns: 0 on success
53  *           errno on failure
54  */
55 int jobq_init(jobq_t *jq, int threads, void *(*engine)(void *arg))
56 {
57    int stat;
58    jobq_item_t *item = NULL;
59                         
60    if ((stat = pthread_attr_init(&jq->attr)) != 0) {
61       return stat;
62    }
63    if ((stat = pthread_attr_setdetachstate(&jq->attr, PTHREAD_CREATE_DETACHED)) != 0) {
64       pthread_attr_destroy(&jq->attr);
65       return stat;
66    }
67    if ((stat = pthread_mutex_init(&jq->mutex, NULL)) != 0) {
68       pthread_attr_destroy(&jq->attr);
69       return stat;
70    }
71    if ((stat = pthread_cond_init(&jq->work, NULL)) != 0) {
72       pthread_mutex_destroy(&jq->mutex);
73       pthread_attr_destroy(&jq->attr);
74       return stat;
75    }
76    jq->quit = false;
77    jq->max_workers = threads;         /* max threads to create */
78    jq->num_workers = 0;               /* no threads yet */
79    jq->idle_workers = 0;              /* no idle threads */
80    jq->engine = engine;               /* routine to run */
81    jq->valid = JOBQ_VALID; 
82    /* Initialize the job queues */
83    jq->waiting_jobs = new dlist(item, &item->link);
84    jq->running_jobs = new dlist(item, &item->link);
85    jq->ready_jobs = new dlist(item, &item->link);
86    return 0;
87 }
88
89 /*
90  * Destroy the job queue
91  *
92  * Returns: 0 on success
93  *          errno on failure
94  */
95 int jobq_destroy(jobq_t *jq)
96 {
97    int stat, stat1, stat2;
98
99   if (jq->valid != JOBQ_VALID) {
100      return EINVAL;
101   }
102   if ((stat = pthread_mutex_lock(&jq->mutex)) != 0) {
103      return stat;
104   }
105   jq->valid = 0;                      /* prevent any more operations */
106
107   /* 
108    * If any threads are active, wake them 
109    */
110   if (jq->num_workers > 0) {
111      jq->quit = true;
112      if (jq->idle_workers) {
113         if ((stat = pthread_cond_broadcast(&jq->work)) != 0) {
114            pthread_mutex_unlock(&jq->mutex);
115            return stat;
116         }
117      }
118      while (jq->num_workers > 0) {
119         if ((stat = pthread_cond_wait(&jq->work, &jq->mutex)) != 0) {
120            pthread_mutex_unlock(&jq->mutex);
121            return stat;
122         }
123      }
124   }
125   if ((stat = pthread_mutex_unlock(&jq->mutex)) != 0) {
126      return stat;
127   }
128   stat  = pthread_mutex_destroy(&jq->mutex);
129   stat1 = pthread_cond_destroy(&jq->work);
130   stat2 = pthread_attr_destroy(&jq->attr);
131   delete jq->waiting_jobs;
132   delete jq->running_jobs;
133   delete jq->ready_jobs;
134   return (stat != 0 ? stat : (stat1 != 0 ? stat1 : stat2));
135 }
136
137 struct wait_pkt {
138    JCR *jcr;
139    jobq_t *jq;
140 };
141
142 /*
143  * Wait until schedule time arrives before starting
144  */
145 static void *sched_wait(void *arg)
146 {
147    JCR *jcr = ((wait_pkt *)arg)->jcr;
148    jobq_t *jq = ((wait_pkt *)arg)->jq;
149
150    Dmsg0(100, "Enter sched_wait.\n");
151    free(arg);
152    time_t wtime = jcr->sched_time - time(NULL);
153    /* Wait until scheduled time arrives */
154    if (wtime > 0 && verbose) {
155       Jmsg(jcr, M_INFO, 0, _("Job %s waiting %d seconds for scheduled start time.\n"), 
156          jcr->Job, wtime);
157       set_jcr_job_status(jcr, JS_WaitStartTime);
158    }
159    /* Check every 30 seconds if canceled */ 
160    while (wtime > 0) {
161       Dmsg2(100, "Waiting on sched time, jobid=%d secs=%d\n", jcr->JobId, wtime);
162       if (wtime > 30) {
163          wtime = 30;
164       }
165       bmicrosleep(wtime, 0);
166       if (job_canceled(jcr)) {
167          break;
168       }
169       wtime = jcr->sched_time - time(NULL);
170    }
171    jobq_add(jq, jcr);
172    Dmsg0(100, "Exit sched_wait\n");
173    return NULL;
174 }
175
176
177 /*
178  *  Add a job to the queue
179  *    jq is a queue that was created with jobq_init
180  *   
181  */
182 int jobq_add(jobq_t *jq, JCR *jcr)
183 {
184    int stat;
185    jobq_item_t *item, *li;
186    bool inserted = false;
187    time_t wtime = jcr->sched_time - time(NULL);
188    pthread_t id;
189    wait_pkt *sched_pkt;
190     
191     
192    Dmsg1(100, "jobq_add jobid=%d\n", jcr->JobId);
193    if (jq->valid != JOBQ_VALID) {
194       return EINVAL;
195    }
196
197    if (!job_canceled(jcr) && wtime > 0) {
198       set_thread_concurrency(jq->max_workers + 2);
199       sched_pkt = (wait_pkt *)malloc(sizeof(wait_pkt));
200       sched_pkt->jcr = jcr;
201       sched_pkt->jq = jq;
202       stat = pthread_create(&id, &jq->attr, sched_wait, (void *)sched_pkt);        
203       return stat;
204    }
205
206    if ((stat = pthread_mutex_lock(&jq->mutex)) != 0) {
207       return stat;
208    }
209
210    if ((item = (jobq_item_t *)malloc(sizeof(jobq_item_t))) == NULL) {
211       return ENOMEM;
212    }
213    item->jcr = jcr;
214
215    if (job_canceled(jcr)) {
216       /* Add job to ready queue so that it is canceled quickly */
217       jq->ready_jobs->prepend(item);
218       Dmsg1(100, "Prepended job=%d to ready queue\n", jcr->JobId);
219    } else {
220       /* Add this job to the wait queue in priority sorted order */
221       for (li=NULL; (li=(jobq_item_t *)jq->waiting_jobs->next(li)); ) {
222          Dmsg2(100, "waiting item jobid=%d priority=%d\n",
223             li->jcr->JobId, li->jcr->JobPriority);
224          if (li->jcr->JobPriority > jcr->JobPriority) {
225             jq->waiting_jobs->insert_before(item, li);
226             Dmsg2(100, "insert_before jobid=%d before %d\n", 
227                li->jcr->JobId, jcr->JobId);
228             inserted = true;
229             break;
230          }
231       }
232       /* If not jobs in wait queue, append it */
233       if (!inserted) {
234          jq->waiting_jobs->append(item);
235          Dmsg1(100, "Appended item jobid=%d\n", jcr->JobId);
236       }
237    }
238
239    stat = start_server(jq);
240
241    if (stat == 0) {
242       pthread_mutex_unlock(&jq->mutex);
243    }
244    Dmsg0(100, "Return jobq_add\n");
245    return stat;
246 }
247
248 /*
249  *  Remove a job from the job queue
250  *    jq is a queue that was created with jobq_init
251  *    work_item is an element of work
252  *
253  *   Note, it is "removed" by immediately calling a processing routine.
254  *    if you want to cancel it, you need to provide some external means
255  *    of doing so.
256  */
257 int jobq_remove(jobq_t *jq, JCR *jcr)
258 {
259    int stat;
260    bool found = false;
261    jobq_item_t *item;
262     
263    Dmsg1(100, "jobq_remove jobid=%d\n", jcr->JobId);
264    if (jq->valid != JOBQ_VALID) {
265       return EINVAL;
266    }
267
268    if ((stat = pthread_mutex_lock(&jq->mutex)) != 0) {
269       return stat;
270    }
271
272    for (item=NULL; (item=(jobq_item_t *)jq->waiting_jobs->next(item)); ) {
273       if (jcr == item->jcr) {
274          found = true;
275          break;
276       }
277    }
278    if (!found) {
279       return EINVAL;
280    }
281
282    /* Move item to be the first on the list */
283    jq->waiting_jobs->remove(item);
284    jq->ready_jobs->prepend(item);
285    
286    stat = start_server(jq);
287    if (stat != 0) {
288       return stat;
289    }
290    pthread_mutex_unlock(&jq->mutex);
291    Dmsg0(100, "Return jobq_remove\n");
292    return stat;
293 }
294
295
296 /*
297  * Start the server thread 
298  */
299 static int start_server(jobq_t *jq)
300 {
301    int stat = 0;
302    pthread_t id;
303
304    /* if any threads are idle, wake one */
305    if (jq->idle_workers > 0) {
306       Dmsg0(100, "Signal worker to wake up\n");
307       if ((stat = pthread_cond_signal(&jq->work)) != 0) {
308          pthread_mutex_unlock(&jq->mutex);
309          return stat;
310       }
311    } else if (jq->num_workers < jq->max_workers) {
312       Dmsg0(100, "Create worker thread\n");
313       /* No idle threads so create a new one */
314       set_thread_concurrency(jq->max_workers + 1);
315       if ((stat = pthread_create(&id, &jq->attr, jobq_server, (void *)jq)) != 0) {
316          pthread_mutex_unlock(&jq->mutex);
317          return stat;
318       }
319       jq->num_workers++;
320    }
321    return stat;
322 }
323
324
325 /* 
326  * This is the worker thread that serves the job queue.
327  * When all the resources are acquired for the job, 
328  *  it will call the user's engine.
329  */
330 static void *jobq_server(void *arg)
331 {
332    struct timespec timeout;
333    jobq_t *jq = (jobq_t *)arg;
334    jobq_item_t *je;                   /* job entry in queue */
335    int stat;
336    bool timedout;
337    bool work = true;
338
339    Dmsg0(100, "Start jobq_server\n");
340    if ((stat = pthread_mutex_lock(&jq->mutex)) != 0) {
341       return NULL;
342    }
343
344    for (;;) {
345       struct timeval tv;
346       struct timezone tz;
347
348       Dmsg0(100, "Top of for loop\n");
349       timedout = false;
350       Dmsg0(100, "gettimeofday()\n");
351       gettimeofday(&tv, &tz);
352       timeout.tv_nsec = 0;
353       timeout.tv_sec = tv.tv_sec + 4;
354
355       while (!work && !jq->quit) {
356          /*
357           * Wait 4 seconds, then if no more work, exit
358           */
359          Dmsg0(200, "pthread_cond_timedwait()\n");
360          stat = pthread_cond_timedwait(&jq->work, &jq->mutex, &timeout);
361          Dmsg1(100, "timedwait=%d\n", stat);
362          if (stat == ETIMEDOUT) {
363             timedout = true;
364             break;
365          } else if (stat != 0) {
366             /* This shouldn't happen */
367             Dmsg0(100, "This shouldn't happen\n");
368             jq->num_workers--;
369             pthread_mutex_unlock(&jq->mutex);
370             return NULL;
371          }
372       } 
373       /* 
374        * If anything is in the ready queue, run it
375        */
376       Dmsg0(100, "Checking ready queue.\n");
377       while (!jq->ready_jobs->empty() && !jq->quit) {
378          JCR *jcr;
379          je = (jobq_item_t *)jq->ready_jobs->first(); 
380          jcr = je->jcr;
381          jq->ready_jobs->remove(je);
382          if (!jq->ready_jobs->empty()) {
383             Dmsg0(100, "ready queue not empty start server\n");
384             if (start_server(jq) != 0) {
385                return NULL;
386             }
387          }
388          jq->running_jobs->append(je);
389          Dmsg1(100, "Took jobid=%d from ready and appended to run\n", jcr->JobId);
390          if ((stat = pthread_mutex_unlock(&jq->mutex)) != 0) {
391             return NULL;
392          }
393          /* Call user's routine here */
394          Dmsg1(100, "Calling user engine for jobid=%d\n", jcr->JobId);
395          jq->engine(je->jcr);
396          Dmsg1(100, "Back from user engine jobid=%d.\n", jcr->JobId);
397          if ((stat = pthread_mutex_lock(&jq->mutex)) != 0) {
398             free(je);                 /* release job entry */
399             return NULL;
400          }
401          Dmsg0(200, "Done lock mutex\n");
402          jq->running_jobs->remove(je);
403          /* 
404           * Release locks if acquired. Note, they will not have
405           *  been acquired for jobs canceled before they were
406           *  put into the ready queue.
407           */
408          if (jcr->acquired_resource_locks) {
409             jcr->store->NumConcurrentJobs--;
410             jcr->client->NumConcurrentJobs--;
411             jcr->job->NumConcurrentJobs--;
412          }
413
414          if (jcr->job->RescheduleOnError && 
415              jcr->JobStatus != JS_Terminated &&
416              jcr->JobStatus != JS_Canceled && 
417              jcr->job->RescheduleTimes > 0 && 
418              jcr->reschedule_count < jcr->job->RescheduleTimes) {
419
420              /*
421               * Reschedule this job by cleaning it up, but
422               *  reuse the same JobId if possible.
423               */
424             jcr->reschedule_count++;
425             jcr->sched_time = time(NULL) + jcr->job->RescheduleInterval;
426             Dmsg2(100, "Rescheduled Job %s to re-run in %d seconds.\n", jcr->Job,
427                (int)jcr->job->RescheduleInterval);
428             jcr->JobStatus = JS_Created; /* force new status */
429             dird_free_jcr(jcr);          /* partial cleanup old stuff */
430             if (jcr->JobBytes == 0) {
431                jobq_add(jq, jcr);     /* queue the job to run again */
432                free(je);              /* free the job entry */
433                continue;
434             }
435             /* 
436              * Something was actually backed up, so we cannot reuse
437              *   the old JobId or there will be database record
438              *   conflicts.  We now create a new job, copying the
439              *   appropriate fields.
440              */
441             JCR *njcr = new_jcr(sizeof(JCR), dird_free_jcr);
442             set_jcr_defaults(njcr, jcr->job);
443             njcr->reschedule_count = jcr->reschedule_count;
444             njcr->JobLevel = jcr->JobLevel;
445             njcr->JobStatus = jcr->JobStatus;
446             njcr->pool = jcr->pool;
447             njcr->store = jcr->store;
448             njcr->messages = jcr->messages;
449             run_job(njcr);
450          }
451          /* Clean up and release old jcr */
452          if (jcr->db) {
453             Dmsg0(200, "Close DB\n");
454             db_close_database(jcr, jcr->db);
455             jcr->db = NULL;
456          }
457          free_jcr(jcr);
458          free(je);                    /* release job entry */
459       }
460       /*
461        * If any job in the wait queue can be run,
462        *  move it to the ready queue
463        */
464       Dmsg0(100, "Done check ready, now check wait queue.\n");
465       while (!jq->waiting_jobs->empty() && !jq->quit) {
466          int Priority;
467          je = (jobq_item_t *)jq->waiting_jobs->first(); 
468          jobq_item_t *re = (jobq_item_t *)jq->running_jobs->first();
469          if (re) {
470             Priority = re->jcr->JobPriority;
471             Dmsg1(100, "Set Run pri=%d\n", Priority);
472          } else {
473             Priority = je->jcr->JobPriority;
474             Dmsg1(100, "Set Job pri=%d\n", Priority);
475          }
476          /*
477           * Acquire locks
478           */
479          for ( ; je;  ) {
480             JCR *jcr = je->jcr;
481             jobq_item_t *jn = (jobq_item_t *)jq->waiting_jobs->next(je);
482             Dmsg3(100, "Examining Job=%d JobPri=%d want Pri=%d\n",
483                jcr->JobId, jcr->JobPriority, Priority);
484             /* Take only jobs of correct Priority */
485             if (jcr->JobPriority != Priority) {
486                set_jcr_job_status(jcr, JS_WaitPriority);
487                break;
488             }
489             if (jcr->store->NumConcurrentJobs < jcr->store->MaxConcurrentJobs) {
490                jcr->store->NumConcurrentJobs++;
491             } else {
492                set_jcr_job_status(jcr, JS_WaitStoreRes);
493                je = jn;
494                continue;
495             }
496             if (jcr->client->NumConcurrentJobs < jcr->client->MaxConcurrentJobs) {
497                jcr->client->NumConcurrentJobs++;
498             } else {
499                jcr->store->NumConcurrentJobs--;
500                set_jcr_job_status(jcr, JS_WaitClientRes);
501                je = jn;
502                continue;
503             }
504             if (jcr->job->NumConcurrentJobs < jcr->job->MaxConcurrentJobs) {
505                jcr->job->NumConcurrentJobs++;
506             } else {
507                jcr->store->NumConcurrentJobs--;
508                jcr->client->NumConcurrentJobs--;
509                set_jcr_job_status(jcr, JS_WaitJobRes);
510                je = jn;
511                continue;
512             }
513             jcr->acquired_resource_locks = true;
514             jq->waiting_jobs->remove(je);
515             jq->ready_jobs->append(je);
516             Dmsg1(100, "moved JobId=%d from wait to ready queue\n", je->jcr->JobId);
517             je = jn;
518          } /* end for loop */
519          break;
520       } /* end while loop */
521       Dmsg0(100, "Done checking wait queue.\n");
522       /*
523        * If no more ready work and we are asked to quit, then do it
524        */
525       if (jq->ready_jobs->empty() && jq->quit) {
526          jq->num_workers--;
527          if (jq->num_workers == 0) {
528             Dmsg0(100, "Wake up destroy routine\n");
529             /* Wake up destroy routine if he is waiting */
530             pthread_cond_broadcast(&jq->work);
531          }
532          break;
533       }
534       Dmsg0(100, "Check for work request\n");
535       /* 
536        * If no more work requests, and we waited long enough, quit
537        */
538       Dmsg2(100, "timedout=%d read empty=%d\n", timedout,
539          jq->ready_jobs->empty());
540       if (jq->ready_jobs->empty() && timedout) {
541          Dmsg0(100, "break big loop\n");
542          jq->num_workers--;
543          break;
544       }
545       Dmsg0(100, "Loop again\n");
546       work = false;
547    } /* end of big for loop */
548
549    Dmsg0(200, "unlock mutex\n");
550    pthread_mutex_unlock(&jq->mutex);
551    Dmsg0(100, "End jobq_server\n");
552    return NULL;
553 }
554
555 #endif /* JOB_QUEUE */