我正在寻找AWS s3 Spring Integration File Modification Monitor示例。
要求:每当从AWS S3存储桶中修改文件时,最新的更改都必须从s3实例转移到EC2实例。
我们有文件入站适配器的监视事件,但是我正在寻找类似的适配器或s3操作的逻辑。
我们现在所拥有的:
<int-file:inbound-channel-adapter id="modifiedFiles" directory="${input.directory}" use-watch-service="true" filter="acceptAllFilter" watch-events="MODIFY"/>
XML配置:
<bean id="acceptOnceFilter"
class="org.springframework.integration.file.filters.AcceptOnceFileListFilter" />
<integration:channel id="s3FilesChannel" />
<int-aws:s3-inbound-channel-adapter id="s3FilesChannelId" channel="s3FilesChannel"
session-factory="s3SessionFactory"
auto-create-local-directory="false"
delete-remote-files="false"
preserve-timestamp="true"
local-directory="file:${localFilePath}"
local-filter="acceptOnceFilter"
remote-directory-expression="${bucket_name}"
auto-startup="false"
filename-regex="${regx_expresion}"
remote-file-separator="/" >
<integration:poller fixed-delay="1000"/>
</int-aws:s3-inbound-channel-adapter>
<integration:channel id="s3FilesChannel">
<integration:queue/>
</integration:channel>
答案 0 :(得分:0)
没有适用于AWS S3的监视器。这是基于HTTP的远程协议,与基于WatchService
的纯文件系统监视器不同。您不能将苹果与苹果进行比较。
您需要使用标准的<int-aws:s3-inbound-channel-adapter>
。默认情况下使用S3PersistentAcceptOnceFileListFilter
来响应远程文件的修改。好吧,从本质上讲,它轮询远程文件并检查其lastmodified
。
在Reference Manual中查看更多信息:
此外,如果您将过滤器配置为使用
FtpPersistentAcceptOnceFileListFilter
,并且远程文件时间戳发生更改(导致重新获取)
相同的规则适用于AWS S3通道适配器。