当前位置:首页 > 文章列表 > Golang > Go问答 > 使用Apache Pulsar:从指定的消息ID到结束消息ID读取/使用消息

使用Apache Pulsar:从指定的消息ID到结束消息ID读取/使用消息

来源:stackoverflow 2024-02-16 19:12:22 0浏览 收藏

在IT行业这个发展更新速度很快的行业,只有不停止的学习,才不会被行业所淘汰。如果你是Golang学习者,那么本文《使用Apache Pulsar:从指定的消息ID到结束消息ID读取/使用消息》就很适合你!本篇内容主要包括##content_title##,希望对大家的知识积累有所帮助,助力实战开发!

问题内容

使用 kafka,我可以指定一个整数消息 id 来开始消费,并指定一个结束消息来停止,例如如下:

kafkacat -b kafka:9092 -t messages -o 11000 -c 11333

但是,指定整数开始和停止消息的相同功能在 apache pulsar 中似乎不可用!

公平地说,如果已经跟踪并以字节格式保存了开始消息 id 和结束消息 id,则可以使用非常复杂的过程来指定开始消息 id 和结束消息 id,这必然会影响性能和代码复杂性。

如本例所示:

client, err := NewClient(pulsar.ClientOptions{
    URL: lookupURL,
})

if err != nil {
    log.Fatal(err)
}
defer client.Close()

topic := "topic-1"
ctx := context.Background()

// create producer
producer, err := client.CreateProducer(pulsar.ProducerOptions{
    Topic:           topic,
    DisableBatching: true,
})
if err != nil {
    log.Fatal(err)
}
defer producer.Close()

// send 10 messages
msgIDs := [10]MessageID{}
for i := 0; i < 10; i++ {
    msgID, err := producer.Send(ctx, &pulsar.ProducerMessage{
        Payload: []byte(fmt.Sprintf("hello-%d", i)),
    })
    assert.NoError(t, err)
    assert.NotNil(t, msgID)
    msgIDs[i] = msgID
}

// create reader on 5th message (not included)
reader, err := client.CreateReader(pulsar.ReaderOptions{
    Topic:          topic,
    StartMessageID: msgIDs[4],
})

if err != nil {
    log.Fatal(err)
}
defer reader.Close()

// receive the remaining 5 messages
for i := 5; i < 10; i++ {
    msg, err := reader.Next(context.Background())
    if err != nil {
    log.Fatal(err)
}

// create reader on 5th message (included)
readerInclusive, err := client.CreateReader(pulsar.ReaderOptions{
    Topic:                   topic,
    StartMessageID:          msgIDs[4],
    StartMessageIDInclusive: true,
})

if err != nil {
    log.Fatal(err)
}
defer readerInclusive.Close()

但是,对于多个并发读取器来说,这很复杂且不可靠(或复杂),并且需要使用外部构造来跟踪已处理的消息,然后才能使用开始/结束语义检索消息。

有什么方法可以实现这一点(最好通过golang)


正确答案


我发现以下简单方法就足够了(概念验证脚本):

package main

import (
    "context"
    "fmt"
    "io/ioutil"
    "log"
    "os"
    "strconv"
    "strings"
    "time"

    "github.com/apache/pulsar-client-go/pulsar"
)

func writeBytesToFile(f string, byteSlice []byte) int {
    // Open a new file for writing only

    f = "./data/" + f

    file, err := os.OpenFile(
        f,
        os.O_WRONLY|os.O_TRUNC|os.O_CREATE,
        0666,
    )
    if err != nil {
        log.Fatal(err)
    }
    defer file.Close()

    // Write bytes to file
    bytesWritten, err := file.Write(byteSlice)

    if err != nil {
        log.Fatal(err)
    }

    log.Printf("Wrote %d bytes.\n", bytesWritten)

    return bytesWritten
}

func readBackByEntryId(msgDir string, msgIndex string) (yourBytes []byte) {

    //We know the file name by convention
    fname := msgDir + "/" + msgIndex + ".dat"

    yourBytes, err := ioutil.ReadFile(fname)

    if err != nil {
        log.Printf("error reading %s", fname)
        return nil
    }

    return yourBytes
}

func getFiles(aDir string) []string {

    var theFiles []string

    files, err := ioutil.ReadDir("./data/")

    if err != nil {
        log.Fatal(err)
    }

    for _, f := range files {

        theFiles = append(theFiles, f.Name())

    }

    return theFiles
}

func streamAll(reader pulsar.Reader, startMsgIndex int64, stopMsgIndex int64) {

    read := false

    for reader.HasNext() {

        msg, err := reader.Next(context.Background())

        if err != nil {
            log.Fatal(err)
        }

        //can I access the details of the message ? yes
        fmt.Printf("%v -> %#v\n", msg.ID().EntryID(), msg.ID())

        //Can i serialize into bytes? Yes
        myBytes := msg.ID().Serialize()

        //Can I store it somewhere? Perhaps a map ? or even on disk in a file ?
        //In other words: Can I write a byte[] slice to a file? Yes!
        msgIndex := msg.ID().EntryID()

        if msgIndex == startMsgIndex {
            fmt.Println("start read: ", msgIndex)
            read = true
        }

        if msgIndex > stopMsgIndex {
            fmt.Println("stop reading: ", msgIndex)
            read = false
        }

        if read == false {

            fmt.Println("skipping ", msgIndex)

        } else {

            fname := strconv.FormatInt(msgIndex, 10) + ".dat"

            fmt.Println("written bytes: ", writeBytesToFile(fname, myBytes))

            fmt.Printf("Received message msgId: %#v -- content: '%s' published at %v\n",
                msg.ID(), string(msg.Payload()), msg.PublishTime())

        }

        /*
            //FYI - to save and reread a msgId from store: https://githubmemory.com/@storm-5
            msgId := msg.ID()
            msgIdBytes := msgId.Serialize()
            idNew, _ := pulsar.DeserializeMessageID(msgIdBytes)

            readerInclusive, err := client.CreateReader(pulsar.ReaderOptions{
                Topic:                   "ragnarok/transactions/requests",
                StartMessageID:          idNew,
                StartMessageIDInclusive: true,
            })
        */
    }

}

func retrieveRange(client pulsar.Client) {

    someFiles := getFiles("./data/")

    for _, f := range someFiles {

        fIndex := strings.Split(f, ".")[0]

        fmt.Println("re-reading message index -> ", fIndex)

        msgIdBytes := readBackByEntryId("./data", fIndex)

        fmt.Printf("boom -> %#v\n", msgIdBytes)

        idNew, err := pulsar.DeserializeMessageID(msgIdBytes)

        if err != nil {
            log.Fatal(err)
        }

        fmt.Println("Got message entry id => ", idNew.EntryID())

        readerInclusive, err := client.CreateReader(pulsar.ReaderOptions{
            Topic:                   "ragnarok/transactions/requests",
            StartMessageID:          idNew,
            StartMessageIDInclusive: true,
        })

        if err != nil {
            log.Fatal(err)
        }

        defer readerInclusive.Close()

        //defer readerInclusive.Close()
        fmt.Println("bleep!")

        msg, err := readerInclusive.Next(context.Background())

        if err != nil {
            log.Fatal(err)
        }

        //fmt.Println("retrieved message -> ", string(msg.Payload()))
        fmt.Printf("Retrieved message ID message msgId: %#v -- content: '%s' published at %v\n",
            msg.ID(), string(msg.Payload()), msg.PublishTime())

    }
}

func main() {

    client, err := pulsar.NewClient(
        pulsar.ClientOptions{
            URL:               "pulsar://localhost:6650",
            OperationTimeout:  30 * time.Second,
            ConnectionTimeout: 30 * time.Second,
        })

    if err != nil {
        log.Fatalf("Could not instantiate Pulsar client: %v", err)
    }

    defer client.Close()

    reader, err := client.CreateReader(pulsar.ReaderOptions{
        Topic:          "ragnarok/transactions/requests",
        StartMessageID: pulsar.EarliestMessageID(),
    })

    if err != nil {
        log.Fatal(err)
    }

    defer reader.Close()

    if err != nil {
        log.Fatal(err)
    }

    var startMsgId int64 = 55
    var stopMsgId int64 = 66

    //stream all the messages from the earliest to latest
    //pick a subset between a start and stop id
    streamAll(reader, startMsgId, stopMsgId)

    //retrieve the picked range
    retrieveRange(client)

}

好了,本文到此结束,带大家了解了《使用Apache Pulsar:从指定的消息ID到结束消息ID读取/使用消息》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!

版本声明
本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
混乱的 GO env 变量路径设置混乱的 GO env 变量路径设置
上一篇
混乱的 GO env 变量路径设置
设置秘密凭据以在自动测试运行程序时使用 Golang Test Explorer
下一篇
设置秘密凭据以在自动测试运行程序时使用 Golang Test Explorer
查看更多
最新文章
查看更多
课程推荐
  • 前端进阶之JavaScript设计模式
    前端进阶之JavaScript设计模式
    设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
    542次学习
  • GO语言核心编程课程
    GO语言核心编程课程
    本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
    508次学习
  • 简单聊聊mysql8与网络通信
    简单聊聊mysql8与网络通信
    如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
    497次学习
  • JavaScript正则表达式基础与实战
    JavaScript正则表达式基础与实战
    在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
    487次学习
  • 从零制作响应式网站—Grid布局
    从零制作响应式网站—Grid布局
    本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
    484次学习
查看更多
AI推荐
  • 可图AI图片生成:快手可灵AI2.0引领图像创作新时代
    可图AI图片生成
    探索快手旗下可灵AI2.0发布的可图AI2.0图像生成大模型,体验从文本生成图像、图像编辑到风格转绘的全链路创作。了解其技术突破、功能创新及在广告、影视、非遗等领域的应用,领先于Midjourney、DALL-E等竞品。
    28次使用
  • MeowTalk喵说:AI猫咪语言翻译,增进人猫情感交流
    MeowTalk喵说
    MeowTalk喵说是一款由Akvelon公司开发的AI应用,通过分析猫咪的叫声,帮助主人理解猫咪的需求和情感。支持iOS和Android平台,提供个性化翻译、情感互动、趣味对话等功能,增进人猫之间的情感联系。
    26次使用
  • SEO标题Traini:全球首创宠物AI技术,提升宠物健康与行为解读
    Traini
    SEO摘要Traini是一家专注于宠物健康教育的创新科技公司,利用先进的人工智能技术,提供宠物行为解读、个性化训练计划、在线课程、医疗辅助和个性化服务推荐等多功能服务。通过PEBI系统,Traini能够精准识别宠物狗的12种情绪状态,推动宠物与人类的智能互动,提升宠物生活质量。
    26次使用
  • 可图AI 2.0:快手旗下新一代图像生成大模型,专业创作者与普通用户的多模态创作引擎
    可图AI 2.0图片生成
    可图AI 2.0 是快手旗下的新一代图像生成大模型,支持文本生成图像、图像编辑、风格转绘等全链路创作需求。凭借DiT架构和MVL交互体系,提升了复杂语义理解和多模态交互能力,适用于广告、影视、非遗等领域,助力创作者高效创作。
    30次使用
  • 毕业宝AIGC检测:AI生成内容检测工具,助力学术诚信
    毕业宝AIGC检测
    毕业宝AIGC检测是“毕业宝”平台的AI生成内容检测工具,专为学术场景设计,帮助用户初步判断文本的原创性和AI参与度。通过与知网、维普数据库联动,提供全面检测结果,适用于学生、研究者、教育工作者及内容创作者。
    43次使用
微信登录更方便
  • 密码登录
  • 注册账号
登录即同意 用户协议隐私政策
返回登录
  • 重置密码