Table of Contents
Questions & Feedback
Found a typo or an error?
Want to improve this document? Edit it.
Need support or have a technical question?
Post to the user mailing-list.
Master Symfony2 fundamentals
Symfony hosting done right
Discover the SensioLabs Support
DoctrineMongoDBBundle Configuration
DoctrineMongoDBBundle Configuration¶
Sample Configuration¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # app/config/config.yml
doctrine_mongodb:
connections:
default:
server: mongodb://localhost:27017
options: {}
default_database: hello_%kernel.environment%
document_managers:
default:
mappings:
AcmeDemoBundle: ~
filters:
filter-name:
class: Class\Example\Filter\ODM\ExampleFilter
enabled: true
metadata_cache_driver: array # array, apc, xcache, memcache
|
If you wish to use memcache to cache your metadata, you need to configure the
Memcache instance; for example, you can do the following:
- YAML
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# app/config/config.yml doctrine_mongodb: default_database: hello_%kernel.environment% connections: default: server: mongodb://localhost:27017 options: {} document_managers: default: mappings: AcmeDemoBundle: ~ metadata_cache_driver: type: memcache class: Doctrine\Common\Cache\MemcacheCache host: localhost port: 11211 instance_class: Memcache
- XML
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?xml version="1.0" ?> <container xmlns="http://symfony.com/schema/dic/services" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:doctrine_mongodb="http://symfony.com/schema/dic/doctrine/odm/mongodb" xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd http://symfony.com/schema/dic/doctrine/odm/mongodb http://symfony.com/schema/dic/doctrine/odm/mongodb/mongodb-1.0.xsd"> <doctrine_mongodb:config default-database="hello_%kernel.environment%"> <doctrine_mongodb:document-manager id="default"> <doctrine_mongodb:mapping name="AcmeDemoBundle" /> <doctrine_mongodb:metadata-cache-driver type="memcache"> <doctrine_mongodb:class>Doctrine\Common\Cache\MemcacheCache</doctrine_mongodb:class> <doctrine_mongodb:host>localhost</doctrine_mongodb:host> <doctrine_mongodb:port>11211</doctrine_mongodb:port> <doctrine_mongodb:instance-class>Memcache</doctrine_mongodb:instance-class> </doctrine_mongodb:metadata-cache-driver> </doctrine_mongodb:document-manager> <doctrine_mongodb:connection id="default" server="mongodb://localhost:27017"> <doctrine_mongodb:options> </doctrine_mongodb:options> </doctrine_mongodb:connection> </doctrine_mongodb:config> </container>
Mapping Configuration¶
Explicit definition of all the mapped documents is the only necessary configuration for the ODM and there are several configuration options that you can control. The following configuration options exist for a mapping:
typeOne ofannotations,xml,yml,phporstaticphp. This specifies which type of metadata type your mapping uses.dirPath to the mapping or entity files (depending on the driver). If this path is relative it is assumed to be relative to the bundle root. This only works if the name of your mapping is a bundle name. If you want to use this option to specify absolute paths you should prefix the path with the kernel parameters that exist in the DIC (for example %kernel.root_dir%).prefixA common namespace prefix that all documents of this mapping share. This prefix should never conflict with prefixes of other defined mappings otherwise some of your documents cannot be found by Doctrine. This option defaults to the bundle namespace +Document, for example for an application bundle calledAcmeHelloBundle, the prefix would beAcme\HelloBundle\Document.aliasDoctrine offers a way to alias document namespaces to simpler, shorter names to be used in queries or for Repository access.is_bundleThis option is a derived value fromdirand by default is set to true if dir is relative proved by afile_exists()check that returns false. It is false if the existence check returns true. In this case an absolute path was specified and the metadata files are most likely in a directory outside of a bundle.
To avoid having to configure lots of information for your mappings you should follow these conventions:
- Put all your documents in a directory
Document/inside your bundle. For exampleAcme/HelloBundle/Document/. - If you are using xml, yml or php mapping put all your configuration files
into the
Resources/config/doctrine/directory suffixed with mongodb.xml, mongodb.yml or mongodb.php respectively. - Annotations is assumed if a
Document/but noResources/config/doctrine/directory is found.
The following configuration shows a bunch of mapping examples:
doctrine_mongodb:
document_managers:
default:
mappings:
MyBundle1: ~
MyBundle2: yml
MyBundle3: { type: annotation, dir: Documents/ }
MyBundle4: { type: xml, dir: Resources/config/doctrine/mapping }
MyBundle5:
type: yml
dir: my-bundle-mappings-dir
alias: BundleAlias
doctrine_extensions:
type: xml
dir: %kernel.root_dir%/../src/vendor/DoctrineExtensions/lib/DoctrineExtensions/Documents
prefix: DoctrineExtensions\Documents\
alias: DExt
Filters¶
You can easily add filters to a document manager by using the following syntax:
1 2 3 4 5 6 7 8 9 10 | doctrine_mongodb:
document_managers:
default:
filters:
filter-one:
class: Class\ExampleOne\Filter\ODM\ExampleFilter
enabled: true
filter-two:
class: Class\ExampleTwo\Filter\ODM\ExampleFilter
enabled: false
|
Filters are used to append conditions to the queryBuilder regardless of where the query is generated.
Multiple Connections¶
If you need multiple connections and document managers you can use the following syntax:
Now you can retrieve the configured services connection services:
1 2 | $conn1 = $container->get('doctrine_mongodb.odm.conn1_connection');
$conn2 = $container->get('doctrine_mongodb.odm.conn2_connection');
|
And you can also retrieve the configured document manager services which utilize the above connection services:
1 2 | $dm1 = $container->get('doctrine_mongodb.odm.dm1_document_manager');
$dm2 = $container->get('doctrine_mongodb.odm.dm2_document_manager');
|
Connecting to a pool of mongodb servers on 1 connection¶
It is possible to connect to several mongodb servers on one connection if you are using a replica set by listing all of the servers within the connection string as a comma separated list.
- YAML
1 2 3 4 5
doctrine_mongodb: # ... connections: default: server: 'mongodb://mongodb-01:27017,mongodb-02:27017,mongodb-03:27017'
Where mongodb-01, mongodb-02 and mongodb-03 are the machine hostnames. You can also use IP addresses if you prefer.
Retrying Connections and Queries¶
Doctrine MongoDB supports automatically retrying connections and queries after encountering an exception, which is helpful when dealing with situations such as replica set failovers. This alleviates much of the need to catch exceptions from the MongoDB PHP driver in your application and manually retry operations.
You may specify the number of times to retry connections and queries via the retry_connect and retry_query options in the document manager configuration. These options default to zero, which means that no operations will be retried.
Full Default Configuration¶
- YAML
doctrine_mongodb: document_managers: # Prototype id: connection: ~ database: ~ logging: true auto_mapping: false retry_connect: 0 retry_query: 0 metadata_cache_driver: type: ~ class: ~ host: ~ port: ~ instance_class: ~ mappings: # Prototype name: mapping: true type: ~ dir: ~ prefix: ~ alias: ~ is_bundle: ~ connections: # Prototype id: server: ~ options: connect: ~ persist: ~ timeout: ~ replicaSet: ~ username: ~ password: ~ proxy_namespace: MongoDBODMProxies proxy_dir: %kernel.cache_dir%/doctrine/odm/mongodb/Proxies auto_generate_proxy_classes: false hydrator_namespace: Hydrators hydrator_dir: %kernel.cache_dir%/doctrine/odm/mongodb/Hydrators auto_generate_hydrator_classes: false default_document_manager: ~ default_connection: ~ default_database: default





is a trademark of Fabien Potencier. All rights reserved.