Hi, @ash batch delete is still supported - here's a sample:
The sample shows a batch with various upsert/update operations, but this could be all 'delete' operations and yes, you could more efficiently delete asynchronously by doing the operations concurrently rather than one by one
Something like this:
delete_tasks = [client.delete_entity(partition_key=str(0), row_key=c) for c in customer_list]
await asyncio.wait(delete_tasks)
there are various other tools in the asyncio module for running tasks concurrently:
https://docs.python.org/3/library/asyncio-task.html#waiting-primitives
I hope this information helps
Regards
Geetha