-
Notifications
You must be signed in to change notification settings - Fork 221
New issue
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
[feat]希望后续能提供一个RabbitMQ的插件 #185
Labels
enhancement
New feature or request
Comments
ok, 有意向来贡献该插件实现不? |
可以啊,我们最近一直在找个数据集成框架,还有可视化界面管理的,现在开源的基本都不行 |
到时候,我会写一个关于何如在TIS开发插件的说明文档 |
发送端需要 什么结构 ? 发送端 和 监听端 得保证 同一个协议才行哦 // 发送消息
channel.basicPublish("", QUEUE_NAME, null, message.getBytes("UTF-8"));
System.out.println(" [x] Sent '" + message + "'"); |
Open
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RabbitMQ是非常流行的消息中间件,当前TIS只能支持数据库到数据库的数据同步,还不能支持到消息队列,希望后面能提供此功能。支持 AMQP协议。配置参数参考:
RabbitMQ的maven依赖:
连接示例代码:
数据格式要求
@欧阳奖
The text was updated successfully, but these errors were encountered: