2021-10-29 05:15:04 +00: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 03:13:52 +00:00
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
2021-10-29 05:15:04 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2021-04-19 03:13:52 +00:00
|
|
|
//
|
2021-10-29 05:15:04 +00: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 03:13:52 +00:00
|
|
|
|
2020-11-16 13:10:43 +00:00
|
|
|
package kv
|
2020-09-07 13:07:36 +00:00
|
|
|
|
2021-05-18 06:18:02 +00:00
|
|
|
import (
|
2024-12-05 07:16:41 +00:00
|
|
|
"context"
|
|
|
|
|
2021-08-24 01:45:51 +00:00
|
|
|
clientv3 "go.etcd.io/etcd/client/v3"
|
2023-01-04 13:37:35 +00:00
|
|
|
|
2024-06-25 13:18:15 +00:00
|
|
|
"github.com/milvus-io/milvus/pkg/kv/predicates"
|
2023-04-06 11:14:32 +00:00
|
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
2021-05-18 06:18:02 +00:00
|
|
|
)
|
|
|
|
|
2022-03-07 10:01:58 +00:00
|
|
|
// CompareFailedError is a helper type for checking MetaKv CompareAndSwap series func error type
|
|
|
|
type CompareFailedError struct {
|
|
|
|
internalError error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error implements error interface
|
|
|
|
func (e *CompareFailedError) Error() string {
|
|
|
|
return e.internalError.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewCompareFailedError wraps error into NewCompareFailedError
|
|
|
|
func NewCompareFailedError(err error) error {
|
|
|
|
return &CompareFailedError{internalError: err}
|
|
|
|
}
|
|
|
|
|
2022-02-25 06:47:52 +00:00
|
|
|
// BaseKV contains base operations of kv. Include save, load and remove.
|
2021-04-12 10:09:28 +00:00
|
|
|
type BaseKV interface {
|
2024-12-05 07:16:41 +00:00
|
|
|
Load(ctx context.Context, key string) (string, error)
|
|
|
|
MultiLoad(ctx context.Context, keys []string) ([]string, error)
|
|
|
|
LoadWithPrefix(ctx context.Context, key string) ([]string, []string, error)
|
|
|
|
Save(ctx context.Context, key, value string) error
|
|
|
|
MultiSave(ctx context.Context, kvs map[string]string) error
|
|
|
|
Remove(ctx context.Context, key string) error
|
|
|
|
MultiRemove(ctx context.Context, keys []string) error
|
|
|
|
RemoveWithPrefix(ctx context.Context, key string) error
|
|
|
|
Has(ctx context.Context, key string) (bool, error)
|
|
|
|
HasPrefix(ctx context.Context, prefix string) (bool, error)
|
2020-12-07 06:37:42 +00:00
|
|
|
Close()
|
2020-12-05 09:39:58 +00:00
|
|
|
}
|
2020-12-07 07:22:20 +00:00
|
|
|
|
2021-09-29 10:39:59 +00:00
|
|
|
// TxnKV contains extra txn operations of kv. The extra operations is transactional.
|
2023-02-26 03:31:49 +00:00
|
|
|
//
|
|
|
|
//go:generate mockery --name=TxnKV --with-expecter
|
2021-04-12 10:09:28 +00:00
|
|
|
type TxnKV interface {
|
|
|
|
BaseKV
|
2024-12-05 07:16:41 +00:00
|
|
|
MultiSaveAndRemove(ctx context.Context, saves map[string]string, removals []string, preds ...predicates.Predicate) error
|
|
|
|
MultiSaveAndRemoveWithPrefix(ctx context.Context, saves map[string]string, removals []string, preds ...predicates.Predicate) error
|
2020-12-07 07:22:20 +00:00
|
|
|
}
|
2021-05-18 06:18:02 +00:00
|
|
|
|
2022-02-22 05:15:51 +00:00
|
|
|
// MetaKv is TxnKV for metadata. It should save data with lease.
|
2023-02-26 03:31:49 +00:00
|
|
|
//
|
|
|
|
//go:generate mockery --name=MetaKv --with-expecter
|
2021-08-24 01:45:51 +00:00
|
|
|
type MetaKv interface {
|
|
|
|
TxnKV
|
|
|
|
GetPath(key string) string
|
2024-12-05 07:16:41 +00:00
|
|
|
LoadWithPrefix(ctx context.Context, key string) ([]string, []string, error)
|
|
|
|
CompareVersionAndSwap(ctx context.Context, key string, version int64, target string) (bool, error)
|
|
|
|
WalkWithPrefix(ctx context.Context, prefix string, paginationSize int, fn func([]byte, []byte) error) error
|
2023-06-26 01:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WatchKV is watchable MetaKv. As of today(2023/06/24), it's coupled with etcd.
|
|
|
|
//
|
|
|
|
//go:generate mockery --name=WatchKV --with-expecter
|
|
|
|
type WatchKV interface {
|
|
|
|
MetaKv
|
2024-12-05 07:16:41 +00:00
|
|
|
Watch(ctx context.Context, key string) clientv3.WatchChan
|
|
|
|
WatchWithPrefix(ctx context.Context, key string) clientv3.WatchChan
|
|
|
|
WatchWithRevision(ctx context.Context, key string, revision int64) clientv3.WatchChan
|
2021-08-24 01:45:51 +00:00
|
|
|
}
|
|
|
|
|
2021-09-29 10:39:59 +00:00
|
|
|
// SnapShotKV is TxnKV for snapshot data. It must save timestamp.
|
2023-02-26 03:31:49 +00:00
|
|
|
//
|
|
|
|
//go:generate mockery --name=SnapShotKV --with-expecter
|
2021-05-18 06:18:02 +00:00
|
|
|
type SnapShotKV interface {
|
2024-12-05 07:16:41 +00:00
|
|
|
Save(ctx context.Context, key string, value string, ts typeutil.Timestamp) error
|
|
|
|
Load(ctx context.Context, key string, ts typeutil.Timestamp) (string, error)
|
|
|
|
MultiSave(ctx context.Context, kvs map[string]string, ts typeutil.Timestamp) error
|
|
|
|
LoadWithPrefix(ctx context.Context, key string, ts typeutil.Timestamp) ([]string, []string, error)
|
|
|
|
MultiSaveAndRemove(ctx context.Context, saves map[string]string, removals []string, ts typeutil.Timestamp) error
|
|
|
|
MultiSaveAndRemoveWithPrefix(ctx context.Context, saves map[string]string, removals []string, ts typeutil.Timestamp) error
|
2021-05-18 06:18:02 +00:00
|
|
|
}
|