[265] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
[219] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Text;
|
---|
| 26 | using System.ServiceModel;
|
---|
| 27 | using HeuristicLab.Grid;
|
---|
| 28 | using System.Threading;
|
---|
| 29 | using HeuristicLab.Core;
|
---|
| 30 | using System.IO;
|
---|
| 31 | using System.Windows.Forms;
|
---|
[386] | 32 | using System.Diagnostics;
|
---|
[219] | 33 |
|
---|
[372] | 34 | namespace HeuristicLab.Grid {
|
---|
[391] | 35 | public class JobExecutionException : ApplicationException {
|
---|
| 36 | public JobExecutionException(string msg) : base(msg) { }
|
---|
| 37 | }
|
---|
| 38 |
|
---|
[372] | 39 | public class JobManager {
|
---|
[386] | 40 | private const int MAX_RESTARTS = 5;
|
---|
[502] | 41 | private const int RESULT_POLLING_TIMEOUT = 5;
|
---|
[386] | 42 |
|
---|
[219] | 43 | private IGridServer server;
|
---|
[386] | 44 | private object waitingQueueLock = new object();
|
---|
[2055] | 45 | private Queue<AsyncGridResult> waitingJobs = new Queue<AsyncGridResult>();
|
---|
[386] | 46 | private object runningQueueLock = new object();
|
---|
[2055] | 47 | private Queue<AsyncGridResult> runningJobs = new Queue<AsyncGridResult>();
|
---|
[387] | 48 | private AutoResetEvent runningWaitHandle = new AutoResetEvent(false);
|
---|
| 49 | private AutoResetEvent waitingWaitHandle = new AutoResetEvent(false);
|
---|
[248] | 50 |
|
---|
[219] | 51 |
|
---|
[2058] | 52 | public JobManager(IGridServer server) {
|
---|
| 53 | this.server = server;
|
---|
[386] | 54 | Thread starterThread = new Thread(StartEngines);
|
---|
| 55 | Thread resultsGatheringThread = new Thread(GetResults);
|
---|
| 56 | starterThread.Start();
|
---|
| 57 | resultsGatheringThread.Start();
|
---|
[219] | 58 | }
|
---|
| 59 |
|
---|
[372] | 60 | public void Reset() {
|
---|
[2055] | 61 | lock (waitingQueueLock) {
|
---|
| 62 | foreach (AsyncGridResult r in waitingJobs) {
|
---|
| 63 | r.WaitHandle.Close();
|
---|
[391] | 64 | }
|
---|
| 65 | waitingJobs.Clear();
|
---|
[2055] | 66 | }
|
---|
| 67 | lock (runningQueueLock) {
|
---|
| 68 | foreach (AsyncGridResult r in runningJobs) {
|
---|
| 69 | r.WaitHandle.Close();
|
---|
[391] | 70 | }
|
---|
| 71 | runningJobs.Clear();
|
---|
[219] | 72 | }
|
---|
| 73 | }
|
---|
| 74 |
|
---|
[248] | 75 |
|
---|
[386] | 76 | public void StartEngines() {
|
---|
| 77 | try {
|
---|
[2055] | 78 | while (true) {
|
---|
| 79 | AsyncGridResult job = null;
|
---|
| 80 | lock (waitingQueueLock) {
|
---|
| 81 | if (waitingJobs.Count > 0) job = waitingJobs.Dequeue();
|
---|
[248] | 82 | }
|
---|
[2055] | 83 | if (job == null) waitingWaitHandle.WaitOne(); // no jobs waiting
|
---|
[391] | 84 | else {
|
---|
[2058] | 85 | Guid currentEngineGuid = server.BeginExecuteEngine(ZipEngine(job.Engine));
|
---|
[2055] | 86 | if (currentEngineGuid == Guid.Empty) {
|
---|
[391] | 87 | // couldn't start the job -> requeue
|
---|
[2055] | 88 | if (job.Restarts < MAX_RESTARTS) {
|
---|
| 89 | job.Restarts++;
|
---|
| 90 | lock (waitingQueueLock) waitingJobs.Enqueue(job);
|
---|
[391] | 91 | waitingWaitHandle.Set();
|
---|
[386] | 92 | } else {
|
---|
[391] | 93 | // max restart count reached -> give up on this job and flag error
|
---|
[2055] | 94 | job.Aborted = true;
|
---|
| 95 | job.SignalFinished();
|
---|
[386] | 96 | }
|
---|
[391] | 97 | } else {
|
---|
| 98 | // job started successfully
|
---|
[2055] | 99 | job.Guid = currentEngineGuid;
|
---|
| 100 | lock (runningQueueLock) {
|
---|
[391] | 101 | runningJobs.Enqueue(job);
|
---|
| 102 | runningWaitHandle.Set();
|
---|
| 103 | }
|
---|
[386] | 104 | }
|
---|
[315] | 105 | }
|
---|
[386] | 106 | }
|
---|
| 107 | }
|
---|
[2055] | 108 | catch (Exception e) {
|
---|
[2073] | 109 | HeuristicLab.Tracing.Logger.Error("Exception " + e + " in JobManager.StartEngines() killed the start-engine thread\n" + e.StackTrace);
|
---|
[2055] | 110 | }
|
---|
[386] | 111 | }
|
---|
| 112 |
|
---|
[391] | 113 |
|
---|
[386] | 114 | public void GetResults() {
|
---|
| 115 | try {
|
---|
[2055] | 116 | while (true) {
|
---|
| 117 | AsyncGridResult job = null;
|
---|
| 118 | lock (runningQueueLock) {
|
---|
| 119 | if (runningJobs.Count > 0) job = runningJobs.Dequeue();
|
---|
[315] | 120 | }
|
---|
[2055] | 121 | if (job == null) runningWaitHandle.WaitOne(); // no jobs running
|
---|
[391] | 122 | else {
|
---|
[2058] | 123 | byte[] zippedResult = server.TryEndExecuteEngine(job.Guid);
|
---|
[2055] | 124 | if (zippedResult != null) {
|
---|
| 125 | // successful => store result
|
---|
| 126 | job.ZippedResult = zippedResult;
|
---|
| 127 | // notify consumer that result is ready
|
---|
| 128 | job.SignalFinished();
|
---|
[386] | 129 | } else {
|
---|
| 130 | // there was a problem -> check the state of the job and restart if necessary
|
---|
[2058] | 131 | JobState jobState = server.JobState(job.Guid);
|
---|
[2055] | 132 | if (jobState == JobState.Unknown) {
|
---|
| 133 | job.Restarts++;
|
---|
| 134 | lock (waitingQueueLock) {
|
---|
[391] | 135 | waitingJobs.Enqueue(job);
|
---|
[386] | 136 | waitingWaitHandle.Set();
|
---|
| 137 | }
|
---|
| 138 | } else {
|
---|
| 139 | // job still active at the server
|
---|
[2055] | 140 | lock (runningQueueLock) {
|
---|
[391] | 141 | runningJobs.Enqueue(job);
|
---|
| 142 | runningWaitHandle.Set();
|
---|
[386] | 143 | }
|
---|
[520] | 144 | Thread.Sleep(TimeSpan.FromSeconds(RESULT_POLLING_TIMEOUT)); // sleep a while before trying to get the next result
|
---|
[386] | 145 | }
|
---|
| 146 | }
|
---|
| 147 | }
|
---|
[248] | 148 | }
|
---|
[219] | 149 | }
|
---|
[2055] | 150 | catch (Exception e) {
|
---|
[2073] | 151 | HeuristicLab.Tracing.Logger.Error("Exception " + e + " in JobManager.GetResults() killed the results-gathering thread\n" + e.StackTrace);
|
---|
[2055] | 152 | }
|
---|
[219] | 153 | }
|
---|
| 154 |
|
---|
[2055] | 155 | public AsyncGridResult BeginExecuteEngine(ProcessingEngine engine) {
|
---|
| 156 | AsyncGridResult asyncResult = new AsyncGridResult(engine);
|
---|
| 157 | asyncResult.Engine = engine;
|
---|
| 158 | lock (waitingQueueLock) {
|
---|
| 159 | waitingJobs.Enqueue(asyncResult);
|
---|
[386] | 160 | }
|
---|
| 161 | waitingWaitHandle.Set();
|
---|
[2055] | 162 | return asyncResult;
|
---|
[386] | 163 | }
|
---|
| 164 |
|
---|
[2055] | 165 | private byte[] ZipEngine(IEngine engine) {
|
---|
[402] | 166 | return PersistenceManager.SaveToGZip(engine);
|
---|
[257] | 167 | }
|
---|
| 168 |
|
---|
[2055] | 169 | public IEngine EndExecuteEngine(AsyncGridResult asyncResult) {
|
---|
| 170 | if (asyncResult.Aborted) {
|
---|
[391] | 171 | throw new JobExecutionException("Maximal number of job restarts reached. There is a problem with the connection to the grid-server.");
|
---|
[315] | 172 | } else {
|
---|
| 173 | // restore the engine
|
---|
[2055] | 174 | return (IEngine)PersistenceManager.RestoreFromGZip(asyncResult.ZippedResult);
|
---|
[256] | 175 | }
|
---|
[248] | 176 | }
|
---|
[219] | 177 | }
|
---|
| 178 | }
|
---|