Important

You are browsing the documentation for version 3.1 of OroCommerce, OroCRM and OroPlatform, which is no longer maintained. Read version 5.1 (the latest LTS version) of the Oro documentation to get up-to-date information.

See our Release Process documentation for more information on the currently supported and upcoming releases.

Console Commands

OroSearchBundle provides several console commands to interact with the search index.

oro:search:index

This command performs indexation of the specified entities. The command requires two arguments - class name (short notation or FQCN) and a list of identifiers (at least one is required). If the specified entity exists, then the corresponding search index data will be updated, If it does not, index data will be removed. This command is used for queued indexation.

Single entity indexation:

1> php bin/console oro:search:index OroUserBundle:User 1
2Started index update for entities.

Multiple entities indexation:

1> php bin/console oro:search:index "Oro\Bundle\ContactBundle\Entity\Contact" 1 2 3 4 5 6 7 8 9 10
2Started index update for entities.

oro:search:reindex

This command performs full reindexation of all entities. It has one optional argument that allows to reindex only entities of specified type.

Reindexation itself might take a lot of time for a big amount of data, so it would be a good idea to run it by schedule (e.g, once a day).

All entities reindexation:

1> php bin/console oro:search:reindex
2Started reindex task for all mapped entities

One entity reindexation:

1> bin/console oro:search:reindex OroUserBundle:User
2Started reindex task for "OroUserBundle:User" entity

Normally, reindexation is performed immediately after the reindex command is issued. However, it can also be scheduled to be performed in the background by the Message Queue consumers.

Advantages of this mode: * asynchronous * can be multithreaded * scalable

You will need a configured Message Queue and at least one running consumer worker to use this mode.

Please use the following parameter to enable it:

1> bin/console oro:search:reindex --scheduled