From the course: AWS Certified Solutions Architect - Professional (SAP-C02) Cert Prep

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

Reliability scenario, part 2

Reliability scenario, part 2

- Now that we've looked through some various options around the ability to store the images that are uploaded for customer support tickets, as well as the ability to search the text data in those tickets themselves, let's look at combining some of the solutions and determine what the final result looks like. Our first option is to combine S3, for the image storage, and DynamoDB for text search. And if we want to integrate these together, when an image upload is performed, we can use S3 event notifications or EventBridge rules to trigger a lambda function, which then associates the metadata of the image in S3 with the appropriate ticket. And once we've done that, then DynamoDB has the link to the object, we could then make the S3 object either available publicly or we could set up some sort of pre-signed URL for accessing it afterwards. Our second option is kind of an interesting one. It's all S3. We use S3 for image storage, we use S3 for the searching through Athena. Now, this is…

Contents