Skip to content

Latest commit

 

History

History
52 lines (31 loc) · 737 Bytes

README.md

File metadata and controls

52 lines (31 loc) · 737 Bytes

Overview

This is a poc using Spring Cloud Amazon Web Service

Setup

AWS CLI

AWS SQS

Testing

Standard Queue

StandardProducer

Sends the messages to standard-queue

StandardConsumer

Process the messages from standard-queue

The messages should not be received in order

Message 1
Message 3
Message 2
Message 5

FIFO Queue

FifoProducer

Sends the messages to queue.fifo

FifoConsumer

Process the messages from standard-queue

The messages should be received in order

Message 1
Message 2
Message 3
Message 4

Be Happy