Does sst queue construct support fifo property? Ca...
# sst
s
Does sst queue construct support fifo property? Can't see it in the docs
Ah aws cdk supports fifo queues is easy to add into your sst constructs.
f
Hey @Sam Frampton, I just added a FIFO queue example to the doc, let me know if it works. https://docs.serverless-stack.com/constructs/Queue#configuring-the-sqs-queue
s
Hey @Frank thanks for this. I don't think this will work if you don't append .fifo to the name of consumer as well as set fifo flag to true. So something like
myQueue.fifo
is worth adding to docs.
I'm not sure if aws cdk supports new aws feature but sns now has fifo functionality as well: https://aws.amazon.com/blogs/aws/introducing-amazon-sns-fifo-first-in-first-out-pub-sub-messaging/
f
@Sam Frampton are you explicitly configuring the queue name? SST should automatically append
.fifo
to the self-generated queue name.