Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果您向特定的 Amazon SQS 队列发送消息,并多次向同一个队列发送相同的消息,...... amazon sqs 是否将它们作为单独的消息处理?或者它是否检测到它是相同的消息并且只在队列中存储一条消息?
谢谢
丹尼尔
它将一遍又一遍地创建相同的消息。
2011 年 9 月 21 日接受的答案是不正确的,至少在使用 FIFO 队列时是这样。(Fifo 队列在 2011 年不可用。)
Fifo 队列支持基于内容的重复数据删除和发件人管理的重复数据删除。在任何一种情况下,发送重复消息时,都会接受发送,但不会在队列上创建新消息。这适用于 5 分钟重复数据删除窗口内的重复项。
请参阅https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/using-messagededuplicationid-property.html