Error
Error Code:
3634
MySQL Error 3634: Too Many Concurrent Clones
Description
This error indicates that the MySQL server has reached its configured limit for concurrent clone operations. It prevents new cloning tasks from starting until existing ones complete or are cleared, ensuring system stability.
Error Message
Too many concurrent clone operations. Maximum allowed - %d.
Known Causes
3 known causesServer Concurrency Limit Reached
The MySQL server's `clone_max_concurrency` system variable defines the maximum number of simultaneous clone operations, and this limit has been hit.
Overlapping Clone Requests
Multiple administrative processes or users initiated clone operations concurrently, exceeding the server's capacity for parallel cloning.
Unfinished Clone Operations
Previous clone operations may be taking a long time to complete or have encountered an issue, consuming available slots and preventing new attempts.
Solutions
Coming SoonGeneral Troubleshooting Tips
- Check the error message carefully for specific details
- Review recent changes that might have caused the error
- Search for the exact error code in the official documentation
- Check log files for additional context
- Try restarting the application or service