mirror of https://github.com/milvus-io/milvus.git
75 lines
1.9 KiB
Go
75 lines
1.9 KiB
Go
package id
|
|
|
|
import (
|
|
"github.com/zilliztech/milvus-distributed/internal/kv"
|
|
"github.com/zilliztech/milvus-distributed/internal/master/tso"
|
|
"github.com/zilliztech/milvus-distributed/internal/util/tsoutil"
|
|
"github.com/zilliztech/milvus-distributed/internal/util/typeutil"
|
|
)
|
|
|
|
type UniqueID = typeutil.UniqueID
|
|
|
|
// GlobalTSOAllocator is the global single point TSO allocator.
|
|
type GlobalIDAllocator struct {
|
|
allocator tso.Allocator
|
|
}
|
|
|
|
var allocator *GlobalIDAllocator
|
|
|
|
func Init(etcdAddr []string, rootPath string) {
|
|
InitGlobalIDAllocator("idTimestamp", tsoutil.NewTSOKVBase(etcdAddr, rootPath, "gid"))
|
|
}
|
|
|
|
func InitGlobalIDAllocator(key string, base kv.Base) {
|
|
allocator = NewGlobalIDAllocator(key, base)
|
|
allocator.Initialize()
|
|
}
|
|
|
|
func NewGlobalIDAllocator(key string, base kv.Base) *GlobalIDAllocator {
|
|
return &GlobalIDAllocator{
|
|
allocator: tso.NewGlobalTSOAllocator(key, base),
|
|
}
|
|
}
|
|
|
|
// Initialize will initialize the created global TSO allocator.
|
|
func (gia *GlobalIDAllocator) Initialize() error {
|
|
return gia.allocator.Initialize()
|
|
}
|
|
|
|
// GenerateTSO is used to generate a given number of TSOs.
|
|
// Make sure you have initialized the TSO allocator before calling.
|
|
func (gia *GlobalIDAllocator) Alloc(count uint32) (UniqueID, UniqueID, error) {
|
|
timestamp, err := gia.allocator.GenerateTSO(count)
|
|
if err != nil {
|
|
return 0, 0, err
|
|
}
|
|
idStart := UniqueID(timestamp)
|
|
idEnd := idStart + int64(count)
|
|
return idStart, idEnd, nil
|
|
}
|
|
|
|
func (gia *GlobalIDAllocator) AllocOne() (UniqueID, error) {
|
|
timestamp, err := gia.allocator.GenerateTSO(1)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
idStart := UniqueID(timestamp)
|
|
return idStart, nil
|
|
}
|
|
|
|
func (gia *GlobalIDAllocator) UpdateID() error {
|
|
return gia.allocator.UpdateTSO()
|
|
}
|
|
|
|
func AllocOne() (UniqueID, error) {
|
|
return allocator.AllocOne()
|
|
}
|
|
|
|
func Alloc(count uint32) (UniqueID, UniqueID, error) {
|
|
return allocator.Alloc(count)
|
|
}
|
|
|
|
func UpdateID() error {
|
|
return allocator.UpdateID()
|
|
}
|