Spring Integration消息轮询

时间:2018-03-13 14:31:42

标签: java spring spring-integration spring-messaging

我有一个Spring配置设置,用于轮询来自db队列的消息:

<int:annotation-config default-publisher-channel="messageChannel" />

<task:executor id="messageTaskExecutor" pool-size="1"
    queue-capacity="1" rejection-policy="CALLER_RUNS" />

<int:transaction-synchronization-factory id="syncFactory">
    <int:after-commit expression="@messageSessionStore.removeFromIdCache(headers.id.toString())" />
    <int:after-rollback expression="@messageSessionStore.removeFromIdCache(headers.id.toString())" />
</int:transaction-synchronization-factory>

<bean id="messageQueryProvider"
    class="org.springframework.integration.jdbc.store.channel.OracleChannelMessageStoreQueryProvider" />

<bean id="messageSessionStore"
    class="org.springframework.integration.jdbc.store.JdbcChannelMessageStore">
    <property name="dataSource" ref="dataSource" />
    <property name="channelMessageStoreQueryProvider" ref="messageQueryProvider" />
    <property name="tablePrefix" value="QUEUE_" />
    <property name="usingIdCache" value="true" />
</bean>

<int:channel id="messageChannel">
    <int:queue message-store="messageSessionStore" />
</int:channel>

<int:poller id="defaultPoller" fixed-delay="500" max-messages-per-poll="1" task-executor="messageTaskExecutor" default="true">
    <int:transactional propagation="REQUIRED" synchronization-factory="syncFactory" isolation="READ_COMMITTED" transaction-manager="eosTransactionManager"/>
</int:poller>

但是,应用程序在多个节点上运行。当服务器重新启动时,似乎发生消息被多于1个节点拾取(节点全部立即关闭并按顺序重新启动)。有没有办法避免多个消息处理?

1 个答案:

答案 0 :(得分:0)

使用OracleChannelMessageStoreQueryProvider无法以某种方式实现。仅仅因为我们依赖于FOR UPDATE SKIP LOCKED。因此,当一个节点执行SELECT时,记录将被锁定,下一个记录将转到表中的下一个空闲行。

JavaDoc中没有setUsingIdCache()

 * <p>If using the provided {@link OracleChannelMessageStoreQueryProvider}, don't set {@link #usingIdCache}
 * to true, as the Oracle query will ignore locked rows.</p>

但我认为这完全不相关。删除该选项和<int:transaction-synchronization-factory>将简化配置,但不得更改行为。

我认为您所看到的就像round-robin:一个节点获得第一行,下一个节点跳过它并获得下一个。

我不知道不同的节点在它是Oracle时会得到相同的消息。