Skip to content

Commit

Permalink
commit bbolt transaction if there is any pending deleting operations
Browse files Browse the repository at this point in the history
Signed-off-by: Siyuan Zhang <sizhang@google.com>
  • Loading branch information
siyuanfoundation committed Jan 5, 2024
1 parent 0561562 commit 656fae1
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions server/storage/backend/batch_tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ type batchTx struct {
tx *bolt.Tx
backend *backend

pending int
pending int
pendingDeleteOperations int
}

// Lock is supposed to be called only by the unit test.
Expand Down Expand Up @@ -133,6 +134,7 @@ func (t *batchTx) UnsafeDeleteBucket(bucket Bucket) {
)
}
t.pending++
t.pendingDeleteOperations++
}

// UnsafePut must be called holding the lock on the tx.
Expand Down Expand Up @@ -223,6 +225,7 @@ func (t *batchTx) UnsafeDelete(bucketType Bucket, key []byte) {
)
}
t.pending++
t.pendingDeleteOperations++
}

// UnsafeForEach must be called holding the lock on the tx.
Expand Down Expand Up @@ -277,6 +280,7 @@ func (t *batchTx) commit(stop bool) {
atomic.AddInt64(&t.backend.commits, 1)

t.pending = 0
t.pendingDeleteOperations = 0
if err != nil {
t.backend.lg.Fatal("failed to commit tx", zap.Error(err))
}
Expand Down Expand Up @@ -310,7 +314,14 @@ func (t *batchTxBuffered) Unlock() {
t.buf.writeback(&t.backend.readTx.buf)
// gofail: var afterWritebackBuf struct{}
t.backend.readTx.Unlock()
if t.pending >= t.backend.batchLimit {
// We need to commit the transaction if
// 1. t.pending >= t.backend.batchLimit for performance,
// because We don't want buffer to grow too big as it has worse complexity.
// 2. there is any pending deleting for correctness,
// because buffer doesn't keep track of deletions.
// Please also refer to
// https://github.com/etcd-io/etcd/pull/17119#issuecomment-1857547158
if t.pending >= t.backend.batchLimit || t.pendingDeleteOperations > 0 {
t.commit(false)
}
}
Expand Down

0 comments on commit 656fae1

Please sign in to comment.