mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
related: https://github.com/milvus-io/milvus/issues/39173 Signed-off-by: shaoting-huang <shaoting.huang@zilliz.com>
99 lines
2.7 KiB
Go
99 lines
2.7 KiB
Go
// Copyright 2023 Zilliz
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package lock
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
"go.uber.org/zap"
|
|
|
|
"github.com/milvus-io/milvus/internal/storagev2/common/constant"
|
|
"github.com/milvus-io/milvus/internal/storagev2/common/log"
|
|
)
|
|
|
|
type LockManager interface {
|
|
// Acquire the lock, wait until the lock is available, return the version to be modified or use the newest version
|
|
Acquire() (version int64, useLatestVersion bool, err error)
|
|
// Release the lock, accepts the new allocated manifest version and success state of operations between Acquire and Release as parameters
|
|
Release(version int64, success bool) error
|
|
}
|
|
|
|
type EmptyLockManager struct{}
|
|
|
|
func (h *EmptyLockManager) Acquire() (version int64, useLatestVersion bool, err error) {
|
|
return constant.LatestManifestVersion, true, nil
|
|
}
|
|
|
|
func (h *EmptyLockManager) Release(_ int64, _ bool) error {
|
|
return nil
|
|
}
|
|
|
|
type MemoryLockManager struct {
|
|
mu sync.Mutex
|
|
locks map[int64]bool
|
|
nextVersion int64
|
|
}
|
|
|
|
func NewMemoryLockManager() *MemoryLockManager {
|
|
return &MemoryLockManager{
|
|
mu: sync.Mutex{},
|
|
locks: make(map[int64]bool),
|
|
nextVersion: 0,
|
|
}
|
|
}
|
|
|
|
func (m *MemoryLockManager) Acquire() (version int64, useLatestVersion bool, err error) {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
|
|
version = m.nextVersion
|
|
|
|
if m.locks[version] {
|
|
log.Warn("lock is already acquired", zap.Int64("version", version))
|
|
return version, false, errors.New("lock is already acquired")
|
|
}
|
|
|
|
if version == constant.LatestManifestVersion {
|
|
useLatestVersion = true
|
|
} else {
|
|
useLatestVersion = false
|
|
}
|
|
m.locks[version] = true
|
|
log.Info("acquire lock", zap.Int64("version", version), zap.Bool("useLatestVersion", useLatestVersion))
|
|
|
|
return version, useLatestVersion, nil
|
|
}
|
|
|
|
func (m *MemoryLockManager) Release(version int64, success bool) error {
|
|
m.mu.Lock()
|
|
defer m.mu.Unlock()
|
|
|
|
realVersion := int64(0)
|
|
realVersion = version - 1
|
|
if !m.locks[realVersion] {
|
|
return errors.New("lock is already released or does not exist")
|
|
}
|
|
m.locks[realVersion] = false
|
|
log.Info("release lock", zap.Int64("version", realVersion), zap.Bool("success", success))
|
|
if success {
|
|
m.nextVersion = version
|
|
} else {
|
|
m.nextVersion = constant.LatestManifestVersion
|
|
}
|
|
|
|
return nil
|
|
}
|