当前位置: 首页>>代码示例>>Python>>正文


Python Workflow.add_workflow方法代码示例

本文整理汇总了Python中workflow.Workflow.add_workflow方法的典型用法代码示例。如果您正苦于以下问题:Python Workflow.add_workflow方法的具体用法?Python Workflow.add_workflow怎么用?Python Workflow.add_workflow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在workflow.Workflow的用法示例。


在下文中一共展示了Workflow.add_workflow方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_nmax

# 需要导入模块: from workflow import Workflow [as 别名]
# 或者: from workflow.Workflow import add_workflow [as 别名]
 def test_nmax(self):
     print 'test_nmax'
     result = False
     wf = Workflow()
     wf.add_workflow(self.tutorial_dir_1, None)
     
     print get_nmax(wf, [], [], datetime(2000,1,1)) 
     result = True
     self.assertTrue(result)
开发者ID:rika,项目名称:dynamic-provisioning,代码行数:11,代码来源:test.py

示例2: test_workflow

# 需要导入模块: from workflow import Workflow [as 别名]
# 或者: from workflow.Workflow import add_workflow [as 别名]
 def test_workflow(self):
     print 'test_workflow'
     result = False
     
     w = Workflow()
     w.add_workflow(self.tutorial_dir_1, None)
     for j in w.jobs:
         print j.id
     
     print [j.rank for j in w.ranked_jobs]
开发者ID:rika,项目名称:dynamic-provisioning,代码行数:12,代码来源:test.py

示例3: test_cost_n

# 需要导入模块: from workflow import Workflow [as 别名]
# 或者: from workflow.Workflow import add_workflow [as 别名]
 def test_cost_n(self):
     print 'test_cost_n'
     result = False
     wf = Workflow()
     wf.add_workflow(self.tutorial_dir_1, None)
     
     for i in [1,2,3]:
         entries, cost = sched_cost_n(wf, [], [], i, datetime(2000,1,1))
         print i, cost
         print_sched(entries)
     
     
     result = True
     self.assertTrue(result)
开发者ID:rika,项目名称:dynamic-provisioning,代码行数:16,代码来源:test.py

示例4: test_merge_workflows

# 需要导入模块: from workflow import Workflow [as 别名]
# 或者: from workflow.Workflow import add_workflow [as 别名]
 def test_merge_workflows(self):
     print 'test_merge_workflows'
     result = False
     
     w = Workflow()
     w.add_workflow(self.tutorial_dir_1, None)
     w.add_workflow(self.tutorial_dir_2, None)
      
     for wid in Set([j.wf_id for j in w.jobs]):
         print wid
         for j in [j for j in w.jobs if j.wf_id == wid]:
             print j.id           
     
     result = True 
     self.assertTrue(result)
开发者ID:rika,项目名称:dynamic-provisioning,代码行数:17,代码来源:test.py

示例5: test_number_of_machines

# 需要导入模块: from workflow import Workflow [as 别名]
# 或者: from workflow.Workflow import add_workflow [as 别名]
    def test_number_of_machines(self):
        print 'test_number_of_machines'
        result = False
        wf = Workflow()
        wf.add_workflow(self.tutorial_dir_1, None)

        try:
            entries, n, costs = number_of_machines(wf, [], [], 1, datetime(2000,1,1), 1)
            print i, n, costs
            print_sched(entries)
        except BudgetException as e:
            print e
        
        for i in range(1,5):
            try:
                entries, n, costs = number_of_machines(wf, [], [], i, datetime(2000,1,1), 10)
                print i, n, costs
                print_sched(entries)
            except BudgetException as e:
                print e

            
        result = True
        self.assertTrue(result)
开发者ID:rika,项目名称:dynamic-provisioning,代码行数:26,代码来源:test.py

示例6: Monitor

# 需要导入模块: from workflow import Workflow [as 别名]
# 或者: from workflow.Workflow import add_workflow [as 别名]
class Monitor():
    def __init__(self):
        self.workflow = Workflow()
        self.creation_timestamp = self.timestamp = datetime.now()
        self.logwatcher = LogWatcher()
        
        manager = Machine()
        manager.status = MachineStatus.manager
        manager.condor_slot = 'local'
        self.machines = [manager]
        
        boot_entry = ScheduleEntry(Job('boot', None), manager, None, None)
        boot_entry.real_start = self.timestamp
        boot_entry.real_end = self.timestamp
        boot_entry.status = EntryStatus.completed
        self.entries = [boot_entry]
        self.entries_cid = {}
        
    def add_workflow(self, workflow_dir):
        wf_id = self.workflow.add_workflow(workflow_dir)
        self.logwatcher.add(wf_id, workflow_dir)
            
    def sync_machines(self):
        slots = condor_slots()
        for s in slots:
            if s not in [m.condor_slot for m in self.machines]:
                machine = Machine()
                machine.status = MachineStatus.running
                machine.condor_slot = s
                boot_job = Job('boot', None)
                boot_entry = ScheduleEntry(boot_job, machine, None, None)
                boot_entry.log[LogKey.real_start] = self.creation_timestamp
                boot_entry.log[LogKey.real_end] = self.timestamp
                boot_entry.status = EntryStatus.completed
                self.entries.append(boot_entry)
                self.machines.append(machine)
                print "++Machine", s
                
    def sync_jobs(self):
        log_entries = self.logwatcher.nexts()
        for le in log_entries:
            if le.id in self.entries_cid: # in dict keys
                entry = self.entries_cid[le.id]
            else:
                entry = ScheduleEntry(condor_id=le.id)
                self.entries.append(entry)
                self.entries_cid[le.id] = entry
                print "++Job", le.id
                
            entry.log[le.event] = le.timestamp
            
            if le.event == LogKey.execute:
                entry.status = EntryStatus.executing
            elif le.event == LogKey.job_terminated:
                entry.status = EntryStatus.completed
                wf_id, dag_job_id, slot = condor_history(le.id)
                
                job = next((j for j in self.workflow.jobs if j.dag_job_id == dag_job_id and j.wf_id == wf_id), None)
                if job:
                    entry.job = job
                    entry.host = next((m for m in self.machines if m.condor_slot == slot), self.machines[0])
                    print "--Job", le.id, dag_job_id, entry.host.condor_slot
            
    def update_timestamp(self):
        self.timestamp = datetime.now()
开发者ID:rika,项目名称:dynamic-provisioning,代码行数:67,代码来源:monitor.py

示例7: Provisioner

# 需要导入模块: from workflow import Workflow [as 别名]
# 或者: from workflow.Workflow import add_workflow [as 别名]
class Provisioner():
    def __init__(self, vm_limit, azure_config, skip_setup, local):
        self.vm_limit = vm_limit # user input
        self.budget = 0
        self.timestamp = datetime.now()
        self.cost_pred = 0
        self.wf_end = None
        
        self.jobs_terminated = False
        self.last_resched = None
        
        self.workflow = Workflow()
        self.logwatcher = LogWatcher()
        
        self.schedule = Schedule()
        
        manager = Machine()
        manager.status = MachineStatus.manager
        manager.condor_slot = 'manager'
        self.machines = [manager]
        
        boot_entry = ScheduleEntry(Job('boot', None), manager, self.timestamp, self.timestamp)
        boot_entry.real_start = self.timestamp
        boot_entry.real_end = self.timestamp
        boot_entry.status = EntryStatus.completed
        self.schedule.add_entry_host(boot_entry, manager)
        
        self.local = local
        if azure_config and not local:
            hostname = socket.gethostname()
            self.exp = AzureExperiment(azure_config, skip_setup=skip_setup, name=hostname)
            self.master_addr = socket.gethostbyname(hostname)
            self.user = azure_config.admin_username
        else:
            self.exp = self.master_addr = self.user = None
        
    def add_workflow(self, workflow_dir, prediction_file, budget):
        self.budget = self.budget + int(round(float(budget)))
        wf_id = self.workflow.add_workflow(workflow_dir, prediction_file=prediction_file)
        self.logwatcher.add(wf_id, workflow_dir)
            
    def update_schedule(self):
        print 'UPDATE SCHED'
        self.update_budget_timestamp()
        self.last_resched = self.timestamp 
    
        # completed and running entries will not change
        self.schedule.rm_scheduled_entries()

        if self.workflow.has_jobs_to_sched(self.schedule):
            # Max number of vms
            nmax = get_nmax(self.workflow, self.machines, self.schedule, self.vm_limit, self.timestamp, self.local)

            print 'NMAX',nmax
            
            # Get the number of machines to be used
            schedule, _cost, _n = sched_number_of_machines(self.workflow, self.machines, self.schedule, nmax, self.timestamp, self.budget, self.local)
            print "N", _n, 'budget', self.budget
            
            # Update schedule
            self.schedule = schedule

    def update_budget_timestamp(self):
        timestamp = datetime.now()
        if self.timestamp != None:
            # Supondo vm_cost em cost/second
            # Supondo que não houve mudança no número de máquinas
            # desde o ultimo self.timestamp
            delta = (timestamp - self.timestamp).seconds
            charged = delta * len(self.machines) * VM_COST_PER_SEC
            self.budget = self.budget - charged
        self.timestamp = timestamp
        
    def update_wf_pred(self):
        self.cost_pred, self.wf_end = sched_cost_pred(self.machines, self.schedule, self.timestamp)

    def allocate_new_vms(self):
        # boot entries
        if self.schedule != None:
            for m in self.schedule.entries_host.keys():
                entry = self.schedule.entries_host[m][0]
                if entry.status == EntryStatus.scheduled and entry.start() <= self.timestamp:
                    m.allocate(self.exp, self.master_addr, self.user)
                    
                    self.machines.append(m)
                    entry.status = EntryStatus.executing
                    entry.log[LogKey.real_start] = self.timestamp
        
    
    def deallocate_vms(self):
        for m in self.machines:
            if m.status == MachineStatus.manager:
                continue
            
            # if there's no more budget or
            # if there's nothing executing or scheduled to the machine
            if self.schedule == None or len([e for e in self.schedule.entries_host[m] if e.status != EntryStatus.completed]) == 0:
                m.deallocate(self.exp)
                print "--Machine", m.condor_slot
                
#.........这里部分代码省略.........
开发者ID:rika,项目名称:dynamic-provisioning,代码行数:103,代码来源:provisioner.py


注:本文中的workflow.Workflow.add_workflow方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。