-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add decision record on blob storage schema design
- Loading branch information
1 parent
2c5351d
commit 09a119f
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
docs/architecture-decision-record/blob-storage-schema-design.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |