2021-10-15 18:09:00 +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:16:33 +08:00
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
2021-10-15 18:09:00 +08:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2021-04-19 15:16:33 +08:00
|
|
|
//
|
2021-10-15 18:09:00 +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:16:33 +08:00
|
|
|
|
2021-01-19 11:37:16 +08:00
|
|
|
package datanode
|
|
|
|
|
|
|
|
import (
|
2022-03-03 21:57:56 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/mq/msgstream"
|
2021-04-22 14:45:57 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
2022-10-20 16:39:29 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/storage"
|
2021-04-22 14:45:57 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/util/flowgraph"
|
2021-01-19 11:37:16 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
2021-09-24 20:46:04 +08:00
|
|
|
// Msg is flowgraph.Msg
|
|
|
|
Msg = flowgraph.Msg
|
|
|
|
|
|
|
|
// MsgStreamMsg is flowgraph.MsgStreamMsg
|
2021-01-19 11:37:16 +08:00
|
|
|
MsgStreamMsg = flowgraph.MsgStreamMsg
|
2022-10-20 16:39:29 +08:00
|
|
|
|
|
|
|
// InsertData of storage
|
|
|
|
InsertData = storage.InsertData
|
|
|
|
|
|
|
|
// DeleteData record deleted IDs and Timestamps
|
|
|
|
DeleteData = storage.DeleteData
|
|
|
|
|
|
|
|
// Blob of storage
|
|
|
|
Blob = storage.Blob
|
2021-01-19 11:37:16 +08:00
|
|
|
)
|
|
|
|
|
2021-09-26 10:43:57 +08:00
|
|
|
type flowGraphMsg struct {
|
2021-03-25 14:41:46 +08:00
|
|
|
insertMessages []*msgstream.InsertMsg
|
2021-10-11 16:31:44 +08:00
|
|
|
deleteMessages []*msgstream.DeleteMsg
|
2021-03-25 14:41:46 +08:00
|
|
|
timeRange TimeRange
|
|
|
|
startPositions []*internalpb.MsgPosition
|
|
|
|
endPositions []*internalpb.MsgPosition
|
2021-10-18 12:34:34 +08:00
|
|
|
//segmentsToFlush is the signal used by insertBufferNode to notify deleteNode to flush
|
|
|
|
segmentsToFlush []UniqueID
|
2021-11-11 20:56:49 +08:00
|
|
|
dropCollection bool
|
2022-07-15 17:12:27 +08:00
|
|
|
dropPartitions []UniqueID
|
2021-03-25 14:41:46 +08:00
|
|
|
}
|
2021-01-19 11:37:16 +08:00
|
|
|
|
2021-09-26 10:43:57 +08:00
|
|
|
func (fgMsg *flowGraphMsg) TimeTick() Timestamp {
|
|
|
|
return fgMsg.timeRange.timestampMax
|
|
|
|
}
|
|
|
|
|
2021-10-06 23:30:21 +08:00
|
|
|
// flush Msg is used in flowgraph insertBufferNode to flush the given segment
|
2021-03-25 14:41:46 +08:00
|
|
|
type flushMsg struct {
|
|
|
|
msgID UniqueID
|
|
|
|
timestamp Timestamp
|
2021-05-25 15:35:37 +08:00
|
|
|
segmentID UniqueID
|
2021-03-25 14:41:46 +08:00
|
|
|
collectionID UniqueID
|
2021-10-20 15:02:36 +08:00
|
|
|
flushed bool
|
2021-03-25 14:41:46 +08:00
|
|
|
}
|
2022-05-25 14:34:00 +08:00
|
|
|
|
|
|
|
type resendTTMsg struct {
|
|
|
|
msgID UniqueID
|
|
|
|
segmentIDs []UniqueID
|
|
|
|
}
|