mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
1. Fix primary-secondary replication switchover blocking by delete replicate pchannel meta using modRevision. 2. Stop channel replicator(scanner) when cluster role changes to prevent continued message consumption and replication. 3. Close Milvus client to prevent goroutine leak. 4. Create Milvus client once for a channel replicator. 5. Simplify CDC controller and resources. issue: https://github.com/milvus-io/milvus/issues/44123 --------- Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
96 lines
3.3 KiB
Go
96 lines
3.3 KiB
Go
// 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
|
|
// 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,
|
|
// 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.
|
|
|
|
package replicatemanager
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/apache/pulsar-client-go/pulsar"
|
|
"github.com/stretchr/testify/assert"
|
|
mock "github.com/stretchr/testify/mock"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/milvuspb"
|
|
"github.com/milvus-io/milvus/internal/cdc/cluster"
|
|
"github.com/milvus-io/milvus/internal/cdc/meta"
|
|
"github.com/milvus-io/milvus/internal/cdc/replication/replicatestream"
|
|
"github.com/milvus-io/milvus/internal/distributed/streaming"
|
|
"github.com/milvus-io/milvus/internal/mocks/distributed/mock_streaming"
|
|
"github.com/milvus-io/milvus/pkg/v2/proto/streamingpb"
|
|
pulsar2 "github.com/milvus-io/milvus/pkg/v2/streaming/walimpls/impls/pulsar"
|
|
)
|
|
|
|
func newMockPulsarMessageID() *commonpb.MessageID {
|
|
pulsarID := pulsar.EarliestMessageID()
|
|
msgID := pulsar2.NewPulsarID(pulsarID).Marshal()
|
|
return &commonpb.MessageID{
|
|
Id: msgID,
|
|
WALName: commonpb.WALName_Pulsar,
|
|
}
|
|
}
|
|
|
|
func TestChannelReplicator_StartReplicateChannel(t *testing.T) {
|
|
mockMilvusClient := cluster.NewMockMilvusClient(t)
|
|
mockMilvusClient.EXPECT().GetReplicateInfo(mock.Anything, mock.Anything).
|
|
Return(&milvuspb.GetReplicateInfoResponse{
|
|
Checkpoint: &commonpb.ReplicateCheckpoint{
|
|
Pchannel: "test-source-channel",
|
|
MessageId: newMockPulsarMessageID(),
|
|
},
|
|
}, nil)
|
|
mockMilvusClient.EXPECT().Close(mock.Anything).Return(nil)
|
|
|
|
scanner := mock_streaming.NewMockScanner(t)
|
|
scanner.EXPECT().Close().Return()
|
|
wal := mock_streaming.NewMockWALAccesser(t)
|
|
wal.EXPECT().Read(mock.Anything, mock.Anything).Return(scanner)
|
|
streaming.SetWALForTest(wal)
|
|
|
|
rs := replicatestream.NewMockReplicateStreamClient(t)
|
|
rs.EXPECT().Close().Return()
|
|
|
|
mc := &commonpb.MilvusCluster{ClusterId: "test-cluster"}
|
|
replicateInfo := &streamingpb.ReplicatePChannelMeta{
|
|
SourceChannelName: "test-source-channel",
|
|
TargetChannelName: "test-target-channel",
|
|
TargetCluster: mc,
|
|
}
|
|
replicator := NewChannelReplicator(&meta.ReplicateChannel{
|
|
Value: replicateInfo,
|
|
ModRevision: 0,
|
|
})
|
|
assert.NotNil(t, replicator)
|
|
|
|
replicator.(*channelReplicator).createRscFunc = func(ctx context.Context,
|
|
c cluster.MilvusClient,
|
|
rm *meta.ReplicateChannel,
|
|
) replicatestream.ReplicateStreamClient {
|
|
return rs
|
|
}
|
|
replicator.(*channelReplicator).createMcFunc = func(ctx context.Context,
|
|
cluster *commonpb.MilvusCluster,
|
|
) (cluster.MilvusClient, error) {
|
|
return mockMilvusClient, nil
|
|
}
|
|
|
|
replicator.StartReplication()
|
|
time.Sleep(200 * time.Millisecond)
|
|
replicator.StopReplication()
|
|
}
|