Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/01/11 15:51:11 (13 years ago)
Author:
cneumuel
Message:

#1233

  • changed the workflow of aquireing a new job from server.
    • if a job is available for calculation, the slave receives the jobId already with the heartbeats. The job is then exclusively assigned to this slave.
  • extended the metainfo for a slave by OperatingSystem and CpuArchitecture
  • enhanced the way plugin-dependencies are discovered by using the types used by XmlGenerator. Now only mimimum amount of plugins are transferred.
  • selection of waiting jobs now consideres assigned slave-group
  • more unit tests for service
  • added unit tests for experiment manager
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave/3.4/Core.cs

    r5402 r5404  
    153153
    154154          //Pull a Job from the Server
    155           case MessageContainer.MessageType.AquireJob:
    156             Job myJob = wcfService.AquireJob();
     155          case MessageContainer.MessageType.CalculateJob:
     156            Job myJob = wcfService.GetJob(container.JobId);
    157157            //TODO: handle in own thread!!
    158158            JobData jobData = wcfService.GetJobData(myJob.Id);
Note: See TracChangeset for help on using the changeset viewer.