Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Server/3.3/GridExecuter.cs @ 2055

Last change on this file since 2055 was 2055, checked in by gkronber, 15 years ago

Refactored JobManager and DistributedEngine to fix bugs in the GridExecuter. #644.

File size: 5.1 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.Text;
25using System.Windows.Forms;
26using HeuristicLab.PluginInfrastructure;
27using System.Net;
28using System.ServiceModel;
29using HeuristicLab.CEDMA.DB.Interfaces;
30using HeuristicLab.CEDMA.DB;
31using System.ServiceModel.Description;
32using System.Linq;
33using HeuristicLab.CEDMA.Core;
34using HeuristicLab.GP.StructureIdentification;
35using HeuristicLab.Data;
36using HeuristicLab.Grid;
37using System.Diagnostics;
38using HeuristicLab.Core;
39using System.Threading;
40using HeuristicLab.Modeling;
41
42namespace HeuristicLab.CEDMA.Server {
43  public class GridExecuter : ExecuterBase {
44    private JobManager jobManager;
45    private Dictionary<AsyncGridResult, IAlgorithm> activeAlgorithms;
46
47    private TimeSpan StartJobInterval {
48      get { return TimeSpan.FromMilliseconds(500); }
49    }
50
51    private TimeSpan WaitForFinishedJobsTimeout {
52      get { return TimeSpan.FromMilliseconds(100); }
53    }
54
55    public GridExecuter(IDispatcher dispatcher, IStore store, string gridUrl)
56      : base(dispatcher, store) {
57      this.jobManager = new JobManager(gridUrl);
58      activeAlgorithms = new Dictionary<AsyncGridResult, IAlgorithm>();
59      jobManager.Reset();
60    }
61
62    protected override void StartJobs() {
63      Dictionary<WaitHandle, AsyncGridResult> asyncResults = new Dictionary<WaitHandle,AsyncGridResult>();
64      while (true) {
65        try {
66          // start new jobs as long as there are less than MaxActiveJobs
67          while (asyncResults.Count < MaxActiveJobs) {
68            Thread.Sleep(StartJobInterval);
69            // get an execution from the dispatcher and execute in grid via job-manager
70            IAlgorithm algorithm = Dispatcher.GetNextJob();
71            if (algorithm != null) {
72              AtomicOperation op = new AtomicOperation(algorithm.Engine.OperatorGraph.InitialOperator, algorithm.Engine.GlobalScope);
73              AsyncGridResult asyncResult = jobManager.BeginExecuteEngine(new ProcessingEngine(algorithm.Engine.GlobalScope, op));
74              asyncResults.Add(asyncResult.WaitHandle, asyncResult);
75              lock (activeAlgorithms) {
76                activeAlgorithms.Add(asyncResult, algorithm);
77              }
78            }
79          }
80          // wait until any job is finished
81          WaitHandle[] whArr = asyncResults.Keys.ToArray();
82          int readyHandleIndex = WaitHandle.WaitAny(whArr, WaitForFinishedJobsTimeout);
83          if (readyHandleIndex != WaitHandle.WaitTimeout) {
84            WaitHandle readyHandle = whArr[readyHandleIndex];
85            IAlgorithm finishedAlgorithm = null;
86            AsyncGridResult finishedResult = null;
87            lock (activeAlgorithms) {
88              finishedResult = asyncResults[readyHandle];
89              finishedAlgorithm = activeAlgorithms[finishedResult];
90              activeAlgorithms.Remove(finishedResult);
91              asyncResults.Remove(readyHandle);
92            }
93            try {
94              IEngine finishedEngine = jobManager.EndExecuteEngine(finishedResult);
95              SetResults(finishedEngine.GlobalScope, finishedAlgorithm.Engine.GlobalScope);
96              StoreResults(finishedAlgorithm);
97            }
98            catch (Exception badEx) {
99              Trace.WriteLine("CEDMA Executer: Exception in job execution thread. " + badEx.Message);
100            }
101          }
102        }
103        catch (Exception ex) {
104          Trace.WriteLine("CEDMA Executer: Exception in job-management thread. " + ex.Message);
105        }
106      }
107    }
108
109    private void SetResults(IScope src, IScope target) {
110      foreach (IVariable v in src.Variables) {
111        target.AddVariable(v);
112      }
113      foreach (IScope subScope in src.SubScopes) {
114        target.AddSubScope(subScope);
115      }
116      foreach (KeyValuePair<string, string> alias in src.Aliases) {
117        target.AddAlias(alias.Key, alias.Value);
118      }
119    }
120
121    public override string[] GetJobs() {
122      lock (activeAlgorithms) {
123        string[] retVal = new string[activeAlgorithms.Count];
124        int i = 0;
125        foreach (IAlgorithm a in activeAlgorithms.Values) {
126          retVal[i++] = a.Name + " " + a.Dataset.GetVariableName(a.TargetVariable);
127        }
128        return retVal;
129      }
130    }
131  }
132}
Note: See TracBrowser for help on using the repository browser.