Skip to content

Commit

Permalink
TASK: Update documentation to remove deprecated Doctrine connection
Browse files Browse the repository at this point in the history
Since doctrine/dbal 2.11 PrimaryReadReplicaConnection should be used.
This change updates the documentation to reflect this change.
See doctrine/dbal#4052 for details.
  • Loading branch information
DavidSporer committed Jan 4, 2021
1 parent 0b365c0 commit 0d0c328
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Neos.Flow/Documentation/TheDefinitiveGuide/PartIII/Persistence.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1138,12 +1138,12 @@ Doctrine tries to keep existing data as far as possible, avoiding lossy actions.
``flow:doctrine:migrationversion --version all --add`` to avoid migration
errors later.

Doctrine Connection Wrappers - Master/Slave Connections
Doctrine Connection Wrappers - Primary/Replica Connections
-------------------------------------------------------

Doctrine 2 allows to create Connection wrapper classes, that change the way Doctrine connects
to your database. A common use case is a master/slave replication setup, with one master server
and several slaves that share the load for all reading queries.
to your database. A common use case is a primary/replica setup, with one primary server
and several read replicas that share the load for all reading queries.
Doctrine already provides a wrapper for such a connection and you can configure Flow to use
that connection wrapper by setting the following options in your packages ``Settings.yaml``:

Expand All @@ -1153,28 +1153,28 @@ that connection wrapper by setting the following options in your packages ``Sett
Flow:
persistence:
backendOptions:
wrapperClass: 'Doctrine\DBAL\Connections\MasterSlaveConnection'
master:
wrapperClass: 'Doctrine\DBAL\Connections\PrimaryReadReplicaConnection'
primary:
host: '127.0.0.1' # adjust to your master database host
dbname: 'master' # adjust to your database name
user: 'user' # adjust to your database user
password: 'pass' # adjust to your database password
slaves:
slave1:
replicas:
replica1:
host: '127.0.0.1' # adjust to your slave database host
dbname: 'slave1' # adjust to your database name
dbname: 'replica1' # adjust to your database name
user: 'user' # adjust to your database user
password: 'pass' # adjust to your database password
With this setup, Doctrine will use one of the slave connections picked once per request randomly
With this setup, Doctrine will use one of the replica connections picked once per request randomly
for all queries until the first writing query (e.g. insert or update) is executed. From that point
on the master server will be used solely. This is to solve the problems of replication lag and
on the primary server will be used solely. This is to solve the problems of replication lag and
possibly inconsistent query results.

.. tip::

You can also setup the master database as a slave, if you want to also use it for load-balancing
reading queries. However, this might lead to higher load on the master database and should be
You can also setup the primary database as a replica, if you want to also use it for load-balancing
reading queries. However, this might lead to higher load on the primary database and should be
well observed.

Known issues
Expand Down

0 comments on commit 0d0c328

Please sign in to comment.