-
|
Say I have an S3 bucket that is a super large directory. If I delete this S3 bucket, how does SeaweedFS know what to delete from the filer store? If it can find the filer entries to delete them, then could the list functionality still work in some other way? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Good question! SeaweedFS would not know which entries to delete. Even if it knows, deleting the entries one by one would take forever and not realistic. Hopefully there should not be too many super large directories. Most likely you will have just one, if at all. If you need to create and later drop it, you can combine https://github.com/chrislusf/seaweedfs/wiki/Path-Specific-Filer-Store with the https://github.com/chrislusf/seaweedfs/wiki/Super-Large-Directories , so that the path-specific store can be dropped manually, and remove the collection manually. |
Beta Was this translation helpful? Give feedback.
Good question! SeaweedFS would not know which entries to delete. Even if it knows, deleting the entries one by one would take forever and not realistic.
Hopefully there should not be too many super large directories. Most likely you will have just one, if at all.
If you need to create and later drop it, you can combine https://github.com/chrislusf/seaweedfs/wiki/Path-Specific-Filer-Store with the https://github.com/chrislusf/seaweedfs/wiki/Super-Large-Directories , so that the path-specific store can be dropped manually, and remove the collection manually.