We have a business scenario to process large number of messages. key factor is order of messages is important.
If we consider to use AWS SQS FIFO, it can process only 300 messages per second. This is not applicable for us, because we expect more than 300 messages per second and batch processing also not possible, since we can send only one message to SQS. Also FIFO can store 20,000 inflate messages. This is also low for us.
Second consideration is to use AWS DynamoDB and use a sorting attribute(like timestamp) to maintain the order of messages.
Will it be suitable to use DynamoDB for our case as we expect huge number of data? Is there any major difference between SQS and DynamoDB in terms of Performance and transactions?