-
- Downloads
Implement delete() in WineryObjStorage
We now allow to delete objects from Winery. The object is first marked as deleted in the shared base. This makes it inaccessible from further `get()` calls. If the object still in a RWShard, the relevant line in the `objects` table is deleted as well. To take care of removing the data in ROShards, a dedicated host able to map images in read-write mode can then call: swh objstorage winery clean-deleted-objects This will zero out any deleted object present in the images and remove their key from the indices. Object keys will then be removed from the shared database. Thanks to olasd for proposing several improvements over the initial submission. Addresses swh-alter#4
parent
9d4d3b93
No related branches found
No related tags found
Showing
- requirements-swh.txt 1 addition, 1 deletionrequirements-swh.txt
- swh/objstorage/backends/winery/objstorage.py 54 additions, 1 deletionswh/objstorage/backends/winery/objstorage.py
- swh/objstorage/backends/winery/roshard.py 11 additions, 0 deletionsswh/objstorage/backends/winery/roshard.py
- swh/objstorage/backends/winery/rwshard.py 7 additions, 0 deletionsswh/objstorage/backends/winery/rwshard.py
- swh/objstorage/backends/winery/sharedbase.py 33 additions, 0 deletionsswh/objstorage/backends/winery/sharedbase.py
- swh/objstorage/cli.py 50 additions, 0 deletionsswh/objstorage/cli.py
- swh/objstorage/tests/test_objstorage_winery.py 110 additions, 3 deletionsswh/objstorage/tests/test_objstorage_winery.py
Loading
Please register or sign in to comment