Skip to main content

ElasticsearchOptions

Configuration options for the ElasticsearchPlugin.

Signature

host

propertystring
Default:'http://localhost'

The host of the Elasticsearch server. May also be specified in clientOptions.node.

port

propertynumber
Default:9200

The port of the Elasticsearch server. May also be specified in clientOptions.node.

connectionAttempts

propertynumber
Default:10

Maximum amount of attempts made to connect to the ElasticSearch server on startup.

connectionAttemptInterval

propertynumber
Default:5000

Interval in milliseconds between attempts to connect to the ElasticSearch server on startup.

clientOptions

propertyClientOptions

Options to pass directly to the Elasticsearch Node.js client. For example, to set authentication or other more advanced options. Note that if the node or nodes option is specified, it will override the values provided in the host and port options.

indexPrefix

propertystring
Default:'vendure-'

Prefix for the indices created by the plugin.

indexSettings

propertyobjectv1.2.0
Default:{}

These options are directly passed to index settings. To apply some settings indices will be recreated.

Example

Ts

A more complete example can be found in the discussion thread How to make elastic plugin to search by substring with stemming.

indexMappingProperties

property{ [indexName: string]: object; }v1.2.0
Default:{}

This option allow to redefine or define new properties in mapping. More about elastic mapping After changing this option indices will be recreated.

Example

Ts

To reference a field defined by customProductMappings or customProductVariantMappings, you will need to prefix the name with 'product-<name>' or 'variant-<name>' respectively, e.g.:

Example

Ts

reindexProductsChunkSize

propertynumberv2.1.7
Default:2500

Products limit chunk size for each loop iteration when indexing products.

reindexBulkOperationSizeLimit

propertynumberv2.1.7
Default:3000

Index operations are performed in bulk, with each bulk operation containing a number of individual index operations. This option sets the maximum number of operations in the memory buffer before a bulk operation is executed.

searchConfig

propertySearchConfig

Configuration of the internal Elasticsearch query.

customProductMappings

property{ [fieldName: string]: CustomMapping< [Product, ProductVariant[], LanguageCode, Injector, RequestContext] >; }

Custom mappings may be defined which will add the defined data to the Elasticsearch index and expose that data via the SearchResult GraphQL type, adding a new customMappings, customProductMappings & customProductVariantMappings fields.

The graphQlType property may be one of String, Int, Float, Boolean, ID or list versions thereof ([String!] etc) and can be appended with a ! to indicate non-nullable fields.

The public (default = true) property is used to reveal or hide the property in the GraphQL API schema. If this property is set to false it's not accessible in the customMappings field but it's still getting parsed to the elasticsearch index.

This config option defines custom mappings which are accessible when the "groupByProduct" or "groupBySKU" input options is set to true (Do not set both to true at the same time). In addition, custom variant mappings can be accessed by using the customProductVariantMappings field, which is always available.

Example

Ts

Example

Graphql

customProductVariantMappings

property{ [fieldName: string]: CustomMapping<[ProductVariant, LanguageCode, Injector, RequestContext]>; }

This config option defines custom mappings which are accessible when the "groupByProduct" and "groupBySKU" input options are both set to false. In addition, custom product mappings can be accessed by using the customProductMappings field, which is always available.

Example

Graphql

bufferUpdates

propertybooleanv1.3.0
Default:false

If set to true, updates to Products, ProductVariants and Collections will not immediately trigger an update to the search index. Instead, all these changes will be buffered and will only be run via a call to the runPendingSearchIndexUpdates mutation in the Admin API.

This is very useful for installations with a large number of ProductVariants and/or Collections, as the buffering allows better control over when these expensive jobs are run, and also performs optimizations to minimize the amount of work that needs to be performed by the worker.

hydrateProductRelations

propertyArray<EntityRelationPaths<Product>>v1.3.0
Default:[]

Additional product relations that will be fetched from DB while reindexing. This can be used in combination with customProductMappings to ensure that the required relations are joined before the product object is passed to the valueFn.

Example

Ts

hydrateProductVariantRelations

propertyArray<EntityRelationPaths<ProductVariant>>v1.3.0
Default:[]

Additional variant relations that will be fetched from DB while reindexing. See hydrateProductRelations for more explanation and a usage example.

extendSearchInputType

property{ [name: string]: PrimitiveTypeVariations<GraphQlPrimitive>; }v1.3.0
Default:{}

Allows the SearchInput type to be extended with new input fields. This allows arbitrary data to be passed in, which can then be used e.g. in the mapQuery() function or custom scriptFields functions.

Example

Ts

This allows the search query to include these new fields:

Example

Graphql

extendSearchSortType

propertystring[]v1.4.0
Default:[]

Adds a list of sort parameters. This is mostly important to make the correct sort order values available inside input parameter of the mapSort option.

Example

Ts

will extend the SearchResultSortParameter input type like this:

Example

GraphQl

Configuration options for the internal Elasticsearch query which is generated when performing a search.

Signature

facetValueMaxSize

propertynumber
Default:50

The maximum number of FacetValues to return from the search query. Internally, this value sets the "size" property of an Elasticsearch aggregation.

collectionMaxSize

propertynumberv1.1.0
Default:50

The maximum number of Collections to return from the search query. Internally, this value sets the "size" property of an Elasticsearch aggregation.

totalItemsMaxSize

propertynumber | booleanv1.2.0
Default:10000

The maximum number of totalItems to return from the search query. Internally, this value sets the "track_total_hits" property of an Elasticsearch query. If this parameter is set to "True", accurate count of totalItems will be returned. If this parameter is set to "False", totalItems will be returned as 0. If this parameter is set to integer, accurate count of totalItems will be returned not bigger than integer.

multiMatchType

property'best_fields' | 'most_fields' | 'cross_fields' | 'phrase' | 'phrase_prefix' | 'bool_prefix'
Default:'best_fields'

Defines the multi match type used when matching against a search term.

boostFields

Set custom boost values for particular fields when matching against a search term.

priceRangeBucketInterval

propertynumber

The interval used to group search results into buckets according to price range. For example, setting this to 2000 will group into buckets every $20.00:

Json

mapQuery

property( query: any, input: ElasticSearchInput, searchConfig: DeepRequired<SearchConfig>, channelId: ID, enabledOnly: boolean, ctx: RequestContext, ) => any

This config option allows the the modification of the whole (already built) search query. This allows for e.g. wildcard / fuzzy searches on the index.

Example

Ts

scriptFields

property{ [fieldName: string]: CustomScriptMapping<[ElasticSearchInput]> }v1.3.0

Sets script_fields inside the elasticsearch body which allows returning a script evaluation for each hit.

The script field definition consists of three properties:

  • graphQlType: This is the type that will be returned when this script field is queried via the GraphQL API. It may be one of String, Int, Float, Boolean, ID or list versions thereof ([String!] etc) and can be appended with a ! to indicate non-nullable fields.
  • context: determines whether this script field is available when grouping by product. Can be product, variant or both.
  • scriptFn: This is the function to run on each hit. Should return an object with a script property, as covered in the Elasticsearch script fields docs

Example

Ts

mapSort

property(sort: ElasticSearchSortInput, input: ElasticSearchInput) => ElasticSearchSortInputv1.4.0
Default:{}

Allows extending the sort input of the elasticsearch body as covered in Elasticsearch sort docs

The sort input parameter contains the ElasticSearchSortInput generated for the default sort parameters "name" and "price". If neither of those are applied it will be empty.

Example

Ts

A more generic example would be a sort function based on a product location like this:

Example

Ts

Configuration for boosting the scores of given fields when performing a search against a term.

Boosting a field acts as a score multiplier for matches against that field.

Signature

productName

propertynumber
Default:1

Defines the boost factor for the productName field.

productVariantName

propertynumber
Default:1

Defines the boost factor for the productVariantName field.

description

propertynumber
Default:1

Defines the boost factor for the description field.

sku

propertynumber
Default:1

Defines the boost factor for the sku field.

Was this chapter helpful?
Report Issue
Edited Feb 23, 2026·Edit this page