ACID · Schema

AcidSagaStep

A step in a distributed Saga pattern transaction, representing a local transaction with a compensating action for rollback.

ACIDDatabaseTransactionsAtomicityConsistencyIsolationDurabilityDistributed Systems

Properties

Name Type Description
stepId string Unique identifier for this saga step
sagaId string Identifier of the parent saga workflow
stepName string Human-readable name for this saga step
sequence integer Execution order within the saga (1-based)
status string Current status of this saga step
serviceEndpoint string URL of the service responsible for this step
compensationEndpoint string URL to call to undo this step if a later step fails
startTime string When this step began executing
endTime string When this step completed or was compensated
retryCount integer Number of retry attempts for this step
errorMessage string Error message if the step failed
View JSON Schema on GitHub