123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- # coding: utf-8
- # Copyright (C) 1994-2018 Altair Engineering, Inc.
- # For more information, contact Altair at www.altair.com.
- #
- # This file is part of the PBS Professional ("PBS Pro") software.
- #
- # Open Source License Information:
- #
- # PBS Pro is free software. You can redistribute it and/or modify it under the
- # terms of the GNU Affero General Public License as published by the Free
- # Software Foundation, either version 3 of the License, or (at your option) any
- # later version.
- #
- # PBS Pro is distributed in the hope that it will be useful, but WITHOUT ANY
- # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- # FOR A PARTICULAR PURPOSE.
- # See the GNU Affero General Public License for more details.
- #
- # You should have received a copy of the GNU Affero General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- # Commercial License Information:
- #
- # For a copy of the commercial license terms and conditions,
- # go to: (http://www.pbspro.com/UserArea/agreement.html)
- # or contact the Altair Legal Department.
- #
- # Altair’s dual-license business model allows companies, individuals, and
- # organizations to create proprietary derivative works of PBS Pro and
- # distribute them - whether embedded or bundled with other software -
- # under a commercial license agreement.
- #
- # Use of Altair’s trademarks, including but not limited to "PBS™",
- # "PBS Professional®", and "PBS Pro™" and Altair’s logos is subject to Altair's
- # trademark licensing policies.
- import os
- import string
- import time
- from tests.functional import *
- class TestStrictOrderingAndBackfilling(TestFunctional):
- """
- Test strict ordering when backfilling is truned off
- """
- @timeout(1800)
- def test_t1(self):
- a = {'resources_available.ncpus': 4}
- self.server.create_vnodes('vn', a, 1, self.mom, usenatvnode=True)
- rv = self.scheduler.set_sched_config(
- {'round_robin': 'false all', 'by_queue': 'false prime',
- 'by_queue': 'false non_prime', 'strict_ordering': 'true all',
- 'help_starving_jobs': 'false all'})
- self.assertTrue(rv)
- a = {'backfill_depth': 0}
- self.server.manager(MGR_CMD_SET, SERVER, a, expect=True)
- j1 = Job(TEST_USER)
- a = {'Resource_List.select': '1:ncpus=2',
- 'Resource_List.walltime': 9999}
- j1.set_sleep_time(9999)
- j1.set_attributes(a)
- j1 = self.server.submit(j1)
- j2 = Job(TEST_USER)
- a = {'Resource_List.select': '1:ncpus=3',
- 'Resource_List.walltime': 9999}
- j2.set_sleep_time(9999)
- j2.set_attributes(a)
- j2 = self.server.submit(j2)
- j3 = Job(TEST_USER)
- a = {'Resource_List.select': '1:ncpus=2',
- 'Resource_List.walltime': 9999}
- j3.set_sleep_time(9999)
- j3.set_attributes(a)
- j3 = self.server.submit(j3)
- rv = self.server.expect(
- JOB,
- {'comment': 'Not Running: Job would break strict sorted order'},
- id=j3,
- offset=2,
- max_attempts=2,
- interval=2)
- self.assertTrue(rv)
- """
- Test strict ordering when queue backilling is enabled and server
- backfilling is off
- """
- def test_t2(self):
- rv = self.scheduler.set_sched_config(
- {'by_queue': 'false prime', 'by_queue': 'false non_prime',
- 'strict_ordering': 'true all'})
- self.assertTrue(rv)
- a = {'backfill_depth': 2}
- self.server.manager(
- MGR_CMD_SET, QUEUE, a, id='workq', expect=True)
- a = {
- 'queue_type': 'execution',
- 'started': 't',
- 'enabled': 't',
- 'backfill_depth': 1}
- self.server.manager(MGR_CMD_CREATE, QUEUE, a, id='wq2')
- a = {
- 'queue_type': 'execution',
- 'started': 't',
- 'enabled': 't',
- 'backfill_depth': 0}
- self.server.manager(MGR_CMD_CREATE, QUEUE, a, id='wq3')
- a = {'backfill_depth': 0}
- self.server.manager(MGR_CMD_SET, SERVER, a, expect=True)
- a = {'resources_available.ncpus': 5}
- self.server.manager(
- MGR_CMD_SET,
- NODE,
- a,
- self.mom.shortname,
- expect=True)
- self.server.manager(
- MGR_CMD_SET, SERVER, {
- 'scheduling': 'False'}, expect=True)
- a = {'Resource_List.select': '1:ncpus=2', ATTR_queue: 'workq'}
- j = Job(TEST_USER, a)
- j.set_sleep_time(100)
- j1id = self.server.submit(j)
- j2id = self.server.submit(j)
- j3id = self.server.submit(j)
- a = {'Resource_List.select': '1:ncpus=1', ATTR_queue: 'wq2'}
- j = Job(TEST_USER, a)
- j.set_sleep_time(100)
- j4id = self.server.submit(j)
- a = {'Resource_List.select': '1:ncpus=1', ATTR_queue: 'wq3'}
- j = Job(TEST_USER, a)
- j.set_sleep_time(100)
- j5id = self.server.submit(j)
- self.server.manager(
- MGR_CMD_SET, SERVER, {
- 'scheduling': 'True'}, expect=True)
- self.server.expect(JOB,
- {'job_state': 'R'},
- id=j1id,
- max_attempts=30,
- interval=2)
- self.server.expect(JOB,
- {'job_state': 'R'},
- id=j2id,
- max_attempts=30,
- interval=2)
- self.server.expect(JOB,
- {'job_state': 'R'},
- id=j4id,
- max_attempts=30,
- interval=2)
- self.server.expect(JOB,
- {'job_state': 'Q'},
- id=j5id,
- max_attempts=30,
- interval=2)
|