We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
订阅的是topic是"foo",但是收到的message:
msg.Topic == "foo-partition-0"
这样我都没办法对topic进行switch case了…
swtich msg.Topic { case "foo": doFoo(msg) case "bar": doBar(msg) default: doOther(msg) }
The text was updated successfully, but these errors were encountered:
通过分区来提高吞吐率的
Sorry, something went wrong.
我的意思是,msgID里已经包含了分区信息了,Topic里再包含partition似乎没太大意义,而且还造成了额外的负担,消费时想针对不同topic进行处理还得做字符串切分
No branches or pull requests
订阅的是topic是"foo",但是收到的message:
这样我都没办法对topic进行switch case了…
The text was updated successfully, but these errors were encountered: