diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2024-07-29 22:31:21 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2024-07-29 22:31:21 +0200 |
commit | 488c875393fa01fb3d9ff37750fcd851ee3ef94d (patch) | |
tree | ab2e5e892edb62170bcf92c4087147c9679d78fc /setup/projects/adei/vars | |
parent | f8263200baf2c97487549624fbb22fc228fed21a (diff) | |
download | ands-488c875393fa01fb3d9ff37750fcd851ee3ef94d.tar.gz ands-488c875393fa01fb3d9ff37750fcd851ee3ef94d.tar.bz2 ands-488c875393fa01fb3d9ff37750fcd851ee3ef94d.tar.xz ands-488c875393fa01fb3d9ff37750fcd851ee3ef94d.zip |
Ignore MySQL error 1062 (dublicate entries in unique column) as it breaks replication currently
Diffstat (limited to 'setup/projects/adei/vars')
-rw-r--r-- | setup/projects/adei/vars/mysql.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup/projects/adei/vars/mysql.yml b/setup/projects/adei/vars/mysql.yml index bb0b7f2..9b17fd7 100644 --- a/setup/projects/adei/vars/mysql.yml +++ b/setup/projects/adei/vars/mysql.yml @@ -94,7 +94,7 @@ mysql: - { name: "MYSQL_INNODB_FLUSH_LOG_TYPE", value: "2" } - { name: "MYSQL_INNODB_FLUSH_LOG_TIMEOUT", value: "300" } - { name: "MYSQL_SLAVE_WORKERS", value: "16" } - - { name: "MYSQL_SLAVE_SKIP_ERRORS", value: "1007,1008,1050,1051,1054,1060,1061,1068,1094,1146,1304,1359,1476,1537" } + - { name: "MYSQL_SLAVE_SKIP_ERRORS", value: "1007,1008,1050,1051,1054,1060,1061,1062,1068,1094,1146,1304,1359,1476,1537" } - { name: "MYSQL_BINLOG_FORMAT", value: "ROW" } mappings: - { name: "adei_slave", mount: "/var/lib/mysql/data" } |