whoiam 发表于 2021-5-16 12:29:56

文件上传到S3后,使用s3通知是到SQS还是MQ?有啥区别?

本帖最后由 whoiam 于 2021-5-16 12:58 编辑

文件上传到S3后,使用s3通知是到SQS还是MQ?有啥区别?是否与 后面调用s3批处理处理图像 或者调用lambda 有关联,为什么?



yxh1128 发表于 2021-9-15 20:19:10

Amazon SQS: SQS is a distributed queuing system. With SQS, messages are NOT
pushed to the receivers. Receivers pull messages from the queue and once they pull
a message, no one else can receive that message. The receiver processes it and the
message is removed from the queue.
ActiveMQ: Apache ActiveMQ is another popular open source messaging tool. It
supports a variety of messaging protocols – multi-protocol. It is written in Java but it
offers connectivity to C, C++, Python, and .NET among other languages. It supports
a variety of standard protocols.

chinese_ys 发表于 2021-9-15 20:23:12

SQS是AWS的服务,MQ是OPENSOURCE。上传到S3能直接发送提示到SQS但不能直接到MQ,用LAMBDA才有可能。

bracez 发表于 2021-9-16 11:20:13

SQS是队列,不是应该用SNS消息服务吗?队列在中间。

digiter 发表于 2021-10-8 17:00:37

特谢库勒
页: [1]
查看完整版本: 文件上传到S3后,使用s3通知是到SQS还是MQ?有啥区别?