Popular posts from this blog
AWS S3 MRAP
Amazon S3 Multi-Region Access Points In Simple terms, what is S3 MRAP? Imagine you have a giant box of toys (like S3 buckets) in different rooms (like different AWS regions) of your house (like the cloud). Normally, you'd have to remember which room each toy was in to find it. But with S3 MRAP, it's like having a magic label on the box that says "Toy Room" no matter which room it's actually in. You just say "Toy Room" and magically the label tells you the right room to go to! S3 MRAP is like a special label for your toy boxes (S3 buckets) that are spread out in different places (regions). You ask for a toy (data) using the label (MRAP endpoint), and the label tells you the best place (regional S3 bucket) to find it, no matter where it's stored! ~~Rakesh
C4 Model Diagram - Context
@startuml !include https://raw.githubusercontent.com/plantuml-stdlib/C4-PlantUML/master/C4_Context.puml title System Context Diagram for My Application Person(user, "End User", "Interacts with the web app via browser") System(myapp, "My Application", "Web application for business functionality") System_Ext(snowflake_db1, "Snowflake Database 1", "External analytics data store") System_Ext(snowflake_db2, "Snowflake Database 2", "External analytics data store") System_Ext(rds_db, "AWS RDS", "Relational database for core app data") System_Ext(redis_cache, "Redis Cache", "In-memory cache for performance") Rel(user, myapp, "Uses", "HTTPS") Rel(myapp, rds_db, "Reads/Writes", "JDBC/SQL") Rel(myapp, redis_cache, "Reads/Writes", "Redis Protocol") Rel(myapp, snowflake_db1, "Queries", "Snowflake...
Comments
Post a Comment