You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi!
I'm using Matomo 3.3 with Percona XtraDB Cluster with 3 nodes. When I insert a new site, I see in mysql log this warning: WSREP: Percona-XtraDB-Cluster doesn't recommend use of DML command on a table (piwik3.piwik3_plugin_setting) without an explicit primary key with pxc_strict_mode = PERMISSIVE.
Checking the table structure:
show create table piwik3_site_setting;
piwik3_site_setting | CREATE TABLE piwik3_site_setting ( idsite int(10) unsigned NOT NULL, plugin_name varchar(60) NOT NULL, setting_name varchar(255) NOT NULL, setting_value longtext NOT NULL,
KEY idsite (idsite,plugin_name)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 |
Second developer: "Percona XtraDB Cluster cannot properly propagate certain write operations to tables that do not have primary keys defined"
I ask if this situation maybe considered an enhacement for futures releases of Matomo, modifying the actual structure of the table and adding the primary key.
Thank you.
The text was updated successfully, but these errors were encountered:
Hi @robocoder
Tks by the reply.
How I can run all tests to check if the database still updated?
I tried:
php /var/www/html/piwik/console core:update
Everything is already up to date.
Hi!
I'm using Matomo 3.3 with Percona XtraDB Cluster with 3 nodes. When I insert a new site, I see in mysql log this warning: WSREP: Percona-XtraDB-Cluster doesn't recommend use of DML command on a table (piwik3.piwik3_plugin_setting) without an explicit primary key with pxc_strict_mode = PERMISSIVE.
Checking the table structure:
show create table piwik3_site_setting;
piwik3_site_setting | CREATE TABLE
piwik3_site_setting
(idsite
int(10) unsigned NOT NULL,plugin_name
varchar(60) NOT NULL,setting_name
varchar(255) NOT NULL,setting_value
longtext NOT NULL,KEY
idsite
(idsite
,plugin_name
)) ENGINE=InnoDB DEFAULT CHARSET=utf8 |
Second developer: "Percona XtraDB Cluster cannot properly propagate certain write operations to tables that do not have primary keys defined"
I ask if this situation maybe considered an enhacement for futures releases of Matomo, modifying the actual structure of the table and adding the primary key.
Thank you.
The text was updated successfully, but these errors were encountered: