Azure / Azure/azure-functions-durable-python
Logging or Exceptions when Durable Functions Activity Does Not Exist
- 主要语言
- Python
- 星标
- 157
- 派生
- 70
- 平均合并
- 2 天 10 小时
- 30 天内合并 PR
- 2
描述
Pretty simple request, but not sure how simple it would be to implement.
Basically I would like some sort of feedback when you use the call_activity() method of the DurableOrchestrationContext class with a Durable Function Activity that does not exist.
```python
import azure.functions as func
import azure.durable_functions as df
def orchestrator_function(context: df.DurableOrchestrationContext):
logging.info("Starting Activity!")
result = yield context.call_activity("I_Do_Not_Exist", None, None)
logging.info("You will never see me because the code stops at the above step!")
return result
main = df.Orchestrator.create(orchestrator_function)
```
Side note: I may or may not have spent an hour and a half troubleshooting an orchestrator only to realize it was a typo in the activity name.
贡献指南
调研方向
从 DurableOrchestrationContext.call_activity() 开始,跟踪库和 runtime 如何处理未知的 activity 名称。检查现有的 activity dispatch 和错误处理测试;完成的标准是,缺失的 activity 会产生清晰的反馈,而不是在没有有用解释的情况下停止,并且包含回归测试覆盖。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- azure, python
- 领域
- backend
- Issue 类型
- 功能
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100