
Yandex Message Queue
A queue service for messaging between components of distributed applications and microservices.
Standard and FIFO queues
Compatibility with the Amazon SQS HTTP API
Fast processing
Secure message storage
Integration with functions and triggers
Getting started
Create a queue and view the number of messages and call duration in statistics.

Questions and answers
How do standard queues handle messages?
Consumers read messages from a standard queue in random order. Standard queues guarantee that each message is delivered at least once. In rare cases, a message can be received from a standard queue twice. Use standard queues when you need maximum throughput.
Consumers read messages from a standard queue in random order. Standard queues guarantee that each message is delivered at least once. In rare cases, a message can be received from a standard queue twice. Use standard queues when you need maximum throughput.
What is the difference between FIFO and standard queues?
Messages are read from a FIFO queue in the order that they are received. FIFO queues guarantee exactly-once delivery, but their throughput is limited to 30 messages per second. Use FIFO queues if you need strictly ordered message delivery and exactly-once processing.
Messages are read from a FIFO queue in the order that they are received. FIFO queues guarantee exactly-once delivery, but their throughput is limited to 30 messages per second. Use FIFO queues if you need strictly ordered message delivery and exactly-once processing.