Skip to content

Commit

Permalink
add decision record on blob storage schema design
Browse files Browse the repository at this point in the history
  • Loading branch information
MGTheTrain committed Nov 18, 2024
1 parent 2c5351d commit 09a119f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/architecture-decision-record/blob-storage-schema-design.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

# Blob Storage Schema Design

## Decision:

Blobs will be stored in a Blob Storage using the schema /{ID}/{Name}, where:

- **ID:** A unique identifier for the entity (e.g., user ID, product ID).
- **Name:** The name or description of the specific file (e.g., profile_picture.png, invoice.pdf).

## Conclusion:

The `/{ID}/{Name}` schema provides a logical, scalable, and efficient way to organize blobs. It ensures clear grouping of related blobs, simplifies retrieval, and leverages a Blob Storage's hierarchical structure for better performance and management.

0 comments on commit 09a119f

Please sign in to comment.