package util import ( "github.com/milvus-io/milvus/pkg/v2/proto/streamingpb" "github.com/milvus-io/milvus/pkg/v2/streaming/util/message" "github.com/milvus-io/milvus/pkg/v2/util/paramtable" "github.com/milvus-io/milvus/pkg/v2/util/replicateutil" ) func IsReplicationRemovedByAlterReplicateConfigMessage(msg message.ImmutableMessage, replicateInfo *streamingpb.ReplicatePChannelMeta) (replicationRemoved bool) { prcMsg := message.MustAsImmutableAlterReplicateConfigMessageV2(msg) replicateConfig := prcMsg.Header().ReplicateConfiguration currentClusterID := paramtable.Get().CommonCfg.ClusterPrefix.GetValue() currentCluster := replicateutil.MustNewConfigHelper(currentClusterID, replicateConfig).GetCurrentCluster() _, err := currentCluster.GetTargetChannel(replicateInfo.GetSourceChannelName(), replicateInfo.GetTargetCluster().GetClusterId()) if err != nil { // Cannot find the target channel, it means that the `current->target` topology edge is removed, // it means that the replication is removed. return true } return false }