Files
seaweedfs/sw-block/engine/replication/state.go
T
pingqiuandClaude Opus 4.6 a6fc8545b9 feat: Phase 14A+14B — V2 core publication ownership + command semantics
14A: Publication as explicit core-owned state
- state.go: PublicationView on VolumeState, explicit gate reasons
- engine.go: mode→readiness→publication chain with named gates
  (awaiting_role_apply, awaiting_shipper_configured, awaiting_barrier_durability)
- projection.go: PublicationProjection carries publication truth
- RF=1/no-replicas → allocated_only (CP13-9 constraint in core)
- phase14_core_test.go: strengthened publication closure + RF=1 proof

14B: Command emission bounded by semantic gap
- engine.go: repeated same-assignment skips redundant commands,
  repeated same-reason BarrierRejected skips duplicate invalidation,
  command-state tracking on VolumeState
- command.go: new command types for bounded emission
- event.go: new boundary events
- phase14_command_test.go: exact command sequences frozen as proofs
  (primary/replica repeated assignment, assignment changed, repeated failure)
- phase14_boundary_test.go: boundary/recovery structural tests

All tests pass in sw-block/engine/replication.
Phase 14 docs updated (14A accepted, 14B active→14C planned).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 16:52:55 -07:00

147 lines
4.0 KiB
Go

package replication
// RuntimeAuthority names which runtime currently owns the integrated path.
// Phase 14 starts by making the V2 core explicit, but integrated tests still
// evaluate the constrained current runtime until a live cutover exists.
type RuntimeAuthority string
const (
RuntimeAuthorityConstrainedV1 RuntimeAuthority = "constrained_v1"
RuntimeAuthorityV2Core RuntimeAuthority = "v2_core"
)
// VolumeRole tracks the local role the core is normalizing.
type VolumeRole string
const (
RoleUnknown VolumeRole = "unknown"
RolePrimary VolumeRole = "primary"
RoleReplica VolumeRole = "replica"
)
// ModeName is the normalized outward mode vocabulary for the bounded chosen path.
type ModeName string
const (
ModeAllocatedOnly ModeName = "allocated_only"
ModeBootstrapPending ModeName = "bootstrap_pending"
ModeReplicaReady ModeName = "replica_ready"
ModePublishHealthy ModeName = "publish_healthy"
ModeDegraded ModeName = "degraded"
ModeNeedsRebuild ModeName = "needs_rebuild"
)
// ReadinessView captures bounded readiness truth for the current chosen path.
type ReadinessView struct {
Assigned bool
RoleApplied bool
ReceiverReady bool
ShipperConfigured bool
ShipperConnected bool
ReplicaReady bool
}
// BoundaryView captures durable/publication boundary truth. DurableLSN is the
// authority for replicated durability; diagnostic shipped progress is separate.
type BoundaryView struct {
CommittedLSN uint64
DurableLSN uint64
CheckpointLSN uint64
TargetLSN uint64
AchievedLSN uint64
DiagnosticShippedLSN uint64
LastBarrierOK bool
LastBarrierReason string
}
// ModeView is the bounded external mode meaning derived from the current state.
type ModeView struct {
Name ModeName
Reason string
Authority RuntimeAuthority
}
// PublicationView is the semantic owner for outward publication truth. Other
// projections may derive convenience fields from it, but they must not become
// parallel authorities.
type PublicationView struct {
Healthy bool
Reason string
}
type RecoveryPhase string
const (
RecoveryIdle RecoveryPhase = "idle"
RecoveryCatchingUp RecoveryPhase = "catching_up"
RecoveryNeedsRebuild RecoveryPhase = "needs_rebuild"
RecoveryRebuilding RecoveryPhase = "rebuilding"
)
// RecoveryView captures the bounded recovery truth the core owns directly.
type RecoveryView struct {
Phase RecoveryPhase
TargetLSN uint64
AchievedLSN uint64
Reason string
}
type commandState struct {
RoleEpoch uint64
Role VolumeRole
ReceiverStartEpoch uint64
ShipperConfigEpoch uint64
ShipperConfigReplicas []ReplicaAssignment
CatchUpTargetLSN uint64
RebuildTargetLSN uint64
InvalidationIssued bool
InvalidationReason string
}
// VolumeState is the minimal V2-core-owned state for one volume on the bounded
// current path.
type VolumeState struct {
VolumeID string
Epoch uint64
Role VolumeRole
DesiredReplicas []ReplicaAssignment
Readiness ReadinessView
Boundary BoundaryView
Mode ModeView
Publication PublicationView
Recovery RecoveryView
degraded bool
degradeReason string
needsRebuild bool
rebuildReason string
commands commandState
}
func newVolumeState(volumeID string) *VolumeState {
return &VolumeState{
VolumeID: volumeID,
Role: RoleUnknown,
Mode: ModeView{
Name: ModeAllocatedOnly,
Authority: RuntimeAuthorityConstrainedV1,
},
Recovery: RecoveryView{
Phase: RecoveryIdle,
},
}
}
// Snapshot returns a detached copy of the state for external inspection/tests.
func (s *VolumeState) Snapshot() VolumeState {
out := *s
if s.DesiredReplicas != nil {
out.DesiredReplicas = append([]ReplicaAssignment(nil), s.DesiredReplicas...)
}
if s.commands.ShipperConfigReplicas != nil {
out.commands.ShipperConfigReplicas = append([]ReplicaAssignment(nil), s.commands.ShipperConfigReplicas...)
}
return out
}