Assume I have a big azure table storage, I want to clear it. as far as I know, I have two options
1. Find all entities and delete them
2. Delete the table, after a period of time, re-create it.
The first option takes too long since I have so many entities in this table.
The second option also need to wait because there is a period of waiting time before reuse the same table name.
I am wondering is there a better solution for this?