Source code for toil.test.mesos.stress
# Copyright (C) 2015-2021 Regents of the University of California
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from configargparse import ArgumentParser
from toil.job import Job
[docs]
def touchFile( fileStore ):
with fileStore.writeGlobalFileStream() as (f, id):
f.write( "This is a triumph" )
[docs]
class LongTestJob(Job):
def __init__(self, numJobs):
Job.__init__(self, memory=100000, cores=0.01)
self.numJobs = numJobs
[docs]
def run(self, fileStore):
for i in range(0,self.numJobs):
self.addChild(HelloWorldJob(i))
self.addFollowOn(LongTestFollowOn())
[docs]
class LongTestFollowOn(Job):
def __init__(self):
Job.__init__(self, memory=1000000, cores=0.01)
[docs]
def run(self, fileStore):
touchFile( fileStore )
[docs]
class HelloWorldJob(Job):
def __init__(self,i):
Job.__init__(self, memory=100000, cores=0.01)
self.i=i
[docs]
def run(self, fileStore):
touchFile( fileStore )
self.addFollowOn(HelloWorldFollowOn(self.i))
[docs]
class HelloWorldFollowOn(Job):
def __init__(self,i):
Job.__init__(self, memory=200000, cores=0.01)
self.i = i
[docs]
def run(self, fileStore):
touchFile( fileStore)
[docs]
def main(numJobs):
# Boilerplate -- startToil requires options
parser = ArgumentParser()
Job.Runner.addToilOptions(parser)
options = parser.parse_args( args=['./toilTest'] )
options.batchSystem="mesos"
options.mesos_endpoint="localhost:5050"
# Launch first toil Job
i = LongTestJob( numJobs )
Job.Runner.startToil(i, options )
if __name__=="__main__":
main(numJobs=5)