How to Work with multiple Entity Managers and Connections
Warning: You are browsing the documentation for Symfony 3.x, which is no longer maintained.
Read the updated version of this page for Symfony 7.1 (the current stable version).
You can use multiple Doctrine entity managers or connections in a Symfony application. This is necessary if you are using different databases or even vendors with entirely different sets of entities. In other words, one entity manager that connects to one database will handle some entities while another entity manager that connects to another database might handle the rest.
Note
Using multiple entity managers is pretty easy, but more advanced and not usually required. Be sure you actually need multiple entity managers before adding in this layer of complexity.
Caution
Entities cannot define associations across different entity managers. If you need that, there are several alternatives that require some custom setup.
The following configuration code shows how you can configure two entity managers:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
doctrine:
dbal:
default_connection: default
connections:
default:
driver: pdo_mysql
host: '%database_host%'
port: '%database_port%'
dbname: '%database_name%'
user: '%database_user%'
password: '%database_password%'
charset: UTF8
customer:
driver: pdo_mysql
host: '%database_host2%'
port: '%database_port2%'
dbname: '%database_name2%'
user: '%database_user2%'
password: '%database_password2%'
charset: UTF8
orm:
default_entity_manager: default
entity_managers:
default:
connection: default
mappings:
AppBundle: ~
AcmeStoreBundle: ~
customer:
connection: customer
mappings:
AcmeCustomerBundle: ~
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
<?xml version="1.0" encoding="UTF-8"?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:doctrine="http://symfony.com/schema/dic/doctrine"
xsi:schemaLocation="http://symfony.com/schema/dic/services
https://symfony.com/schema/dic/services/services-1.0.xsd
http://symfony.com/schema/dic/doctrine
https://symfony.com/schema/dic/doctrine/doctrine-1.0.xsd">
<doctrine:config>
<doctrine:dbal default-connection="default">
<doctrine:connection name="default"
driver="pdo_mysql"
host="%database_host%"
port="%database_port%"
dbname="%database_name%"
user="%database_user%"
password="%database_password%"
charset="UTF8"
/>
<doctrine:connection name="customer"
driver="pdo_mysql"
host="%database_host2%"
port="%database_port2%"
dbname="%database_name2%"
user="%database_user2%"
password="%database_password2%"
charset="UTF8"
/>
</doctrine:dbal>
<doctrine:orm default-entity-manager="default">
<doctrine:entity-manager name="default" connection="default">
<doctrine:mapping name="AppBundle"/>
<doctrine:mapping name="AcmeStoreBundle"/>
</doctrine:entity-manager>
<doctrine:entity-manager name="customer" connection="customer">
<doctrine:mapping name="AcmeCustomerBundle"/>
</doctrine:entity-manager>
</doctrine:orm>
</doctrine:config>
</container>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
$container->loadFromExtension('doctrine', [
'dbal' => [
'default_connection' => 'default',
'connections' => [
'default' => [
'driver' => 'pdo_mysql',
'host' => '%database_host%',
'port' => '%database_port%',
'dbname' => '%database_name%',
'user' => '%database_user%',
'password' => '%database_password%',
'charset' => 'UTF8',
],
'customer' => [
'driver' => 'pdo_mysql',
'host' => '%database_host2%',
'port' => '%database_port2%',
'dbname' => '%database_name2%',
'user' => '%database_user2%',
'password' => '%database_password2%',
'charset' => 'UTF8',
],
],
],
'orm' => [
'default_entity_manager' => 'default',
'entity_managers' => [
'default' => [
'connection' => 'default',
'mappings' => [
'AppBundle' => null,
'AcmeStoreBundle' => null,
],
],
'customer' => [
'connection' => 'customer',
'mappings' => [
'AcmeCustomerBundle' => null,
],
],
],
],
]);
In this case, you've defined two entity managers and called them default
and customer
. The default
entity manager manages entities in the
AppBundle and AcmeStoreBundle, while the customer
entity manager manages
entities in the AcmeCustomerBundle. You've also defined two connections, one
for each entity manager.
Note
When working with multiple connections and entity managers, you should be
explicit about which configuration you want. If you do omit the name of
the connection or entity manager, the default (i.e. default
) is used.
When working with multiple connections to create your databases:
1 2 3 4 5
# Play only with "default" connection
$ php bin/console doctrine:database:create
# Play only with "customer" connection
$ php bin/console doctrine:database:create --connection=customer
When working with multiple entity managers to update your schema:
1 2 3 4 5
# Play only with "default" mappings
$ php bin/console doctrine:schema:update --force
# Play only with "customer" mappings
$ php bin/console doctrine:schema:update --force --em=customer
If you do omit the entity manager's name when asking for it,
the default entity manager (i.e. default
) is returned:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// ...
class UserController extends Controller
{
public function indexAction()
{
// All 3 return the "default" entity manager
$entityManager = $this->getDoctrine()->getManager();
$entityManager = $this->getDoctrine()->getManager('default');
$entityManager = $this->get('doctrine.orm.default_entity_manager');
// Both of these return the "customer" entity manager
$customerEntityManager = $this->getDoctrine()->getManager('customer');
$customerEntityManager = $this->get('doctrine.orm.customer_entity_manager');
}
}
You can now use Doctrine just as you did before - using the default
entity
manager to persist and fetch entities that it manages and the customer
entity manager to persist and fetch its entities.
The same applies to repository calls:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
use AcmeStoreBundle\Entity\Customer;
use AcmeStoreBundle\Entity\Product;
// ...
class UserController extends Controller
{
public function indexAction()
{
// Retrieves a repository managed by the "default" em
$products = $this->getDoctrine()
->getRepository(Product::class)
->findAll()
;
// Explicit way to deal with the "default" em
$products = $this->getDoctrine()
->getRepository(Product::class, 'default')
->findAll()
;
// Retrieves a repository managed by the "customer" em
$customers = $this->getDoctrine()
->getRepository(Customer::class, 'customer')
->findAll()
;
}
}