Honghu的消息服务平台已经抛弃了之前的ActiveMQ,改用高吞吐量比较大的Kafka分布式消息中间件方案:
kafka消息平台使用spring+kafka的集成方案,详情如下:
1. 使用最高版本2.1.0.RELEASE集成jar包:spring-integration-kafka
2. Zookeeper、Kafka分布式集群使用init.properties配置化方案。
- kafka.servers=127.0.0.1:9092
- kafka.topic=xxxooo
kafka.servers=127.0.0.1:9092
kafka.topic=xxxooo
3. 使用消息生产者spring-context-producer配置化方案。
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:context="http://www.springframework.org/schema/context"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context.xsd">
- <!-- 定义producer的参数 -->
- <bean id="producerProperties" class="java.util.HashMap">
- <constructor-arg>
- <map>
- <entry key="bootstrap.servers" value="localhost:9092" />
- <entry key="group.id" value="2" />
- <entry key="retries" value="10" />
- <entry key="batch.size" value="16384" />
- <entry key="linger.ms" value="1" />
- <entry key="buffer.memory" value="33554432" />