gpt4 book ai didi

amazon-web-services - 将某些工作流执行优先于其他工作流执行

转载 作者:行者123 更新时间:2023-12-04 08:06:51 25 4
gpt4 key购买 nike

我一直在使用 amazon swf 的流程框架,我希望能够运行优先工作流执行和正常工作流执行。如果有优先任务,那么事件应该在正常优先任务之前选择优先任务。完成此任务的最佳方法是什么?

我认为以下方法可能有效,但我想知道是否有更好/推荐的方法。

  1. 我将为该事件定义两个 Activity Worker 和两个事件列表。一个优先列表和一个普通列表。每个 worker 将使用相同的事件类别。
  2. 两个工作人员将在同一主机(ec2 实例)上运行。
  3. 在工作流上,我将定义两个方法:startNormalWorkflow 和 startHighWorkflow。在 startHighWorkflow 方法中,我可以使用 ActivitySchedulingOptions 将任务置于高优先级列表中。

这种方法的问题是不能保证高优先级任务在正常任务之前安排。

最佳答案

这是个好问题,让我挠了挠头。

当然,给这只猫剥皮的方法不止一种,而且存在许多有效的解决方案。我在这里关注的是我能想到的最简单的可能性,即在单个工作流中按优先级顺序执行任务。

场景如下:我定义了一个 Activity Worker 服务于两个任务列表,default_tasksurgent_tasks,逻辑很简单:

  1. 如果 urgent_tasks 列表中有待处理的任务,则从那里选择一个,
  2. 否则,从default_tasks中选择一个任务
  3. 执行任何选定的任务。

问题是如何检查是否有任何高优先级任务挂起? CountPendingActivityTasks API 来拯救!

我知道你用 Flow为了发展。我的示例是使用 boto.swf.layer2 编写的,因为 Python 的原型(prototype)制作要容易得多 - 但想法保持不变,并且可以扩展到具有高优先级和低优先级工作流执行的更复杂的场景。

因此,要使用 boto.swf 完成上述操作请按照以下步骤操作:

将凭据导出到环境

$ export AWS_ACCESS_KEY_ID=your access key
$ export AWS_SECRET_ACCESS_KEY= your secret key

获取代码片段

为了方便,你可以从github上fork一下:

$ git clone git@github.com:oozie/stackoverflow.git
$ cd stackoverflow/amazon-swf/priority_tasks/

引导域和工作流:

# domain_setup.py 
import boto.swf.layer2 as swf

DOMAIN = 'stackoverflow'
VERSION = '1.0'

swf.Domain(name=DOMAIN).register()
swf.ActivityType(domain=DOMAIN, name='SomeActivity', version=VERSION, task_list='default_tasks').register()
swf.WorkflowType(domain=DOMAIN, name='MyWorkflow', version=VERSION, task_list='default_tasks').register()

决策实现:

# decider.py
import boto.swf.layer2 as swf

DOMAIN = 'stackoverflow'
ACTIVITY = 'SomeActivity'
VERSION = '1.0'

class MyWorkflowDecider(swf.Decider):

domain = DOMAIN
task_list = 'default_tasks'
version = VERSION

def run(self):
history = self.poll()
print history
if 'events' in history:
# Get a list of non-decision events to see what event came in last.
workflow_events = [e for e in history['events']
if not e['eventType'].startswith('Decision')]

decisions = swf.Layer1Decisions()

last_event = workflow_events[-1]
last_event_type = last_event['eventType']

if last_event_type == 'WorkflowExecutionStarted':
# At the start, get the worker to fetch the first assignment.
decisions.schedule_activity_task(ACTIVITY+'1', ACTIVITY, VERSION, task_list='default_tasks')
decisions.schedule_activity_task(ACTIVITY+'2', ACTIVITY, VERSION, task_list='urgent_tasks')
decisions.schedule_activity_task(ACTIVITY+'3', ACTIVITY, VERSION, task_list='default_tasks')
decisions.schedule_activity_task(ACTIVITY+'4', ACTIVITY, VERSION, task_list='urgent_tasks')
decisions.schedule_activity_task(ACTIVITY+'5', ACTIVITY, VERSION, task_list='default_tasks')
elif last_event_type == 'ActivityTaskCompleted':
# Complete workflow execution after 5 completed activities.
closed_activity_count = sum(1 for wf_event in workflow_events if wf_event.get('eventType') == 'ActivityTaskCompleted')
if closed_activity_count == 5:
decisions.complete_workflow_execution()

self.complete(decisions=decisions)
return True

优先考虑 worker 实现:

# worker.py
import boto.swf.layer2 as swf

DOMAIN = 'stackoverflow'
VERSION = '1.0'

class PrioritizingWorker(swf.ActivityWorker):

domain = DOMAIN
version = VERSION

def run(self):

urgent_task_count = swf.Domain(name=DOMAIN).count_pending_activity_tasks('urgent_tasks').get('count', 0)
if urgent_task_count > 0:
self.task_list = 'urgent_tasks'
else:
self.task_list = 'default_tasks'
activity_task = self.poll()

if 'activityId' in activity_task:
print urgent_task_count, 'urgent tasks in the queue. Executing ' + activity_task.get('activityId')
self.complete()
return True

从交互式 Python shell 的三个实例运行工作流

运行决策程序:

$ python -i decider.py
>>> while MyWorkflowDecider().run(): pass
...

开始执行:

$ python -i decider.py 
>>> swf.WorkflowType(domain='stackoverflow', name='MyWorkflow', version='1.0', task_list='default_tasks').start()

最后,启动 worker 并观察正在执行的任务:

$ python -i worker.py 
>>> while PrioritizingWorker().run(): pass
...
2 urgent tasks in the queue. Executing SomeActivity2
1 urgent tasks in the queue. Executing SomeActivity4
0 urgent tasks in the queue. Executing SomeActivity5
0 urgent tasks in the queue. Executing SomeActivity1
0 urgent tasks in the queue. Executing SomeActivity3

关于amazon-web-services - 将某些工作流执行优先于其他工作流执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18767443/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com