2021-12-29 22:49:59 +08:00
|
|
|
// Licensed to the LF AI & Data foundation under one
|
|
|
|
// or more contributor license agreements. See the NOTICE file
|
|
|
|
// distributed with this work for additional information
|
|
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
|
|
// to you under the Apache License, Version 2.0 (the
|
|
|
|
// "License"); you may not use this file except in compliance
|
2021-04-19 15:15:33 +08:00
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
2021-12-29 22:49:59 +08:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2021-04-19 15:15:33 +08:00
|
|
|
//
|
2021-12-29 22:49:59 +08:00
|
|
|
// 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.
|
2021-04-19 15:15:33 +08:00
|
|
|
|
2021-02-24 17:12:06 +08:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
|
|
|
package tso
|
2021-01-26 09:38:40 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
|
|
|
|
2023-02-26 11:31:49 +08:00
|
|
|
"github.com/cockroachdb/errors"
|
2023-04-06 19:14:32 +08:00
|
|
|
"go.uber.org/zap"
|
2021-03-05 10:15:27 +08:00
|
|
|
|
2024-06-25 21:18:15 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/kv"
|
2023-09-21 09:45:27 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/log"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/tsoutil"
|
2023-04-06 19:14:32 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
2021-01-26 09:38:40 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// Allocator is a Timestamp Oracle allocator.
|
2023-02-26 11:31:49 +08:00
|
|
|
//
|
|
|
|
//go:generate mockery --name=Allocator --outpkg=mocktso
|
2021-01-26 09:38:40 +08:00
|
|
|
type Allocator interface {
|
|
|
|
// Initialize is used to initialize a TSO allocator.
|
|
|
|
// It will synchronize TSO with etcd and initialize the
|
|
|
|
// memory for later allocation work.
|
|
|
|
Initialize() error
|
|
|
|
// UpdateTSO is used to update the TSO in memory and the time window in etcd.
|
|
|
|
UpdateTSO() error
|
|
|
|
// SetTSO sets the physical part with given tso. It's mainly used for BR restore
|
|
|
|
// and can not forcibly set the TSO smaller than now.
|
|
|
|
SetTSO(tso uint64) error
|
|
|
|
// GenerateTSO is used to generate a given number of TSOs.
|
|
|
|
// Make sure you have initialized the TSO allocator before calling.
|
|
|
|
GenerateTSO(count uint32) (uint64, error)
|
|
|
|
// Reset is used to reset the TSO allocator.
|
|
|
|
Reset()
|
2022-03-02 21:11:57 +08:00
|
|
|
|
|
|
|
GetLastSavedTime() time.Time
|
2021-01-26 09:38:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// GlobalTSOAllocator is the global single point TSO allocator.
|
|
|
|
type GlobalTSOAllocator struct {
|
2021-02-26 13:05:52 +08:00
|
|
|
tso *timestampOracle
|
|
|
|
LimitMaxLogic bool
|
2021-01-26 09:38:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewGlobalTSOAllocator creates a new global TSO allocator.
|
2021-04-12 18:09:28 +08:00
|
|
|
func NewGlobalTSOAllocator(key string, txnKV kv.TxnKV) *GlobalTSOAllocator {
|
2021-01-26 09:38:40 +08:00
|
|
|
return &GlobalTSOAllocator{
|
|
|
|
tso: ×tampOracle{
|
2021-04-12 18:09:28 +08:00
|
|
|
txnKV: txnKV,
|
2021-04-12 14:11:06 +08:00
|
|
|
saveInterval: 3 * time.Second,
|
2021-01-26 09:38:40 +08:00
|
|
|
maxResetTSGap: func() time.Duration { return 3 * time.Second },
|
|
|
|
key: key,
|
|
|
|
},
|
2021-02-26 13:05:52 +08:00
|
|
|
LimitMaxLogic: true,
|
2021-01-26 09:38:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize will initialize the created global TSO allocator.
|
|
|
|
func (gta *GlobalTSOAllocator) Initialize() error {
|
|
|
|
return gta.tso.InitTimestamp()
|
|
|
|
}
|
|
|
|
|
2021-10-06 07:12:23 +08:00
|
|
|
// SetLimitMaxLogic is to enable or disable the maximum limit on the logical part of the hybrid timestamp.
|
2021-10-02 19:49:56 +08:00
|
|
|
// When enabled, if the logical part of the hybrid timestamp exceeds the maximum limit,
|
|
|
|
// GlobalTSOAllocator will sleep for a period and try to allocate the timestamp again.
|
2021-04-12 14:11:06 +08:00
|
|
|
func (gta *GlobalTSOAllocator) SetLimitMaxLogic(flag bool) {
|
|
|
|
gta.LimitMaxLogic = flag
|
2021-02-26 13:05:52 +08:00
|
|
|
}
|
|
|
|
|
2021-01-26 09:38:40 +08:00
|
|
|
// UpdateTSO is used to update the TSO in memory and the time window in etcd.
|
|
|
|
func (gta *GlobalTSOAllocator) UpdateTSO() error {
|
|
|
|
return gta.tso.UpdateTimestamp()
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetTSO sets the physical part with given tso.
|
|
|
|
func (gta *GlobalTSOAllocator) SetTSO(tso uint64) error {
|
|
|
|
return gta.tso.ResetUserTimestamp(tso)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GenerateTSO is used to generate a given number of TSOs.
|
|
|
|
// Make sure you have initialized the TSO allocator before calling.
|
|
|
|
func (gta *GlobalTSOAllocator) GenerateTSO(count uint32) (uint64, error) {
|
|
|
|
var physical, logical int64
|
|
|
|
if count == 0 {
|
|
|
|
return 0, errors.New("tso count should be positive")
|
|
|
|
}
|
|
|
|
|
|
|
|
maxRetryCount := 10
|
|
|
|
|
|
|
|
for i := 0; i < maxRetryCount; i++ {
|
|
|
|
current := (*atomicObject)(atomic.LoadPointer(>a.tso.TSO))
|
|
|
|
if current == nil || current.physical.Equal(typeutil.ZeroTime) {
|
|
|
|
// If it's leader, maybe SyncTimestamp hasn't completed yet
|
2023-03-13 18:01:53 +08:00
|
|
|
log.Info("sync hasn't completed yet, wait for a while")
|
2021-01-26 09:38:40 +08:00
|
|
|
time.Sleep(200 * time.Millisecond)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2023-03-13 18:01:53 +08:00
|
|
|
physical = current.physical.UnixMilli()
|
2021-01-26 09:38:40 +08:00
|
|
|
logical = atomic.AddInt64(¤t.logical, int64(count))
|
2021-02-26 13:05:52 +08:00
|
|
|
if logical >= maxLogical && gta.LimitMaxLogic {
|
2023-03-13 18:01:53 +08:00
|
|
|
log.Info("logical part outside of max logical interval, please check ntp time",
|
2021-01-26 09:38:40 +08:00
|
|
|
zap.Int("retry-count", i))
|
|
|
|
time.Sleep(UpdateTimestampStep)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return tsoutil.ComposeTS(physical, logical), nil
|
|
|
|
}
|
|
|
|
return 0, errors.New("can not get timestamp")
|
|
|
|
}
|
|
|
|
|
2021-10-02 19:49:56 +08:00
|
|
|
// Alloc allocates a batch of timestamps. What is returned is the starting timestamp.
|
2021-01-26 09:38:40 +08:00
|
|
|
func (gta *GlobalTSOAllocator) Alloc(count uint32) (typeutil.Timestamp, error) {
|
2023-09-21 09:45:27 +08:00
|
|
|
// return gta.tso.SyncTimestamp()
|
2021-01-26 09:38:40 +08:00
|
|
|
start, err := gta.GenerateTSO(count)
|
|
|
|
if err != nil {
|
|
|
|
return typeutil.ZeroTimestamp, err
|
|
|
|
}
|
|
|
|
//ret := make([]typeutil.Timestamp, count)
|
|
|
|
//for i:=uint32(0); i < count; i++{
|
|
|
|
// ret[i] = start + uint64(i)
|
|
|
|
//}
|
|
|
|
return start, err
|
|
|
|
}
|
|
|
|
|
2021-10-02 19:49:56 +08:00
|
|
|
// AllocOne only allocates one timestamp.
|
2021-01-26 09:38:40 +08:00
|
|
|
func (gta *GlobalTSOAllocator) AllocOne() (typeutil.Timestamp, error) {
|
|
|
|
return gta.GenerateTSO(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset is used to reset the TSO allocator.
|
|
|
|
func (gta *GlobalTSOAllocator) Reset() {
|
|
|
|
gta.tso.ResetTimestamp()
|
|
|
|
}
|
2022-03-02 21:11:57 +08:00
|
|
|
|
|
|
|
// GetLastSavedTime get the last saved time for tso.
|
|
|
|
func (gta *GlobalTSOAllocator) GetLastSavedTime() time.Time {
|
|
|
|
ts := gta.tso.lastSavedTime.Load()
|
|
|
|
return ts.(time.Time)
|
|
|
|
}
|