alexanoid
alexanoid

Reputation: 25770

How AWS SQS works for message delivery from queue to client

I can't find information about communication internals between AWS SQS queue and a client. What a model is used in order to delivery the message from SQS queue to client - push or pull ?

Does the SQS client need to continuously pull the SQS queue in order to retrieve messages or messages are pushed from SQS to client in a some way ?

Upvotes: 0

Views: 278

Answers (1)

Mark B
Mark B

Reputation: 200411

What a model is used in order to delivery the message from SQS queue to client - push or pull ?

Pull

Does the SQS client need to continuously pull the SQS queue in order to retrieve messages or messages are pushed from SQS to client in a some way ?

The client needs to continuously pull from the queue.

Upvotes: 3

Related Questions