TimSpeelman / in4392-lab

0 stars 1 forks source link

Easy to use SQS Queue fascade #9

Closed PhilipeLouchtch closed 6 years ago

PhilipeLouchtch commented 6 years ago

To ease development of the lambdas, it's nice to have a single, simple interface for SQS to read and write messages to AWS SQS.

Requirements:

TimSpeelman commented 6 years ago

Do we need a FIFO-queue or a normal queue? Only the FIFO guarantuees one-time delivery, but at the cost of throughput. https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/welcome.html

PhilipeLouchtch commented 6 years ago

Standard is fine, won't matter much if we get a message double. Can tolerate a case that we get a message twice.

Shouldn't matter for the report, at all.

However, 3000 msgs per second is still pretty f-ing high for our purposes. Can always change which one we use later.

TimSpeelman commented 6 years ago

Well we could evaluate both right?

PhilipeLouchtch commented 6 years ago

I'd say: stick to the standard, can evaluate if time. Not sure if useful though, might ask the TA. SQS is part of our architecture but might be outside the scope of the assignment.