-
-
Notifications
You must be signed in to change notification settings - Fork 220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MySQL backup freezing on active connection #372
Comments
This test case may not be relevant to our application, but I have a strong feeling that |
I'll take a look at this. |
MySQL support many storage engines and the So, I am thinking of making the Apart from that, I found the |
Any suggestion on this? @jonathan-s |
Hi @jerinpetergeorge, Thanks for asking again. I had missed the first message. Also well done on the research. Yes leaving single transaction as an optional flag sounds like the way to go. This flag might not be used for the other databases, so if we try to use this flag with another database I would make sure that a warning is visible saying that this flag does nothing for that database. |
Also, I'm not sure how many actually uses mongo. It's an odd choice for django to begin with. |
Sounds good to me.
Yeah, you are right. IMO, let's leave things for Mongo now. We can do that later if someone facing the issue with Mongo. |
Yes, that's the way to go. |
I was trying to write some end-to-end tests for #360 (and hence helping to complete #369). During the time I tried to generate the backup of the test database (or all databases). But, it hangs to infinity
How Reproduce
Then, run the suite by
python test_runner.py
Fix
Using the
--single-transaction
flag will solve this issue.The text was updated successfully, but these errors were encountered: