Add history propagation#1025
Open
acroca wants to merge 1 commit into
Open
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #1025 +/- ##
==========================================
- Coverage 86.63% 81.94% -4.69%
==========================================
Files 84 142 +58
Lines 4473 13977 +9504
==========================================
+ Hits 3875 11453 +7578
- Misses 598 2524 +1926 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
f492eed to
4e5a9ad
Compare
Signed-off-by: Albert Callarisa <albert@diagrid.io>
4e5a9ad to
53cc107
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds workflow history propagation to
dapr-ext-workflow.A workflow can opt into propagating its execution history to a child workflow or activity via
propagation=PropagationScope.OWN_HISTORYorpropagation=PropagationScope.LINEAGEoncall_activity/call_child_workflow.The receiver reads the propagated chunk through
ctx.get_propagated_history()and queries it withPropagatedHistory.get_workflow_by_name(...)→WorkflowResult.get_activity_by_name(...)/.get_child_workflow_by_name(...).Public surface lives in
dapr.ext.workflow.propagationand is re-exported fromdapr.ext.workflow— users never need to import from_durabletask. Default behavior is unchanged:propagation=Nonepropagates nothing.Includes an example app at
examples/workflow/history_propagation.py.References