crossplane-contrib / provider-sql

An SQL provider for @crossplane
https://crossplane.io
Apache License 2.0
100 stars 57 forks source link

fix: remove unneeded flush privileges call for mysql #141 #147

Open mariusziemke opened 11 months ago

mariusziemke commented 11 months ago

Description of your changes

Fixes #141

According to mysql documentation executing FLUSH PRIVILEGES is only required If you modify the grant tables directly using statements such as INSERT, UPDATE, or DELETE (which is not recommended), the changes have no effect on privilege checking until you either tell the server to reload the tables or restart it. (dev.mysql.com/doc/refman/8.0/en/privilege-changes.html). Other references:

stackoverflow.com/questions/36463966/mysql-when-is-flush-privileges-in-mysql-really-needed docs.pingcap.com/tidb/dev/sql-statement-flush-privileges

I have:

How has this code been tested

The change has been running in our various dev and production environments for a few weeks now. We tried to break our database clusters by adding and removing lots of users concurrently and everything works as expected. Before removing the Flush Privileges call we had a lot of trouble in our replicated db setup which tried to protect itself from inconsistency by just shutting down after adding more then one user at the same time.

mariusziemke commented 9 months ago

Hi, can anyone look into this PR? Thanks!

Jibux commented 5 months ago

We are interested on this fix because we have issue with our percona xtradb cluster witch can be stuck because of FLUSH PRIVILEGES. Thanks in advance for the reviewer(s).

fgaillot-qosenergy commented 5 months ago

Also interested for having this merged for the next release, thanks in advance.

Duologic commented 1 month ago

Would you mind rebasing?

mariusziemke commented 1 month ago

@Duologic done.

Duologic commented 3 weeks ago

Ah sorry, missed that this would conflict with #171, this might even simplify it more.