2020-10-30 16:27:58 +08:00
|
|
|
// Copyright 2020 TiKV Project Authors.
|
|
|
|
//
|
|
|
|
// 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,
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
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-09-21 15:10:54 +08:00
|
|
|
)
|
|
|
|
|
2020-10-30 16:27:58 +08:00
|
|
|
// GlobalTSOAllocator is the global single point TSO allocator.
|
|
|
|
type GlobalIdAllocator struct {
|
|
|
|
allocator tso.Allocator
|
2020-09-21 15:10:54 +08:00
|
|
|
}
|
|
|
|
|
2020-11-03 14:53:36 +08:00
|
|
|
//func getID
|
|
|
|
|
|
|
|
var allocator GlobalIdAllocator = GlobalIdAllocator{
|
|
|
|
allocator: tso.NewGlobalTSOAllocator("idTimestamp"),
|
2020-09-21 15:10:54 +08:00
|
|
|
}
|
|
|
|
|
2020-10-30 16:27:58 +08:00
|
|
|
// Initialize will initialize the created global TSO allocator.
|
|
|
|
func (gia *GlobalIdAllocator) Initialize() error {
|
|
|
|
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-03 14:53:36 +08:00
|
|
|
func (gia *GlobalIdAllocator) Alloc(count uint32) (int64, int64, error) {
|
|
|
|
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-10-30 16:27:58 +08:00
|
|
|
idStart := int64(timestamp)
|
|
|
|
idEnd := idStart + int64(count)
|
|
|
|
return idStart, idEnd, nil
|
2020-09-21 15:10:54 +08:00
|
|
|
}
|
|
|
|
|
2020-11-03 14:53:36 +08:00
|
|
|
func (gia *GlobalIdAllocator) AllocOne() (int64, error) {
|
|
|
|
timestamp, err := gia.allocator.GenerateTSO(1)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
idStart := int64(timestamp)
|
|
|
|
return idStart, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func AllocOne() (int64, error) {
|
|
|
|
return allocator.AllocOne()
|
|
|
|
}
|
|
|
|
|
|
|
|
func Alloc(count uint32) (int64, int64, error) {
|
|
|
|
return allocator.Alloc(count)
|
|
|
|
}
|