You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The activity will choose to use local activity or regular based on workflow config.
However, the config can be ignored and always use local activity, because there is no side effect of using local activity for this case, but only benefits. The latency will be lower with LA, and saving the storage cost becaues omitting the activity input in LA.
Goal
Update the workflowUpdate to always use local activity.
Note:
Needs a versioning because this is not determinstic change
The text was updated successfully, but these errors were encountered:
Context
Today, whenever an RPC needs locking, we will use sync update of Temporal to process:
iwf/service/api/service.go
Line 620 in 20103a8
Within the sync update, we use an activity to invoke worker RPC API:
iwf/service/interpreter/workflowUpdater.go
Line 92 in 20103a8
The activity will choose to use local activity or regular based on workflow config.
However, the config can be ignored and always use local activity, because there is no side effect of using local activity for this case, but only benefits. The latency will be lower with LA, and saving the storage cost becaues omitting the activity input in LA.
Goal
Update the workflowUpdate to always use local activity.
Note:
The text was updated successfully, but these errors were encountered: