mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 01:28:27 +08:00
issue: #41435 After introducing the caching layer's lazy loading and eviction mechanisms, most parts of a segment won't be loaded into memory or disk immediately, even if the segment is marked as LOADED. This means physical resource usage may be very low. However, we still need to reserve enough resources for the segments marked as LOADED. Thus, the logic of resource usage estimation during segment loading, which based on physcial resource usage only for now, should be changed. To address this issue, we introduced the concept of logical resource usage in this patch. This can be thought of as the base reserved resource for each LOADED segment. A segment’s logical resource usage is derived from its final evictable and inevictable resource usage and calculated as follows: ``` SLR = SFPIER + evitable_cache_ratio * SFPER ``` it also equals to ``` SLR = (SFPIER + SFPER) - (1.0 - evitable_cache_ratio) * SFPER ``` `SLR`: The logical resource usage of a segment. `SFPIER`: The final physical inevictable resource usage of a segment. `SFPER`: The final physical evictable resource usage of a segment. `evitable_cache_ratio`: The ratio of a segment's evictable resources that can be cached locally. The higher the ratio, the more physical memory is reserved for evictable memory. When loading a segment, two types of resource usage are taken into account. First is the estimated maximum physical resource usage: ``` PPR = HPR + CPR + SMPR - SFPER ``` `PPR`: The predicted physical resource usage after the current segment is allowed to load. `HPR`: The physical resource usage obtained from hardware information. `CPR`: The total physical resource usage of segments that have been committed but not yet loaded. When one new segment is allow to load, `CPR' = CPR + (SMR - SER)`. When one of the committed segments is loaded, `CPR' = CPR - (SMR - SER)`. `SMPR`: The maximum physical resource usage of the current segment. `SFPER`: The final physical evictable resource usage of the current segment. Second is the estimated logical resource usage, this check is only valid when eviction is enabled: ``` PLR = LLR + CLR + SLR ``` `PLR`: The predicted logical resource usage after the current segment is allowed to load. `LLR`: The total logical resource usage of all loaded segments. When a new segment is loaded, `LLR` should be updated to `LLR' = LLR + SLR`. `CLR`: The total logical resource usage of segments that have been committed but not yet loaded. When one new segment is allow to load, `CLR' = CLR + SLR`. When one of the committed segments is loaded, `CLR' = CLR - SLR`. `SLR`: The logical resource usage of the current segment. Only when `PPR < PRL && PLR < PRL` (`PRL`: Physical resource limit of the querynode), the segment is allowed to be loaded. --------- Signed-off-by: Shawn Wang <shawn.wang@zilliz.com>
947 lines
28 KiB
Go
947 lines
28 KiB
Go
// Code generated by mockery v2.53.3. DO NOT EDIT.
|
|
|
|
package segments
|
|
|
|
import (
|
|
context "context"
|
|
|
|
commonpb "github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
|
|
mock "github.com/stretchr/testify/mock"
|
|
|
|
querypb "github.com/milvus-io/milvus/pkg/v2/proto/querypb"
|
|
)
|
|
|
|
// MockSegmentManager is an autogenerated mock type for the SegmentManager type
|
|
type MockSegmentManager struct {
|
|
mock.Mock
|
|
}
|
|
|
|
type MockSegmentManager_Expecter struct {
|
|
mock *mock.Mock
|
|
}
|
|
|
|
func (_m *MockSegmentManager) EXPECT() *MockSegmentManager_Expecter {
|
|
return &MockSegmentManager_Expecter{mock: &_m.Mock}
|
|
}
|
|
|
|
// AddLogicalResource provides a mock function with given fields: usage
|
|
func (_m *MockSegmentManager) AddLogicalResource(usage ResourceUsage) {
|
|
_m.Called(usage)
|
|
}
|
|
|
|
// MockSegmentManager_AddLogicalResource_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AddLogicalResource'
|
|
type MockSegmentManager_AddLogicalResource_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// AddLogicalResource is a helper method to define mock.On call
|
|
// - usage ResourceUsage
|
|
func (_e *MockSegmentManager_Expecter) AddLogicalResource(usage interface{}) *MockSegmentManager_AddLogicalResource_Call {
|
|
return &MockSegmentManager_AddLogicalResource_Call{Call: _e.mock.On("AddLogicalResource", usage)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_AddLogicalResource_Call) Run(run func(usage ResourceUsage)) *MockSegmentManager_AddLogicalResource_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(ResourceUsage))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_AddLogicalResource_Call) Return() *MockSegmentManager_AddLogicalResource_Call {
|
|
_c.Call.Return()
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_AddLogicalResource_Call) RunAndReturn(run func(ResourceUsage)) *MockSegmentManager_AddLogicalResource_Call {
|
|
_c.Run(run)
|
|
return _c
|
|
}
|
|
|
|
// Clear provides a mock function with given fields: ctx
|
|
func (_m *MockSegmentManager) Clear(ctx context.Context) {
|
|
_m.Called(ctx)
|
|
}
|
|
|
|
// MockSegmentManager_Clear_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Clear'
|
|
type MockSegmentManager_Clear_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Clear is a helper method to define mock.On call
|
|
// - ctx context.Context
|
|
func (_e *MockSegmentManager_Expecter) Clear(ctx interface{}) *MockSegmentManager_Clear_Call {
|
|
return &MockSegmentManager_Clear_Call{Call: _e.mock.On("Clear", ctx)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Clear_Call) Run(run func(ctx context.Context)) *MockSegmentManager_Clear_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(context.Context))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Clear_Call) Return() *MockSegmentManager_Clear_Call {
|
|
_c.Call.Return()
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Clear_Call) RunAndReturn(run func(context.Context)) *MockSegmentManager_Clear_Call {
|
|
_c.Run(run)
|
|
return _c
|
|
}
|
|
|
|
// Empty provides a mock function with no fields
|
|
func (_m *MockSegmentManager) Empty() bool {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Empty")
|
|
}
|
|
|
|
var r0 bool
|
|
if rf, ok := ret.Get(0).(func() bool); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MockSegmentManager_Empty_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Empty'
|
|
type MockSegmentManager_Empty_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Empty is a helper method to define mock.On call
|
|
func (_e *MockSegmentManager_Expecter) Empty() *MockSegmentManager_Empty_Call {
|
|
return &MockSegmentManager_Empty_Call{Call: _e.mock.On("Empty")}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Empty_Call) Run(run func()) *MockSegmentManager_Empty_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run()
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Empty_Call) Return(_a0 bool) *MockSegmentManager_Empty_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Empty_Call) RunAndReturn(run func() bool) *MockSegmentManager_Empty_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// Exist provides a mock function with given fields: segmentID, typ
|
|
func (_m *MockSegmentManager) Exist(segmentID int64, typ commonpb.SegmentState) bool {
|
|
ret := _m.Called(segmentID, typ)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Exist")
|
|
}
|
|
|
|
var r0 bool
|
|
if rf, ok := ret.Get(0).(func(int64, commonpb.SegmentState) bool); ok {
|
|
r0 = rf(segmentID, typ)
|
|
} else {
|
|
r0 = ret.Get(0).(bool)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MockSegmentManager_Exist_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Exist'
|
|
type MockSegmentManager_Exist_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Exist is a helper method to define mock.On call
|
|
// - segmentID int64
|
|
// - typ commonpb.SegmentState
|
|
func (_e *MockSegmentManager_Expecter) Exist(segmentID interface{}, typ interface{}) *MockSegmentManager_Exist_Call {
|
|
return &MockSegmentManager_Exist_Call{Call: _e.mock.On("Exist", segmentID, typ)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Exist_Call) Run(run func(segmentID int64, typ commonpb.SegmentState)) *MockSegmentManager_Exist_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(int64), args[1].(commonpb.SegmentState))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Exist_Call) Return(_a0 bool) *MockSegmentManager_Exist_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Exist_Call) RunAndReturn(run func(int64, commonpb.SegmentState) bool) *MockSegmentManager_Exist_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// Get provides a mock function with given fields: segmentID
|
|
func (_m *MockSegmentManager) Get(segmentID int64) Segment {
|
|
ret := _m.Called(segmentID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Get")
|
|
}
|
|
|
|
var r0 Segment
|
|
if rf, ok := ret.Get(0).(func(int64) Segment); ok {
|
|
r0 = rf(segmentID)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(Segment)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MockSegmentManager_Get_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Get'
|
|
type MockSegmentManager_Get_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Get is a helper method to define mock.On call
|
|
// - segmentID int64
|
|
func (_e *MockSegmentManager_Expecter) Get(segmentID interface{}) *MockSegmentManager_Get_Call {
|
|
return &MockSegmentManager_Get_Call{Call: _e.mock.On("Get", segmentID)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Get_Call) Run(run func(segmentID int64)) *MockSegmentManager_Get_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(int64))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Get_Call) Return(_a0 Segment) *MockSegmentManager_Get_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Get_Call) RunAndReturn(run func(int64) Segment) *MockSegmentManager_Get_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// GetAndPin provides a mock function with given fields: _a0, filters
|
|
func (_m *MockSegmentManager) GetAndPin(_a0 []int64, filters ...SegmentFilter) ([]Segment, error) {
|
|
_va := make([]interface{}, len(filters))
|
|
for _i := range filters {
|
|
_va[_i] = filters[_i]
|
|
}
|
|
var _ca []interface{}
|
|
_ca = append(_ca, _a0)
|
|
_ca = append(_ca, _va...)
|
|
ret := _m.Called(_ca...)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetAndPin")
|
|
}
|
|
|
|
var r0 []Segment
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func([]int64, ...SegmentFilter) ([]Segment, error)); ok {
|
|
return rf(_a0, filters...)
|
|
}
|
|
if rf, ok := ret.Get(0).(func([]int64, ...SegmentFilter) []Segment); ok {
|
|
r0 = rf(_a0, filters...)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]Segment)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func([]int64, ...SegmentFilter) error); ok {
|
|
r1 = rf(_a0, filters...)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// MockSegmentManager_GetAndPin_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAndPin'
|
|
type MockSegmentManager_GetAndPin_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// GetAndPin is a helper method to define mock.On call
|
|
// - _a0 []int64
|
|
// - filters ...SegmentFilter
|
|
func (_e *MockSegmentManager_Expecter) GetAndPin(_a0 interface{}, filters ...interface{}) *MockSegmentManager_GetAndPin_Call {
|
|
return &MockSegmentManager_GetAndPin_Call{Call: _e.mock.On("GetAndPin",
|
|
append([]interface{}{_a0}, filters...)...)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetAndPin_Call) Run(run func(_a0 []int64, filters ...SegmentFilter)) *MockSegmentManager_GetAndPin_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
variadicArgs := make([]SegmentFilter, len(args)-1)
|
|
for i, a := range args[1:] {
|
|
if a != nil {
|
|
variadicArgs[i] = a.(SegmentFilter)
|
|
}
|
|
}
|
|
run(args[0].([]int64), variadicArgs...)
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetAndPin_Call) Return(_a0 []Segment, _a1 error) *MockSegmentManager_GetAndPin_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetAndPin_Call) RunAndReturn(run func([]int64, ...SegmentFilter) ([]Segment, error)) *MockSegmentManager_GetAndPin_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// GetAndPinBy provides a mock function with given fields: filters
|
|
func (_m *MockSegmentManager) GetAndPinBy(filters ...SegmentFilter) ([]Segment, error) {
|
|
_va := make([]interface{}, len(filters))
|
|
for _i := range filters {
|
|
_va[_i] = filters[_i]
|
|
}
|
|
var _ca []interface{}
|
|
_ca = append(_ca, _va...)
|
|
ret := _m.Called(_ca...)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetAndPinBy")
|
|
}
|
|
|
|
var r0 []Segment
|
|
var r1 error
|
|
if rf, ok := ret.Get(0).(func(...SegmentFilter) ([]Segment, error)); ok {
|
|
return rf(filters...)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(...SegmentFilter) []Segment); ok {
|
|
r0 = rf(filters...)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]Segment)
|
|
}
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(...SegmentFilter) error); ok {
|
|
r1 = rf(filters...)
|
|
} else {
|
|
r1 = ret.Error(1)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// MockSegmentManager_GetAndPinBy_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetAndPinBy'
|
|
type MockSegmentManager_GetAndPinBy_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// GetAndPinBy is a helper method to define mock.On call
|
|
// - filters ...SegmentFilter
|
|
func (_e *MockSegmentManager_Expecter) GetAndPinBy(filters ...interface{}) *MockSegmentManager_GetAndPinBy_Call {
|
|
return &MockSegmentManager_GetAndPinBy_Call{Call: _e.mock.On("GetAndPinBy",
|
|
append([]interface{}{}, filters...)...)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetAndPinBy_Call) Run(run func(filters ...SegmentFilter)) *MockSegmentManager_GetAndPinBy_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
variadicArgs := make([]SegmentFilter, len(args)-0)
|
|
for i, a := range args[0:] {
|
|
if a != nil {
|
|
variadicArgs[i] = a.(SegmentFilter)
|
|
}
|
|
}
|
|
run(variadicArgs...)
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetAndPinBy_Call) Return(_a0 []Segment, _a1 error) *MockSegmentManager_GetAndPinBy_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetAndPinBy_Call) RunAndReturn(run func(...SegmentFilter) ([]Segment, error)) *MockSegmentManager_GetAndPinBy_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// GetBy provides a mock function with given fields: filters
|
|
func (_m *MockSegmentManager) GetBy(filters ...SegmentFilter) []Segment {
|
|
_va := make([]interface{}, len(filters))
|
|
for _i := range filters {
|
|
_va[_i] = filters[_i]
|
|
}
|
|
var _ca []interface{}
|
|
_ca = append(_ca, _va...)
|
|
ret := _m.Called(_ca...)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetBy")
|
|
}
|
|
|
|
var r0 []Segment
|
|
if rf, ok := ret.Get(0).(func(...SegmentFilter) []Segment); ok {
|
|
r0 = rf(filters...)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).([]Segment)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MockSegmentManager_GetBy_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetBy'
|
|
type MockSegmentManager_GetBy_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// GetBy is a helper method to define mock.On call
|
|
// - filters ...SegmentFilter
|
|
func (_e *MockSegmentManager_Expecter) GetBy(filters ...interface{}) *MockSegmentManager_GetBy_Call {
|
|
return &MockSegmentManager_GetBy_Call{Call: _e.mock.On("GetBy",
|
|
append([]interface{}{}, filters...)...)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetBy_Call) Run(run func(filters ...SegmentFilter)) *MockSegmentManager_GetBy_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
variadicArgs := make([]SegmentFilter, len(args)-0)
|
|
for i, a := range args[0:] {
|
|
if a != nil {
|
|
variadicArgs[i] = a.(SegmentFilter)
|
|
}
|
|
}
|
|
run(variadicArgs...)
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetBy_Call) Return(_a0 []Segment) *MockSegmentManager_GetBy_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetBy_Call) RunAndReturn(run func(...SegmentFilter) []Segment) *MockSegmentManager_GetBy_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// GetGrowing provides a mock function with given fields: segmentID
|
|
func (_m *MockSegmentManager) GetGrowing(segmentID int64) Segment {
|
|
ret := _m.Called(segmentID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetGrowing")
|
|
}
|
|
|
|
var r0 Segment
|
|
if rf, ok := ret.Get(0).(func(int64) Segment); ok {
|
|
r0 = rf(segmentID)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(Segment)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MockSegmentManager_GetGrowing_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetGrowing'
|
|
type MockSegmentManager_GetGrowing_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// GetGrowing is a helper method to define mock.On call
|
|
// - segmentID int64
|
|
func (_e *MockSegmentManager_Expecter) GetGrowing(segmentID interface{}) *MockSegmentManager_GetGrowing_Call {
|
|
return &MockSegmentManager_GetGrowing_Call{Call: _e.mock.On("GetGrowing", segmentID)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetGrowing_Call) Run(run func(segmentID int64)) *MockSegmentManager_GetGrowing_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(int64))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetGrowing_Call) Return(_a0 Segment) *MockSegmentManager_GetGrowing_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetGrowing_Call) RunAndReturn(run func(int64) Segment) *MockSegmentManager_GetGrowing_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// GetLogicalResource provides a mock function with no fields
|
|
func (_m *MockSegmentManager) GetLogicalResource() ResourceUsage {
|
|
ret := _m.Called()
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetLogicalResource")
|
|
}
|
|
|
|
var r0 ResourceUsage
|
|
if rf, ok := ret.Get(0).(func() ResourceUsage); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(ResourceUsage)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MockSegmentManager_GetLogicalResource_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetLogicalResource'
|
|
type MockSegmentManager_GetLogicalResource_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// GetLogicalResource is a helper method to define mock.On call
|
|
func (_e *MockSegmentManager_Expecter) GetLogicalResource() *MockSegmentManager_GetLogicalResource_Call {
|
|
return &MockSegmentManager_GetLogicalResource_Call{Call: _e.mock.On("GetLogicalResource")}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetLogicalResource_Call) Run(run func()) *MockSegmentManager_GetLogicalResource_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run()
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetLogicalResource_Call) Return(_a0 ResourceUsage) *MockSegmentManager_GetLogicalResource_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetLogicalResource_Call) RunAndReturn(run func() ResourceUsage) *MockSegmentManager_GetLogicalResource_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// GetSealed provides a mock function with given fields: segmentID
|
|
func (_m *MockSegmentManager) GetSealed(segmentID int64) Segment {
|
|
ret := _m.Called(segmentID)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetSealed")
|
|
}
|
|
|
|
var r0 Segment
|
|
if rf, ok := ret.Get(0).(func(int64) Segment); ok {
|
|
r0 = rf(segmentID)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(Segment)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MockSegmentManager_GetSealed_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetSealed'
|
|
type MockSegmentManager_GetSealed_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// GetSealed is a helper method to define mock.On call
|
|
// - segmentID int64
|
|
func (_e *MockSegmentManager_Expecter) GetSealed(segmentID interface{}) *MockSegmentManager_GetSealed_Call {
|
|
return &MockSegmentManager_GetSealed_Call{Call: _e.mock.On("GetSealed", segmentID)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetSealed_Call) Run(run func(segmentID int64)) *MockSegmentManager_GetSealed_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(int64))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetSealed_Call) Return(_a0 Segment) *MockSegmentManager_GetSealed_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetSealed_Call) RunAndReturn(run func(int64) Segment) *MockSegmentManager_GetSealed_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// GetWithType provides a mock function with given fields: segmentID, typ
|
|
func (_m *MockSegmentManager) GetWithType(segmentID int64, typ commonpb.SegmentState) Segment {
|
|
ret := _m.Called(segmentID, typ)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for GetWithType")
|
|
}
|
|
|
|
var r0 Segment
|
|
if rf, ok := ret.Get(0).(func(int64, commonpb.SegmentState) Segment); ok {
|
|
r0 = rf(segmentID, typ)
|
|
} else {
|
|
if ret.Get(0) != nil {
|
|
r0 = ret.Get(0).(Segment)
|
|
}
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MockSegmentManager_GetWithType_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetWithType'
|
|
type MockSegmentManager_GetWithType_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// GetWithType is a helper method to define mock.On call
|
|
// - segmentID int64
|
|
// - typ commonpb.SegmentState
|
|
func (_e *MockSegmentManager_Expecter) GetWithType(segmentID interface{}, typ interface{}) *MockSegmentManager_GetWithType_Call {
|
|
return &MockSegmentManager_GetWithType_Call{Call: _e.mock.On("GetWithType", segmentID, typ)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetWithType_Call) Run(run func(segmentID int64, typ commonpb.SegmentState)) *MockSegmentManager_GetWithType_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(int64), args[1].(commonpb.SegmentState))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetWithType_Call) Return(_a0 Segment) *MockSegmentManager_GetWithType_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_GetWithType_Call) RunAndReturn(run func(int64, commonpb.SegmentState) Segment) *MockSegmentManager_GetWithType_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// Put provides a mock function with given fields: ctx, segmentType, _a2
|
|
func (_m *MockSegmentManager) Put(ctx context.Context, segmentType commonpb.SegmentState, _a2 ...Segment) {
|
|
_va := make([]interface{}, len(_a2))
|
|
for _i := range _a2 {
|
|
_va[_i] = _a2[_i]
|
|
}
|
|
var _ca []interface{}
|
|
_ca = append(_ca, ctx, segmentType)
|
|
_ca = append(_ca, _va...)
|
|
_m.Called(_ca...)
|
|
}
|
|
|
|
// MockSegmentManager_Put_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Put'
|
|
type MockSegmentManager_Put_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Put is a helper method to define mock.On call
|
|
// - ctx context.Context
|
|
// - segmentType commonpb.SegmentState
|
|
// - _a2 ...Segment
|
|
func (_e *MockSegmentManager_Expecter) Put(ctx interface{}, segmentType interface{}, _a2 ...interface{}) *MockSegmentManager_Put_Call {
|
|
return &MockSegmentManager_Put_Call{Call: _e.mock.On("Put",
|
|
append([]interface{}{ctx, segmentType}, _a2...)...)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Put_Call) Run(run func(ctx context.Context, segmentType commonpb.SegmentState, _a2 ...Segment)) *MockSegmentManager_Put_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
variadicArgs := make([]Segment, len(args)-2)
|
|
for i, a := range args[2:] {
|
|
if a != nil {
|
|
variadicArgs[i] = a.(Segment)
|
|
}
|
|
}
|
|
run(args[0].(context.Context), args[1].(commonpb.SegmentState), variadicArgs...)
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Put_Call) Return() *MockSegmentManager_Put_Call {
|
|
_c.Call.Return()
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Put_Call) RunAndReturn(run func(context.Context, commonpb.SegmentState, ...Segment)) *MockSegmentManager_Put_Call {
|
|
_c.Run(run)
|
|
return _c
|
|
}
|
|
|
|
// Remove provides a mock function with given fields: ctx, segmentID, scope
|
|
func (_m *MockSegmentManager) Remove(ctx context.Context, segmentID int64, scope querypb.DataScope) (int, int) {
|
|
ret := _m.Called(ctx, segmentID, scope)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for Remove")
|
|
}
|
|
|
|
var r0 int
|
|
var r1 int
|
|
if rf, ok := ret.Get(0).(func(context.Context, int64, querypb.DataScope) (int, int)); ok {
|
|
return rf(ctx, segmentID, scope)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(context.Context, int64, querypb.DataScope) int); ok {
|
|
r0 = rf(ctx, segmentID, scope)
|
|
} else {
|
|
r0 = ret.Get(0).(int)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(context.Context, int64, querypb.DataScope) int); ok {
|
|
r1 = rf(ctx, segmentID, scope)
|
|
} else {
|
|
r1 = ret.Get(1).(int)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// MockSegmentManager_Remove_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Remove'
|
|
type MockSegmentManager_Remove_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Remove is a helper method to define mock.On call
|
|
// - ctx context.Context
|
|
// - segmentID int64
|
|
// - scope querypb.DataScope
|
|
func (_e *MockSegmentManager_Expecter) Remove(ctx interface{}, segmentID interface{}, scope interface{}) *MockSegmentManager_Remove_Call {
|
|
return &MockSegmentManager_Remove_Call{Call: _e.mock.On("Remove", ctx, segmentID, scope)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Remove_Call) Run(run func(ctx context.Context, segmentID int64, scope querypb.DataScope)) *MockSegmentManager_Remove_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(context.Context), args[1].(int64), args[2].(querypb.DataScope))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Remove_Call) Return(_a0 int, _a1 int) *MockSegmentManager_Remove_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Remove_Call) RunAndReturn(run func(context.Context, int64, querypb.DataScope) (int, int)) *MockSegmentManager_Remove_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// RemoveBy provides a mock function with given fields: ctx, filters
|
|
func (_m *MockSegmentManager) RemoveBy(ctx context.Context, filters ...SegmentFilter) (int, int) {
|
|
_va := make([]interface{}, len(filters))
|
|
for _i := range filters {
|
|
_va[_i] = filters[_i]
|
|
}
|
|
var _ca []interface{}
|
|
_ca = append(_ca, ctx)
|
|
_ca = append(_ca, _va...)
|
|
ret := _m.Called(_ca...)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for RemoveBy")
|
|
}
|
|
|
|
var r0 int
|
|
var r1 int
|
|
if rf, ok := ret.Get(0).(func(context.Context, ...SegmentFilter) (int, int)); ok {
|
|
return rf(ctx, filters...)
|
|
}
|
|
if rf, ok := ret.Get(0).(func(context.Context, ...SegmentFilter) int); ok {
|
|
r0 = rf(ctx, filters...)
|
|
} else {
|
|
r0 = ret.Get(0).(int)
|
|
}
|
|
|
|
if rf, ok := ret.Get(1).(func(context.Context, ...SegmentFilter) int); ok {
|
|
r1 = rf(ctx, filters...)
|
|
} else {
|
|
r1 = ret.Get(1).(int)
|
|
}
|
|
|
|
return r0, r1
|
|
}
|
|
|
|
// MockSegmentManager_RemoveBy_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'RemoveBy'
|
|
type MockSegmentManager_RemoveBy_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// RemoveBy is a helper method to define mock.On call
|
|
// - ctx context.Context
|
|
// - filters ...SegmentFilter
|
|
func (_e *MockSegmentManager_Expecter) RemoveBy(ctx interface{}, filters ...interface{}) *MockSegmentManager_RemoveBy_Call {
|
|
return &MockSegmentManager_RemoveBy_Call{Call: _e.mock.On("RemoveBy",
|
|
append([]interface{}{ctx}, filters...)...)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_RemoveBy_Call) Run(run func(ctx context.Context, filters ...SegmentFilter)) *MockSegmentManager_RemoveBy_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
variadicArgs := make([]SegmentFilter, len(args)-1)
|
|
for i, a := range args[1:] {
|
|
if a != nil {
|
|
variadicArgs[i] = a.(SegmentFilter)
|
|
}
|
|
}
|
|
run(args[0].(context.Context), variadicArgs...)
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_RemoveBy_Call) Return(_a0 int, _a1 int) *MockSegmentManager_RemoveBy_Call {
|
|
_c.Call.Return(_a0, _a1)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_RemoveBy_Call) RunAndReturn(run func(context.Context, ...SegmentFilter) (int, int)) *MockSegmentManager_RemoveBy_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// SubLogicalResource provides a mock function with given fields: usage
|
|
func (_m *MockSegmentManager) SubLogicalResource(usage ResourceUsage) {
|
|
_m.Called(usage)
|
|
}
|
|
|
|
// MockSegmentManager_SubLogicalResource_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'SubLogicalResource'
|
|
type MockSegmentManager_SubLogicalResource_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// SubLogicalResource is a helper method to define mock.On call
|
|
// - usage ResourceUsage
|
|
func (_e *MockSegmentManager_Expecter) SubLogicalResource(usage interface{}) *MockSegmentManager_SubLogicalResource_Call {
|
|
return &MockSegmentManager_SubLogicalResource_Call{Call: _e.mock.On("SubLogicalResource", usage)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_SubLogicalResource_Call) Run(run func(usage ResourceUsage)) *MockSegmentManager_SubLogicalResource_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].(ResourceUsage))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_SubLogicalResource_Call) Return() *MockSegmentManager_SubLogicalResource_Call {
|
|
_c.Call.Return()
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_SubLogicalResource_Call) RunAndReturn(run func(ResourceUsage)) *MockSegmentManager_SubLogicalResource_Call {
|
|
_c.Run(run)
|
|
return _c
|
|
}
|
|
|
|
// Unpin provides a mock function with given fields: _a0
|
|
func (_m *MockSegmentManager) Unpin(_a0 []Segment) {
|
|
_m.Called(_a0)
|
|
}
|
|
|
|
// MockSegmentManager_Unpin_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Unpin'
|
|
type MockSegmentManager_Unpin_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// Unpin is a helper method to define mock.On call
|
|
// - _a0 []Segment
|
|
func (_e *MockSegmentManager_Expecter) Unpin(_a0 interface{}) *MockSegmentManager_Unpin_Call {
|
|
return &MockSegmentManager_Unpin_Call{Call: _e.mock.On("Unpin", _a0)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Unpin_Call) Run(run func(_a0 []Segment)) *MockSegmentManager_Unpin_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
run(args[0].([]Segment))
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Unpin_Call) Return() *MockSegmentManager_Unpin_Call {
|
|
_c.Call.Return()
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_Unpin_Call) RunAndReturn(run func([]Segment)) *MockSegmentManager_Unpin_Call {
|
|
_c.Run(run)
|
|
return _c
|
|
}
|
|
|
|
// UpdateBy provides a mock function with given fields: action, filters
|
|
func (_m *MockSegmentManager) UpdateBy(action SegmentAction, filters ...SegmentFilter) int {
|
|
_va := make([]interface{}, len(filters))
|
|
for _i := range filters {
|
|
_va[_i] = filters[_i]
|
|
}
|
|
var _ca []interface{}
|
|
_ca = append(_ca, action)
|
|
_ca = append(_ca, _va...)
|
|
ret := _m.Called(_ca...)
|
|
|
|
if len(ret) == 0 {
|
|
panic("no return value specified for UpdateBy")
|
|
}
|
|
|
|
var r0 int
|
|
if rf, ok := ret.Get(0).(func(SegmentAction, ...SegmentFilter) int); ok {
|
|
r0 = rf(action, filters...)
|
|
} else {
|
|
r0 = ret.Get(0).(int)
|
|
}
|
|
|
|
return r0
|
|
}
|
|
|
|
// MockSegmentManager_UpdateBy_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UpdateBy'
|
|
type MockSegmentManager_UpdateBy_Call struct {
|
|
*mock.Call
|
|
}
|
|
|
|
// UpdateBy is a helper method to define mock.On call
|
|
// - action SegmentAction
|
|
// - filters ...SegmentFilter
|
|
func (_e *MockSegmentManager_Expecter) UpdateBy(action interface{}, filters ...interface{}) *MockSegmentManager_UpdateBy_Call {
|
|
return &MockSegmentManager_UpdateBy_Call{Call: _e.mock.On("UpdateBy",
|
|
append([]interface{}{action}, filters...)...)}
|
|
}
|
|
|
|
func (_c *MockSegmentManager_UpdateBy_Call) Run(run func(action SegmentAction, filters ...SegmentFilter)) *MockSegmentManager_UpdateBy_Call {
|
|
_c.Call.Run(func(args mock.Arguments) {
|
|
variadicArgs := make([]SegmentFilter, len(args)-1)
|
|
for i, a := range args[1:] {
|
|
if a != nil {
|
|
variadicArgs[i] = a.(SegmentFilter)
|
|
}
|
|
}
|
|
run(args[0].(SegmentAction), variadicArgs...)
|
|
})
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_UpdateBy_Call) Return(_a0 int) *MockSegmentManager_UpdateBy_Call {
|
|
_c.Call.Return(_a0)
|
|
return _c
|
|
}
|
|
|
|
func (_c *MockSegmentManager_UpdateBy_Call) RunAndReturn(run func(SegmentAction, ...SegmentFilter) int) *MockSegmentManager_UpdateBy_Call {
|
|
_c.Call.Return(run)
|
|
return _c
|
|
}
|
|
|
|
// NewMockSegmentManager creates a new instance of MockSegmentManager. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
|
|
// The first argument is typically a *testing.T value.
|
|
func NewMockSegmentManager(t interface {
|
|
mock.TestingT
|
|
Cleanup(func())
|
|
}) *MockSegmentManager {
|
|
mock := &MockSegmentManager{}
|
|
mock.Mock.Test(t)
|
|
|
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
|
|
|
return mock
|
|
}
|