Hi there!
Just wondering what is the best practice to wait until batch operation (e.g. files batch deletion) is completed? Specifically, how often should I call /delete_batch/check endpoint (to know the progress or error/completion) in case I performing the operation from a backend? Since no time estimation provided for an operation (as far as I understand), should I check like just every 1s, 5s, 10s? Whether the check timeout better be incremental or constant?
And for the sake of completeness, how much such approach could be better comparing with sequential files deletion one by one? Do rate limits apply if make a lot of consequent requests that do not intersect? For example, my case is deleting about 100-200 files, each up to 5 MB.
Thanks!