-
Notifications
You must be signed in to change notification settings - Fork 2
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
Issue with Multisite and MySQL 8 #32
Comments
Argh; It should only run once and then set a site option that the tables are complete. I'll add that prefix, confirm it's only running once, and get a release out this week. |
Thank you |
THANK YOU. I look forward to hearing if this fixes the issue. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We are using the plugin in WP VIP multisite and it is filling our logs with errors related to database creation calls. The VIP support team had the following observations:
Problem
Inside editoria11y-accessibility-checker/editoria11y.php from line 181 to line 246 there is logic to alter the database and add these CONSTRAINT
ADD CONSTRAINT ed11y_results_pid
ADD CONSTRAINT ed11y_dismissal_pid
The issue with this is that MySQL 8 requires the CONSTRAINT symbol to be unique for the entire database documentation reference. This code is attempting to add this constraint when it already exists for your wp_2_ site:
SELECT TABLE_NAME, CONSTRAINT_NAME FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_TYPE = 'FOREIGN KEY' ORDER BY CONSTRAINT_NAME;
+------------------------+-------------------------------+
| TABLE_NAME | CONSTRAINT_NAME |
+------------------------+-------------------------------+
| wp_2_ed11y_dismissals | ed11y_dismissal_pid |
| wp_2_ed11y_results | ed11y_results_pid |
This basically means that any other sites with the plugin activated will attempt to create these ed11y_results_pid and ed11y_dismissal_pid constraints, but under MySQL8 will throw this duplicate key error. If we weren't on MySQL8 it should work but I think that logic between 181 and 246 could be improved to better support multisite. It's not so much a VIP-specific issue but a MySQL 8 issue, but I think it can be improved so that it only creates the constraint once.
Right now the plugin is configured to run these queries to add the constraint with each request and will attempt to drop and recreate these constraints even if it exists. This is a concern since it adds database activity with each request and could be a bigger concern with spikes in origin requests. It should only have to create the constraint once and ideally save the result in the object cache so that it does not need to check the existence as frequently on the database.
Recommendation
Recommend adding in the uniqueness for constraints similar to and also avoid dropping and recreating the constraint on each request.
// Generate unique constraint names
$constraint_results_pid = $wpdb->prefix . 'ed11y_results_pid';
$constraint_dismissal_pid = $wpdb->prefix . 'ed11y_dismissal_pid';
The text was updated successfully, but these errors were encountered: