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
Saga is a distributed transaction processing mode used to ensure consistency in distributed systems.The state machine mode of saga implemented in seata java, it`s needs to be support in seata go.
Each node of the state machine is declared as a state, and the state machine process is composed of different types of nodes.The ServiceTaskState represents an executable node. Historically, we have supported GrpcServiceTaskState. http calls are also frequent, We need to implement the http state type support http call, need consider tls, http multiple versions, etc.
There has been one history implementation, corresponding to the branch: feature/saga, but the details need to be completed. you can develop on this branch.
Saga is a distributed transaction processing mode used to ensure consistency in distributed systems.The state machine mode of saga implemented in seata java, it`s needs to be support in seata go.
Each node of the state machine is declared as a state, and the state machine process is composed of different types of nodes.The
ServiceTaskState
represents an executable node. Historically, we have supportedGrpcServiceTaskState
. http calls are also frequent, We need to implement the http state type support http call, need considertls
,http multiple versions
, etc.@see :pkg/saga/statemachine/statelang/state/task_state.go
The text was updated successfully, but these errors were encountered: