From: Peter van Dijk Date: Fri, 10 Jan 2014 13:44:36 +0000 (+0100) Subject: note innodb/binlog issue for 3.3.1 X-Git-Tag: rec-3.6.0-rc1~250 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=85563f2617a4ea755e560354082e77c7fc00dd12;p=thirdparty%2Fpdns.git note innodb/binlog issue for 3.3.1 --- diff --git a/pdns/docs/pdns.xml b/pdns/docs/pdns.xml index 8113846ac2..8c6d4ec3a6 100644 --- a/pdns/docs/pdns.xml +++ b/pdns/docs/pdns.xml @@ -12452,6 +12452,11 @@ create index recordorder on records (domain_id, ordername text_pattern_ops); alter table tsigkeys add constraint c_lowercase_name check (((name)::text = lower((name)::text))); + + The (gmysql-)innodb-read-committed flag was added to the gmysql backend, and enabled by default. + This interferes with statement replication. Please set your binlog_format to MIXED or ROW, or disable binlog. + Alternatively, disable (gmysql-)innodb-read-committed but be aware that this may cause deadlocks during AXFRs. +