2020-11-20 17:10:24 +08:00
|
|
|
package master
|
2020-09-21 15:10:54 +08:00
|
|
|
|
|
|
|
import (
|
2020-11-16 21:10:43 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/kv"
|
2020-09-21 15:10:54 +08:00
|
|
|
)
|
|
|
|
|
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-11-20 17:10:24 +08:00
|
|
|
allocator Allocator
|
2020-11-07 16:18:23 +08:00
|
|
|
}
|
|
|
|
|
2020-12-07 14:37:42 +08:00
|
|
|
func NewGlobalIDAllocator(key string, base kv.Base) *GlobalIDAllocator {
|
2020-11-12 12:04:12 +08:00
|
|
|
return &GlobalIDAllocator{
|
2020-11-20 17:10:24 +08:00
|
|
|
allocator: 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-14 15:26:14 +08:00
|
|
|
func (gia *GlobalIDAllocator) UpdateID() error {
|
|
|
|
return gia.allocator.UpdateTSO()
|
|
|
|
}
|