Exemple #1
0
 def createBatchSystem(self):
     from toil.batchSystems.mesos.batchSystem import MesosBatchSystem
     self._startMesos(numCores)
     return MesosBatchSystem(config=self.config,
                             maxCores=numCores,
                             maxMemory=1e9,
                             maxDisk=1001)
Exemple #2
0
 def createBatchSystem(self):
     self._startMesos(numCores)
     return MesosBatchSystem(config=self.config,
                             maxCpus=numCores,
                             maxMemory=20,
                             maxDisk=1001,
                             masterIP='127.0.0.1:5050')
Exemple #3
0
 def createBatchSystem(self):
     # We know we have Mesos so we can import the batch system
     from toil.batchSystems.mesos.batchSystem import MesosBatchSystem
     self._startMesos(numCores)
     return MesosBatchSystem(config=self.config,
                             maxCores=numCores,
                             maxMemory=1e9,
                             maxDisk=1001)
Exemple #4
0
 def createBatchSystem(self):
     from toil.batchSystems.mesos.batchSystem import MesosBatchSystem
     self._startMesos(numCores)
     return MesosBatchSystem(config=self.config, maxCores=numCores, maxMemory=20, maxDisk=1001,masterIP='127.0.0.1:5050')