2020-09-21 15:10:54 +08:00
|
|
|
package id
|
|
|
|
|
|
|
|
import (
|
2020-10-30 16:27:58 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/master/tso"
|
2020-11-14 11:24:49 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/util/kvutil"
|
2020-11-12 11:18:23 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/util/tsoutil"
|
2020-11-04 17:58:43 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/util/typeutil"
|
2020-09-21 15:10:54 +08:00
|
|
|
)
|
|
|
|
|
2020-11-04 17:58:43 +08:00
|
|
|
type UniqueID = typeutil.UniqueID
|
|
|
|
|
2020-10-30 16:27:58 +08:00
|
|
|
// GlobalTSOAllocator is the global single point TSO allocator.
|
2020-11-12 12:04:12 +08:00
|
|
|
type GlobalIDAllocator struct {
|
2020-10-30 16:27:58 +08:00
|
|
|
allocator tso.Allocator
|
2020-09-21 15:10:54 +08:00
|
|
|
}
|
|
|
|
|
2020-11-12 12:04:12 +08:00
|
|
|
var allocator *GlobalIDAllocator
|
2020-11-07 16:18:23 +08:00
|
|
|
|
2020-11-12 11:18:23 +08:00
|
|
|
func Init() {
|
2020-11-12 12:04:12 +08:00
|
|
|
InitGlobalIDAllocator("idTimestamp", tsoutil.NewTSOKVBase("gid"))
|
2020-11-12 11:18:23 +08:00
|
|
|
}
|
|
|
|
|
2020-11-14 11:24:49 +08:00
|
|
|
func InitGlobalIDAllocator(key string, base kvutil.Base) {
|
2020-11-12 12:04:12 +08:00
|
|
|
allocator = NewGlobalIDAllocator(key, base)
|
2020-11-12 11:18:23 +08:00
|
|
|
allocator.Initialize()
|
2020-11-07 16:18:23 +08:00
|
|
|
}
|
|
|
|
|
2020-11-14 11:24:49 +08:00
|
|
|
func NewGlobalIDAllocator(key string, base kvutil.Base) *GlobalIDAllocator {
|
2020-11-12 12:04:12 +08:00
|
|
|
return &GlobalIDAllocator{
|
2020-11-12 11:18:23 +08:00
|
|
|
allocator: tso.NewGlobalTSOAllocator(key, base),
|
2020-11-07 16:18:23 +08:00
|
|
|
}
|
2020-09-21 15:10:54 +08:00
|
|
|
}
|
|
|
|
|
2020-10-30 16:27:58 +08:00
|
|
|
// Initialize will initialize the created global TSO allocator.
|
2020-11-12 12:04:12 +08:00
|
|
|
func (gia *GlobalIDAllocator) Initialize() error {
|
2020-10-30 16:27:58 +08:00
|
|
|
return gia.allocator.Initialize()
|
2020-09-21 15:10:54 +08:00
|
|
|
}
|
|
|
|
|
2020-10-30 16:27:58 +08:00
|
|
|
// GenerateTSO is used to generate a given number of TSOs.
|
|
|
|
// Make sure you have initialized the TSO allocator before calling.
|
2020-11-12 12:04:12 +08:00
|
|
|
func (gia *GlobalIDAllocator) Alloc(count uint32) (UniqueID, UniqueID, error) {
|
2020-11-03 14:53:36 +08:00
|
|
|
timestamp, err := gia.allocator.GenerateTSO(count)
|
|
|
|
if err != nil {
|
2020-10-30 16:27:58 +08:00
|
|
|
return 0, 0, err
|
2020-09-21 15:10:54 +08:00
|
|
|
}
|
2020-11-04 17:58:43 +08:00
|
|
|
idStart := UniqueID(timestamp)
|
2020-10-30 16:27:58 +08:00
|
|
|
idEnd := idStart + int64(count)
|
|
|
|
return idStart, idEnd, nil
|
2020-09-21 15:10:54 +08:00
|
|
|
}
|
|
|
|
|
2020-11-12 12:04:12 +08:00
|
|
|
func (gia *GlobalIDAllocator) AllocOne() (UniqueID, error) {
|
2020-11-03 14:53:36 +08:00
|
|
|
timestamp, err := gia.allocator.GenerateTSO(1)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2020-11-04 17:58:43 +08:00
|
|
|
idStart := UniqueID(timestamp)
|
2020-11-03 14:53:36 +08:00
|
|
|
return idStart, nil
|
|
|
|
}
|
|
|
|
|
2020-11-04 17:58:43 +08:00
|
|
|
func AllocOne() (UniqueID, error) {
|
2020-11-03 14:53:36 +08:00
|
|
|
return allocator.AllocOne()
|
|
|
|
}
|
|
|
|
|
2020-11-04 17:58:43 +08:00
|
|
|
func Alloc(count uint32) (UniqueID, UniqueID, error) {
|
2020-11-03 14:53:36 +08:00
|
|
|
return allocator.Alloc(count)
|
|
|
|
}
|