How to get the list of active jobs ID for a specific Node Group using C# API

Answered How to get the list of active jobs ID for a specific Node Group using C# API

  • 2011年10月24日 14:38
     
     

    In my application I need to get the list of active jobs ID for a specific Node Group that the user chooses.

    how can i get it using C#?

    Thanks ,

    Ben

全部回复

  • 2011年10月27日 21:57
     
     

    You might start by reviewing IScheduler.GetJobList() (http://msdn.microsoft.com/en-us/library/microsoft.hpc.scheduler.ischeduler.getjoblist(VS.85).aspx).

    Filtering by nodegroup membership might take some work but with GetJobList() you should be able to get the information you seek.

     

     

    daryl

  • 2011年10月30日 14:27
     
     

    Hi Daryl,

    I would appreciate if I can get an example.

    Thanks,

    Ben

  • 2011年11月1日 22:00
     
     已答复

    Since nodegroups cannot be used as a filter criteria, this must be implemented on the client side.

    Assuming "active" means "running" we get:

    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;


    using Microsoft.Hpc.Scheduler;
    using
    Microsoft.Hpc.Scheduler.Properties;   

    namespace Sample
    {
        class Program
       
    {
           
    static void Main(string[] args)
            {
                IScheduler scheduler = new Scheduler();

                scheduler.Connect("localhost");

                IFilterCollection filter = scheduler.CreateFilterCollection();
                FilterProperty filStateRunning = new FilterProperty(FilterOperator.Equal, JobPropertyIds.State, JobState.Running);

                filter.Add(filStateRunning);

                // now fetch the list of all jobs that satisfy the filter
                ISchedulerCollection jobs = scheduler.GetJobList(filter, null /* no sort order specified */);

                // build this list of jobs in desired nodegroup.
                List<ISchedulerJob> jobsInNodegroup = new List<ISchedulerJob>;

                // walk the filtered collection, look for jobs in desired nodegroup
                foreach (object obj in jobs)
                {
                    if (obj is ISchedulerJob)
                    {
                        ISchedulerJob job = obj as ISchedulerJob;

                        if (job.NodeGroups.Contains("ComputeNodes")) //<<-- put desired nodegroup here
                        {
                            jobsInNodegroup.Add(job);
                        }
                    }
                }

                // use "jobsInnodegroup" here
            }
        }
    }

     

    • 已建议为答案 DarylMsft 2011年11月1日 22:00
    • 已编辑 DarylMsft 2011年11月1日 22:16 formating battles
    • 已标记为答案 Ben.Alterzon 2011年11月3日 12:48
    •