How to quickly release the capacity of scylladb?

I created a table through the Alterator interface and filled it with a large amount of data. Now I need to clean up the database space, so I deleted this table through AWS.

aws dynamodb delete-table --table-name ycsb

Through nodetool status, it can be seen that the cluster’s capacity has decreased, but the actual disk usage space has not decreased. I found that its data directory is still there. I am also unable to perform compact on this table because it no longer exists.
So how to quickly release cluster space? Do we have to wait for the tombstone time to expire and automatically clean it up? This has been too long.
Thanks!

By default, scylla takes a snapshot of a table right before it’s deleted, in case the data needs to be recovered.
To reclaim the storage space, the snapshot needs to be removed.