本文来自于网易云社区 一.消息总线MQ和Kafka (挡在请求的第一线) 1. 几个应用场景 case a:上游系统往下游系统推送消息,而不关心处理结果: case b:一份新数据生成,需要实时保存到数据库,索引系统,统计系统等: case c:调用一个耗时很长的接口,需要在任务完成的时候告知调用方: 这个时候消息总线(Message Queue)就可以发挥作用,它的特长是"解耦": case a:消息先推送到MQ,下游从MQ拿消息: case b:新数据推送到MQ, 数据库.索引系统…
2.1 Producer API We encourage all new development to use the new Java producer. This client is production tested and generally both faster and more fully featured than the previous Scala client. You can use this client by adding a dependency on the c…