From 3e4ea74e19c80cebcdba8c9cbd4bbdc26444a309 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Tue, 12 Jan 2021 03:05:07 -0800 Subject: [PATCH] Updated S3 Gateway FAQ (markdown) --- S3-Gateway-FAQ.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/S3-Gateway-FAQ.md b/S3-Gateway-FAQ.md index 7455f58..ba6425f 100644 --- a/S3-Gateway-FAQ.md +++ b/S3-Gateway-FAQ.md @@ -26,9 +26,9 @@ See https://github.com/chrislusf/seaweedfs/wiki/Path-Specific-Configuration ## How to speed up bucket deletion? -One common unexpected problem is the deletion can be slow. To delete a file, we need to delete the file content on the volume servers and delete the file entry from the filer store. It is almost the same amount of work as adding a file. If there are millions of times, it can take a long time to delete. +One common unexpected problem is the deletion can be slow. To delete a file, we need to delete the file content on the volume servers and delete the file entry from the filer store. It is almost the same amount of work as adding a file. If there are millions of files, it can take a long time to delete. -If you need to create large buckets and delete them often, you may choose `leveldb3` as the filer store. +When you need to create large buckets and delete them often, you may choose `leveldb3` as the filer store. `leveldb3` can automatically create a separate LevelDB instance for each bucket. So bucket deletion is as simple as deleting the LevelDB instance files and the collection of volume files.