Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Queues: We want to keep the queue functionality of Torque/Moab where, for example, hera jobs go to hera nodes, vlass jobs go to vlass nodes. We would also like to be able to have vlasstest jobs go to the vlass nodes with a higher priority without preempting running jobs.

    • Slurm

      • Queues are called partitions.  At some level they are called partitions in Torque as well.
      • Job preemtion is disabled by default
      • Allows for simple priority settings in partitions with the default PriorityType=priority/basic plugin.
      • E.g. PartitionName=vlass Nodes=testpost[002-004] MaxTime=144000 State=UP Priority=1000
    • HTCondor
      • HTCondor doesn't have queues or partitions like Torque/Moab or Slurm but there are still ways to do what we need.
      • Using separate pools for things like HERA and VLASS is an option, but may be overkill as it would require separate Central Managers.
      • Requirements or Constraints is an option.  For example, HERA nodes could set the following in their configs
        • HERA = True
        • STARTD_ATTRS = HERA, $(STARTD_ATTRS)
        • and users could set the following in their submit files
        • Requirements = (HERA =?= True)
        • We could do the same for VLASS/VLASSTEST but I don't know if HTCondor can prioritize VLASS over VLASSTEST the way we do with Moab.
        • VLASS = True
        • VLASSTEST = True
        • STARTD_ATTRS = VLASS, VLASSTEST, $(STARTD_ATTRS)
        • then users would set either requirements = (VLASS =?= True) or requirements = (VLASSTEST =?= True)
        I don't know how to simulate the vlass/vlasstest queues.  Perhaps by the time we move to HTCondor we won't need vlasstest anymore
        • Or if you wanted to keep the priority where VLASS jobs only run on VLASSTEST nodes when they aren't busy, the user could set Rank = (VLASS == 1)  and requirements = (VLASS =?= True) in order to run on a VLASS node and only run on a VLASSTEST node when there are no VLASS nodes available.
      • HTCondor does support accounting groups that may work like queues.
      • Can we combine Requirements and Rank in such a way that a job can prefer to run on a VLASS node but will run on VLASSTEST if there are no VLASS nodes available?  Will using Rank in this way leave that job susceptible to preemption?

...