I have a very big GCS bucket (several TB), with several sub directories, each with a couple terabytes of data.
I want to delete some of those folders.
I tried to use gsutil from a Cloud Shell, but it is taking ages.
For reference, here is the command I'm using:
gsutil -m rm -r "gs://BUCKET_NAME/FOLDER"
I was looking at this question, and thought maybe I could use that, but is seems like it can't filter by folder name, and I can't filter by any other thing as folders have some mixed content.
So far, my last resort would be to wait until the folders I want to delete are "old", and set the lifecycle rule accordingly, but that could take too long.
Are there any other ways to make this faster?