WRENCH  1.10
Cyberinfrastructure Simulation Workbench
Overview Installation Getting Started WRENCH 101 WRENCH 102
ComputeService.h
1 
10 #ifndef SIMULATION_COMPUTESERVICE_H
11 #define SIMULATION_COMPUTESERVICE_H
12 
13 #include <map>
14 
15 #include <iostream>
16 #include <cfloat>
17 #include <climits>
18 
19 #include "wrench/services/Service.h"
20 #include "wrench/workflow/job/WorkflowJob.h"
21 #include "wrench/workflow/job/StandardJob.h"
22 #include "wrench/workflow/job/PilotJob.h"
23 
24 namespace wrench {
25 
26  class Simulation;
27 
28  class StorageService;
29 
33  class ComputeService : public Service {
34 
35  /***********************/
37  /***********************/
38 
39  friend class StandardJobExecutorTest;
40  friend class Simulation;
41 
42  /***********************/
44  /***********************/
45 
46 
47  public:
48 
52  static constexpr unsigned long ALL_CORES = ULONG_MAX;
53 
57  static constexpr double ALL_RAM = DBL_MAX;
58 
59  /***********************/
61  /***********************/
62 
63  virtual ~ComputeService() {}
64 
65  void stop() override;
66 
67 // void submitJob(WorkflowJob *job, const std::map<std::string, std::string>& = {});
68 
69  void terminateJob(std::shared_ptr<WorkflowJob> job);
70 
71  bool supportsStandardJobs();
72 
73  bool supportsPilotJobs();
74 
75  bool hasScratch();
76 
77  unsigned long getNumHosts();
78 
79  std::vector<std::string> getHosts();
80 
81  std::map<std::string, unsigned long> getPerHostNumCores();
82 
83  unsigned long getTotalNumCores();
84 
85  std::map<std::string, unsigned long> getPerHostNumIdleCores();
86 
87  virtual unsigned long getTotalNumIdleCores();
88 
89  virtual bool isThereAtLeastOneHostWithIdleResources(unsigned long num_cores, double ram);
90 
91  std::map<std::string, double> getMemoryCapacity();
92 
93  std::map<std::string, double> getPerHostAvailableMemoryCapacity();
94 
95  std::map<std::string, double> getCoreFlopRate();
96 
97  double getTTL();
98 
99  double getTotalScratchSpaceSize();
100 
101  double getFreeScratchSpaceSize();
102 
103 
104  /***********************/
106  /***********************/
107 
108  /***********************/
110  /***********************/
111 
118  virtual void
119  submitStandardJob(std::shared_ptr<StandardJob> job, const std::map<std::string, std::string> &service_specific_arguments) = 0;
120 
127  virtual void submitPilotJob(std::shared_ptr<PilotJob> job, const std::map<std::string, std::string> &service_specific_arguments) = 0;
128 
133  virtual void terminateStandardJob(std::shared_ptr<StandardJob> job) = 0;
134 
139  virtual void terminatePilotJob(std::shared_ptr<PilotJob> job) = 0;
140 
145  std::shared_ptr<StorageService> getScratch();
146 
147 
148  ComputeService(const std::string &hostname,
149  std::string service_name,
150  std::string mailbox_name_prefix,
151  std::string scratch_space_mount_point);
152 
153  protected:
154 
155  friend class JobManager;
156 
157  void submitJob(std::shared_ptr<WorkflowJob> job, const std::map<std::string, std::string>& = {});
158 
159  ComputeService(const std::string &hostname,
160  std::string service_name,
161  std::string mailbox_name_prefix,
162  std::shared_ptr<StorageService> scratch_space);
163 
165  std::shared_ptr<StorageService> scratch_space_storage_service;
166 
167  /***********************/
169  /***********************/
170 
171  /***********************/
173  /***********************/
174 
175  std::shared_ptr<StorageService> getScratchSharedPtr();
176 
177  /***********************/
179  /***********************/
180 
181  private:
182 
183 
184  std::shared_ptr<StorageService> scratch_space_storage_service_shared_ptr;
185 
186  std::map<std::string, std::map<std::string, double>> getServiceResourceInformation();
187 
188  };
189 
190 
191 };
192 
193 #endif //SIMULATION_COMPUTESERVICE_H
wrench::ComputeService::getTotalScratchSpaceSize
double getTotalScratchSpaceSize()
Get the total capacity of the compute service's scratch storage space.
Definition: ComputeService.cpp:511
wrench::ComputeService::getPerHostAvailableMemoryCapacity
std::map< std::string, double > getPerHostAvailableMemoryCapacity()
Get ram availability for each of the compute service's host.
Definition: ComputeService.cpp:309
wrench::ComputeService::ComputeService
ComputeService(const std::string &hostname, std::string service_name, std::string mailbox_name_prefix, std::string scratch_space_mount_point)
Constructor.
Definition: ComputeService.cpp:112
wrench::ComputeService::hasScratch
bool hasScratch()
Checks if the compute service has a scratch space.
Definition: ComputeService.cpp:545
wrench::ComputeService::submitJob
void submitJob(std::shared_ptr< WorkflowJob > job, const std::map< std::string, std::string > &={})
Submit a job to the compute service.
Definition: ComputeService.cpp:57
wrench::ComputeService::getPerHostNumIdleCores
std::map< std::string, unsigned long > getPerHostNumIdleCores()
Get idle core counts for each of the compute service's host.
Definition: ComputeService.cpp:282
wrench::ComputeService::submitPilotJob
virtual void submitPilotJob(std::shared_ptr< PilotJob > job, const std::map< std::string, std::string > &service_specific_arguments)=0
Method to submit a pilot job to the service.
wrench::ComputeService::getTTL
double getTTL()
Get the time-to-live of the compute service.
Definition: ComputeService.cpp:454
wrench::ComputeService::getTotalNumIdleCores
virtual unsigned long getTotalNumIdleCores()
Get the total idle core count for all hosts of the compute service.
Definition: ComputeService.cpp:336
wrench::JobManager
A helper daemon (co-located with and explicitly started by a WMS), which is used to handle all job ex...
Definition: JobManager.h:48
wrench::ComputeService::getCoreFlopRate
std::map< std::string, double > getCoreFlopRate()
Get the per-core flop rate of the compute service's hosts.
Definition: ComputeService.cpp:403
wrench::ComputeService
The compute service base class.
Definition: ComputeService.h:33
wrench::ComputeService::getHosts
std::vector< std::string > getHosts()
Get the list of the compute service's compute host.
Definition: ComputeService.cpp:200
wrench::ComputeService::getScratch
std::shared_ptr< StorageService > getScratch()
Method that returns the computer service's scratch space's storage service.
Definition: ComputeService.cpp:529
wrench
Definition: Alarm.cpp:20
wrench::ComputeService::getPerHostNumCores
std::map< std::string, unsigned long > getPerHostNumCores()
Get core counts for each of the compute service's host.
Definition: ComputeService.cpp:229
wrench::ComputeService::submitStandardJob
virtual void submitStandardJob(std::shared_ptr< StandardJob > job, const std::map< std::string, std::string > &service_specific_arguments)=0
Method to submit a standard job to the service.
wrench::ComputeService::terminatePilotJob
virtual void terminatePilotJob(std::shared_ptr< PilotJob > job)=0
Method to terminate a running pilot job.
wrench::ComputeService::getFreeScratchSpaceSize
double getFreeScratchSpaceSize()
Get the free space on the compute service's scratch storage space.
Definition: ComputeService.cpp:520
wrench::ComputeService::getScratchSharedPtr
std::shared_ptr< StorageService > getScratchSharedPtr()
Get a shared pointer to the compute service's scratch storage space.
Definition: ComputeService.cpp:537
wrench::ComputeService::stop
void stop() override
Stop the compute service - must be called by the stop() method of derived classes.
Definition: ComputeService.cpp:33
wrench::ComputeService::getTotalNumCores
unsigned long getTotalNumCores()
Get the total core counts for all hosts of the compute service.
Definition: ComputeService.cpp:256
wrench::ComputeService::ALL_CORES
static constexpr unsigned long ALL_CORES
A convenient constant to mean "use all cores of a physical host" whenever a number of cores is needed...
Definition: ComputeService.h:52
wrench::S4U_Daemon::hostname
std::string hostname
The name of the host on which the daemon is running.
Definition: S4U_Daemon.h:51
wrench::Simulation
A class that provides basic simulation methods. Once the simulation object has been explicitly or imp...
Definition: Simulation.h:46
wrench::ComputeService::supportsStandardJobs
bool supportsStandardJobs()
Get whether the compute service supports standard jobs or not.
Definition: ComputeService.cpp:158
wrench::ComputeService::terminateStandardJob
virtual void terminateStandardJob(std::shared_ptr< StandardJob > job)=0
Method to terminate a running standard job.
wrench::ComputeService::scratch_space_storage_service
std::shared_ptr< StorageService > scratch_space_storage_service
A scratch storage service associated to the compute service.
Definition: ComputeService.h:165
wrench::ComputeService::ALL_RAM
static constexpr double ALL_RAM
A convenient constant to mean "use all ram of a physical host" whenever a ram capacity is needed when...
Definition: ComputeService.h:57
wrench::Service
A service that can be added to the simulation and that can be used by a WMS when executing a workflow...
Definition: Service.h:26
wrench::ComputeService::isThereAtLeastOneHostWithIdleResources
virtual bool isThereAtLeastOneHostWithIdleResources(unsigned long num_cores, double ram)
Method to find out if, right now, the compute service has at least one host with some idle number of ...
Definition: ComputeService.cpp:362
wrench::ComputeService::getNumHosts
unsigned long getNumHosts()
Get the number of hosts that the compute service manages.
Definition: ComputeService.cpp:177
wrench::ComputeService::getMemoryCapacity
std::map< std::string, double > getMemoryCapacity()
Get the RAM capacities for each of the compute service's hosts.
Definition: ComputeService.cpp:428
wrench::ComputeService::terminateJob
void terminateJob(std::shared_ptr< WorkflowJob > job)
Terminate a previously-submitted job (which may or may not be running yet)
Definition: ComputeService.cpp:85
wrench::ComputeService::supportsPilotJobs
bool supportsPilotJobs()
Get whether the compute service supports pilot jobs or not.
Definition: ComputeService.cpp:166