Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Scavenger ¶
type Scavenger struct {
// contains filtered or unexported fields
}
Scavenger is the type that holds the state for executions scavenger daemon
func NewScavenger ¶
func NewScavenger( frontendClient frontend.Client, historyDB persistence.HistoryManager, metricsClient metrics.Client, logger log.Logger, execMgrFactory persistence.ExecutionManagerFactory, numHistoryShards int32, ) *Scavenger
NewScavenger returns an instance of executions scavenger daemon The Scavenger can be started by calling the Start() method on the returned object. Calling the Start() method will result in one complete iteration over all of the open workflow executions in the system. For each executions, will attempt to validate the workflow execution and emit metrics/logs on validation failures.
The scavenger will retry on all persistence errors infinitely and will only stop under two conditions
- either all executions are processed successfully (or)
- Stop() method is called to stop the scavenger
Click to show internal directories.
Click to hide internal directories.