Added an abstract class to handle storing versioned assets. This way the core API doesn't change, and doesn't require much plumbing on behalf of the user since the API will find the version itself.
Details
Details
Added new unit tests to AssetStore
Diff Detail
Diff Detail
- Repository
- R1 dagster
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
python_modules/dagster/dagster/core/storage/asset_store.py | ||
---|---|---|
364 | Maybe remove this line? It would be helpful to include a line explaining that the version will be part of the addressing scheme. |
python_modules/dagster/dagster/core/storage/asset_store.py | ||
---|---|---|
354 | We should call this versioned_fs_asset_store for consistency |
Comment Actions
Removed VersionedAssetStore abstract class, and instead added a has_asset method to the base assetstore class.
Comment Actions
Fixed nits. Re-added VersionedAssetStore abstract class so that users are not forced to implement has_asset method