Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release-24.1: kvserver: reset some fields of replicaAppBatch #143196

Merged
merged 1 commit into from
Mar 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pkg/kv/kvserver/replica_application_state_machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ func (sm *replicaStateMachine) NewEphemeralBatch() apply.EphemeralBatch {
func (sm *replicaStateMachine) NewBatch() apply.Batch {
r := sm.r
b := &sm.batch
// TODO(pav-kv): replicaAppBatch initialization below is bug-prone, we need to
// not forget resetting the fields that are local to one batch. Find a way to
// make it safer.
b.r = r
b.applyStats = &sm.applyStats
b.batch = r.store.TODOEngine().NewBatch()
Expand All @@ -148,6 +151,9 @@ func (sm *replicaStateMachine) NewBatch() apply.Batch {
*b.state.Stats = *r.mu.state.Stats
b.closedTimestampSetter = r.mu.closedTimestampSetter
r.mu.RUnlock()
b.changeRemovesReplica = false
b.changeTruncatesSideloadedFiles = false
// TODO(pav-kv): what about b.ab and b.followerStoreWriteBytes?
b.start = timeutil.Now()
return b
}
Expand Down