Files
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

78 lines
1.8 KiB
Go

package kafka
import (
"strconv"
"github.com/cockroachdb/errors"
"github.com/confluentinc/confluent-kafka-go/kafka"
"github.com/milvus-io/milvus-proto/go-api/v3/commonpb"
"github.com/milvus-io/milvus/pkg/v3/streaming/util/message"
)
func UnmarshalMessageID(data string) (message.MessageID, error) {
id, err := unmarshalMessageID(data)
if err != nil {
return nil, err
}
return id, nil
}
func unmarshalMessageID(data string) (kafkaID, error) {
v, err := message.DecodeInt64(data)
if err != nil {
return 0, errors.Wrapf(message.ErrInvalidMessageID, "decode kafkaID fail with err: %s, id: %s", err.Error(), data)
}
return kafkaID(v), nil
}
func NewKafkaID(offset kafka.Offset) message.MessageID {
return kafkaID(offset)
}
type kafkaID kafka.Offset
// RmqID returns the message id for conversion
// Don't delete this function until conversion logic removed.
// TODO: remove in future.
func (id kafkaID) KafkaID() kafka.Offset {
return kafka.Offset(id)
}
// WALName returns the name of message id related wal.
func (id kafkaID) WALName() message.WALName {
return message.WALNameKafka
}
// LT less than.
func (id kafkaID) LT(other message.MessageID) bool {
return id < other.(kafkaID)
}
// LTE less than or equal to.
func (id kafkaID) LTE(other message.MessageID) bool {
return id <= other.(kafkaID)
}
// EQ Equal to.
func (id kafkaID) EQ(other message.MessageID) bool {
return id == other.(kafkaID)
}
// Marshal marshal the message id.
func (id kafkaID) Marshal() string {
return message.EncodeInt64(int64(id))
}
// IntoProto marshal the message id to proto.
func (id kafkaID) IntoProto() *commonpb.MessageID {
return &commonpb.MessageID{
Id: id.Marshal(),
WALName: commonpb.WALName(id.WALName()),
}
}
func (id kafkaID) String() string {
return strconv.FormatInt(int64(id), 10)
}