Data storage library for asset model apps
Project description
Storage Abstraction System
This module provides a flexible storage abstraction that allows the B3 model system to save files to either local file system or AWS S3 based on environment configuration.
Overview
The storage system automatically determines where to save files based on the enviroment environment variable:
enviroment=AWS: Files are saved to AWS S3enviroment=SYSTEMor unset: Files are saved to local file system
Architecture
Core Components
-
DataStorageHandler (Abstract Base Class)
- Defines the interface for all storage implementations
- Provides common functionality like path normalization
-
DataStorageService (Factory/Coordinator)
- Determines which storage backend to use based on environment
- Provides a unified interface for the rest of the application
-
S3DataStorageService (S3 Implementation)
- Handles file operations with AWS S3
- Requires AWS credentials and S3 bucket configuration
-
SystemDataStorageService (Local Implementation)
- Handles file operations with local file system
- Default behavior when not using S3
Usage
Basic Usage
from asset_model_data_storage.data_storage_service import DataStorageService
# Initialize storage service (automatically detects environment)
storage_service = DataStorageService()
# Save a file
data = b"Hello, World!"
saved_path = storage_service.save_file("test/file.txt", data, "text/plain")
# Load a file
loaded_data = storage_service.load_file("test/file.txt")
# Check if file exists
exists = storage_service.file_exists("test/file.txt")
# Delete a file
deleted = storage_service.delete_file("test/file.txt")
With Model System
from b3.service.model.model import B3Model
# Model automatically uses the configured storage
model = B3Model()
# Training will save model and plots to the appropriate storage
model.train()
Environment Configuration
For S3 Storage
Set these environment variables:
export enviroment=AWS
export S3_BUCKET_NAME=your-bucket-name
export AWS_ACCESS_KEY_ID=your-access-key
export AWS_SECRET_ACCESS_KEY=your-secret-key
export AWS_REGION=us-east-1 # Optional, defaults to us-east-1
For Local Storage
export enviroment=SYSTEM
# or leave enviroment unset
File Types Supported
The system supports various file types with appropriate MIME type detection:
- Images: PNG, JPEG, GIF
- Models: Joblib, Pickle files
- Data: CSV, JSON, TXT
- Documents: PDF
- Generic: Binary files
Integration Points
The storage system is designed to be integrated into any application that needs to abstract file storage, such as model saving, plot generation, or evaluation result storage. You can use the DataStorageService directly in your codebase.
-
Model Saving Service (
model_saving_service.py)- Saves trained models using the configured storage
-
Plotter (
plotter.py)- Saves generated plots using the configured storage
-
Model Evaluation Service (
model_evaluation_service.py)- Saves evaluation visualizations using the configured storage
Error Handling
The system includes comprehensive error handling:
- S3 Errors: Handles AWS credential issues, bucket access, and network problems
- Local Storage Errors: Handles file system permissions and disk space issues
- File Not Found: Consistent error handling across storage types
This will demonstrate the storage system with your current environment configuration.
Dependencies
For S3 Storage
boto3: AWS SDK for Pythonbotocore: Low-level AWS service client library (required by boto3)- AWS credentials configured (via environment variables, AWS CLI, or IAM roles)
For Local Storage
- No additional dependencies beyond standard Python libraries
Migration Notes
The storage system is backward compatible. Existing code will continue to work with local storage by default. To enable
S3 storage, simply set the enviroment=AWS environment variable and configure AWS credentials.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file asset_model_data_storage-1.0.0.tar.gz.
File metadata
- Download URL: asset_model_data_storage-1.0.0.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
820b99cb005b27b4bdfcbc17cb02754c586623a6f16c45941bb4d5cc599a166a
|
|
| MD5 |
ba789438bcf34706b331f19ab946d9d8
|
|
| BLAKE2b-256 |
bc5c1f591af35085f2c7b7d642fc89d0b96643f091ac94123cddb8cdc7474bdb
|
File details
Details for the file asset_model_data_storage-1.0.0-py3-none-any.whl.
File metadata
- Download URL: asset_model_data_storage-1.0.0-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55d766143cbfc9cefb3a51228603c28c9269fe43369f28de44042a757a335de3
|
|
| MD5 |
313b410c52cc7f1dc216851dbf3ed746
|
|
| BLAKE2b-256 |
c36cff86f0c95d313fd7f480c7c4933689ca8484254b47f923cf01dd4d3a92c4
|