We are renaming many files using the "2/files/move_v2" API, and we perform the operation on many files for a single user parallely. We get many "too_many_write_operations" error.
I know about the "lock contention" but not sure why it should affect this because this is just a rename.
Questions:
- Why are we getting this error while moving a file? Does move also acquires the lock?
- Is there any other API to just perform rename to avoid move?