在事务中创建重试延迟以清除sftp入站通道文件

时间:2015-09-16 15:35:43

标签: spring-integration spring-transactions spring-messaging

我有一个sftp:inbound-channel-adapter,可以将文件从远程文件夹同步到本地文件夹。当它找到扩展名为.xml的文件时,会创建Message<File>和新的交易并将其发送到routerChannel频道。

approverRouter查看xml内部并确定进程是否可以继续。如果一切正常,则将消息发送到“okChannel”并关闭到数据库以进行保存。但是,如果事情不正常,则会将消息发送到int:delayer 10秒钟,然后重新提交到approverRouter

如果交易成功或失败,sftpCommittedChannelsftpRolledBackChannel只会将下载的文件移至已完成/失败的文件夹。

以下是一些用于描述此内容的xml:

<int-sftp:inbound-channel-adapter id="..." channel="routerChannel" local-filter="localOnlyXmlFilter" ... >
    <int:poller fixed-rate="10000" max-messages-per-poll="-1">
        <int:transactional transaction-manager="transactionManager" synchronization-factory="syncFactory" />
    </int:poller>
</int-sftp:inbound-channel-adapter>

<!-- Takes Message<Map> makes sure all files exist and are valid MD5 checked -->
<int:router input-channel="routerChannel" ref="approverRouter" method="resolveRoute"/>

<bean id="approverRouter" class="com.example.app.readers.ApproverRouter">
    <property name="errorChannel" value="errorChannel"/>
    <property name="retryChannel" value="myRetry"/>
    <property name="okChannel" value="transformHashesToList"/>
    <property name="timeout" value="${timout}"/>
</bean>

<int:delayer id="delayer" input-channel="myRetry" output-channel="routerChannel" default-delay="10000"/>

<int:transaction-synchronization-factory id="syncFactory">
    <int:after-commit channel="sftpCommittedChannel"/>
    <int:after-rollback channel="sftpRolledBackChannel"/>
</int:transaction-synchronization-factory>

我的问题是,当消息发送到延迟器时,轮询器中创建的事务成功完成。我认为这是因为当消息到达int:delayer时(通过retryChannel),它不再位于同一原始线程中。

我想我需要的是一个同步延迟器,它会增加延迟,但会将消息保留在原始事务中。这感觉就像我的设计不对。

正常人为了创建重试延迟并在成功或失败时仍然整理sftp文件夹做了什么。

1 个答案:

答案 0 :(得分:0)

您可以添加无状态请求处理程序重试建议;可以根据退避设置暂停线程。

请参阅the documentationspring-retry