mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
99 lines
2.7 KiB
Go
99 lines
2.7 KiB
Go
package writebuffer
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/milvus-io/milvus/internal/allocator"
|
|
"github.com/milvus-io/milvus/internal/flushcommon/metacache"
|
|
"github.com/milvus-io/milvus/internal/flushcommon/syncmgr"
|
|
"github.com/milvus-io/milvus/pkg/util/paramtable"
|
|
)
|
|
|
|
const (
|
|
// DeletePolicyBFPKOracle is the const config value for using bf pk oracle as delete policy
|
|
DeletePolicyBFPkOracle = `bloom_filter_pkoracle`
|
|
|
|
// DeletePolicyL0Delta is the const config value for using L0 delta as deleta policy.
|
|
DeletePolicyL0Delta = `l0_delta`
|
|
)
|
|
|
|
type WriteBufferOption func(opt *writeBufferOption)
|
|
|
|
type TaskObserverCallback func(t syncmgr.Task, err error)
|
|
|
|
type writeBufferOption struct {
|
|
deletePolicy string
|
|
idAllocator allocator.Interface
|
|
syncPolicies []SyncPolicy
|
|
|
|
pkStatsFactory metacache.PkStatsFactory
|
|
metaWriter syncmgr.MetaWriter
|
|
errorHandler func(error)
|
|
taskObserverCallback TaskObserverCallback
|
|
}
|
|
|
|
func defaultWBOption(metacache metacache.MetaCache) *writeBufferOption {
|
|
deletePolicy := DeletePolicyBFPkOracle
|
|
if paramtable.Get().DataCoordCfg.EnableLevelZeroSegment.GetAsBool() {
|
|
deletePolicy = DeletePolicyL0Delta
|
|
}
|
|
|
|
return &writeBufferOption{
|
|
deletePolicy: deletePolicy,
|
|
syncPolicies: []SyncPolicy{
|
|
GetFullBufferPolicy(),
|
|
GetSyncStaleBufferPolicy(paramtable.Get().DataNodeCfg.SyncPeriod.GetAsDuration(time.Second)),
|
|
GetSealedSegmentsPolicy(metacache),
|
|
GetDroppedSegmentPolicy(metacache),
|
|
},
|
|
// default error handler, just panicking
|
|
errorHandler: func(err error) {
|
|
panic(err)
|
|
},
|
|
}
|
|
}
|
|
|
|
func WithDeletePolicy(policy string) WriteBufferOption {
|
|
return func(opt *writeBufferOption) {
|
|
opt.deletePolicy = policy
|
|
}
|
|
}
|
|
|
|
func WithIDAllocator(allocator allocator.Interface) WriteBufferOption {
|
|
return func(opt *writeBufferOption) {
|
|
opt.idAllocator = allocator
|
|
}
|
|
}
|
|
|
|
func WithPKStatsFactory(factory metacache.PkStatsFactory) WriteBufferOption {
|
|
return func(opt *writeBufferOption) {
|
|
opt.pkStatsFactory = factory
|
|
}
|
|
}
|
|
|
|
func WithMetaWriter(writer syncmgr.MetaWriter) WriteBufferOption {
|
|
return func(opt *writeBufferOption) {
|
|
opt.metaWriter = writer
|
|
}
|
|
}
|
|
|
|
func WithSyncPolicy(policy SyncPolicy) WriteBufferOption {
|
|
return func(opt *writeBufferOption) {
|
|
opt.syncPolicies = append(opt.syncPolicies, policy)
|
|
}
|
|
}
|
|
|
|
func WithErrorHandler(handler func(err error)) WriteBufferOption {
|
|
return func(opt *writeBufferOption) {
|
|
opt.errorHandler = handler
|
|
}
|
|
}
|
|
|
|
// WithTaskObserverCallback sets the callback function for observing task status.
|
|
// The callback will be called when every task is executed, should be concurrent safe to be called.
|
|
func WithTaskObserverCallback(callback TaskObserverCallback) WriteBufferOption {
|
|
return func(opt *writeBufferOption) {
|
|
opt.taskObserverCallback = callback
|
|
}
|
|
}
|