How to get the status of the resources in the cluster
-
2010年3月21日 1:44
hi all,
I am looking for a solution to get the status of the resources in the cluster, like how many nodes and their status. Is there any class library that supports that?
thanks a lot.
すべての返信
-
2010年3月22日 23:52
Hi,
You can use the HPC Scheduler API shipped in the SDK to do that.
IScheduler class has method: ISchedulerNode OpenNodeByName(string nodeName); to get a node object.
ISchedulerNode can show the node information and status. e.g. node state, offlinetime, onlinetime, numberofcores etc
Liwei
- 回答としてマーク ivici 2010年4月14日 7:27
-
2010年3月24日 8:41ok. Thanks.