Indexing minions
Indexing for the Search service is performed by minions. The minions can index any commerce entity type as long as the supporting blocks and policies are available.
The indexing minions watch specific entity lists. An entity list is a membership list where entities are added (by type) at the time of creation; they are never removed from the list. Customers and Orders are examples of entity lists.
The Search plugin defines three types of indexing minions:
Incremental Index minion
The incremental index minion scans an incremental entity list periodically, and runs a pipeline operation to build and insert documents to be placed in the index.
The ListToWatch
parameter specifies the list that contains the indexable entities. This list name is also referenced in the SearchScopePolicy.
Full Index minion
The full index minion scans a full entity list on demand and runs a pipeline operation to build and insert documents to be placed in the index. If the index does not exist, the minion can create it. The ListToWatch
parameter specifies the list that contains the indexable entities. This list name is also referenced in the SearchScopePolicy.
The full index minion must be initiated manually. The WakeupInterval
parameter must be set to null
.
Delete Index Documents minion
The delete index document minion scans a transient entity list periodically, and runs a pipeline operation to remove documents from an index for entities that have been deleted from the system. The ListToWatch
parameter specifies a transient list name that contains the deleted entities. This list name is also referenced in the SearchScopePolicy.