简体   繁体   English

关于 SQS 和 S3 的问题是否可以连接 SQS 以直接发布到 S3 消息

[英]Question on SQS and S3 is it possible to wire SQS to publish straight to a S3 message

I am guessing the answer would be a big No. But is there a way to publish SQS messages straight to an S3 Bucket.我猜答案将是一个很大的不。但是有没有办法将 SQS 消息直接发布到 S3 存储桶。 I know the pattern is SQS -> Lambda ->S3.我知道模式是 SQS -> Lambda -> S3。 I was wondering is there a way to just publish from a SQS straight to a S3 Bucket.我想知道有没有办法直接从 SQS 发布到 S3 存储桶。

Amazon SQS does not 'publish' messages. Amazon SQS 不会“发布”消息。

Instead, apps can SendMessage() to an Amazon SQS queue, and then apps can request messages by calling ReceiveMessage() .相反,应用程序可以SendMessage()到 Amazon SQS 队列,然后应用程序可以通过调用ReceiveMessage()来请求消息。 Once they have finished processing the message, they call DeleteMessage() .一旦他们完成了消息的处理,他们就会调用DeleteMessage()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM