本文整理汇总了Python中work_queue.WorkQueue.specify_task_order方法的典型用法代码示例。如果您正苦于以下问题:Python WorkQueue.specify_task_order方法的具体用法?Python WorkQueue.specify_task_order怎么用?Python WorkQueue.specify_task_order使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类work_queue.WorkQueue
的用法示例。
在下文中一共展示了WorkQueue.specify_task_order方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: set_debug_flag
# 需要导入模块: from work_queue import WorkQueue [as 别名]
# 或者: from work_queue.WorkQueue import specify_task_order [as 别名]
import time
set_debug_flag('debug')
set_debug_flag('wq')
wq = WorkQueue(WORK_QUEUE_RANDOM_PORT, name='workqueue_example', catalog=True, exclusive=False)
os.environ['PATH'] = '../../../work_queue/src:' + os.environ['PATH']
os.system('work_queue_worker -d all localhost %d &' % wq.port)
print wq.name
wq.specify_algorithm(WORK_QUEUE_SCHEDULE_FCFS)
#wq.specify_name('workqueue_example')
#wq.specify_master_mode(WORK_QUEUE_MASTER_MODE_STANDALONE)
#wq.specify_worker_mode(WORK_QUEUE_WORKER_MODE_SHARED)
wq.specify_task_order(WORK_QUEUE_TASK_ORDER_LIFO)
if wq.empty():
print 'work queue is empty'
outputs = []
for i in range(5):
ifile = 'msg.%d' % i
ofile = 'out.%d' % i
task = Task('cat < %s > %s' % (ifile, ofile))
task.specify_tag(str(time.time()))
print task.command, task.tag
task.specify_algorithm(WORK_QUEUE_SCHEDULE_FILES)