﻿---
title: Enrich processor
description: The enrich processor can enrich documents with data from another index. See enrich data section for more information about how to set this up. 
url: https://www.elastic.co/elastic/docs-builder/docs/3016/reference/enrich-processor/enrich-processor
products:
  - Elasticsearch
---

# Enrich processor
The `enrich` processor can enrich documents with data from another index. See [enrich data](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/manage-data/ingest/transform-enrich/data-enrichment) section for more information about how to set this up.


| Name             | Required | Default      | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
|------------------|----------|--------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `policy_name`    | yes      | -            | The name of the enrich policy to use.                                                                                                                                                                                                                                                                                                                                                                                                                               |
| `field`          | yes      | -            | The field in the input document that matches the policies match_field used to retrieve the enrichment data. Supports [template snippets](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/manage-data/ingest/transform-enrich/ingest-pipelines#template-snippets).                                                                                                                                                                                |
| `target_field`   | yes      | -            | Field added to incoming documents to contain enrich data. This field contains both the `match_field` and `enrich_fields` specified in the [enrich policy](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-enrich-put-policy). Supports [template snippets](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/manage-data/ingest/transform-enrich/ingest-pipelines#template-snippets).                                        |
| `ignore_missing` | no       | false        | If `true` and `field` does not exist, the processor quietly exits without modifying the document                                                                                                                                                                                                                                                                                                                                                                    |
| `override`       | no       | true         | If processor will update fields with pre-existing non-null-valued field. When set to `false`, such fields will not be touched.                                                                                                                                                                                                                                                                                                                                      |
| `max_matches`    | no       | 1            | The maximum number of matched documents to include under the configured target field. The `target_field` will be turned into a json array if `max_matches` is higher than 1, otherwise `target_field` will become a json object. In order to avoid documents getting too large, the maximum allowed value is 128.                                                                                                                                                   |
| `shape_relation` | no       | `INTERSECTS` | A spatial relation operator used to match the [geoshape](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/elasticsearch/mapping-reference/geo-shape) of incoming documents to documents in the enrich index. This option is only used for `geo_match` enrich policy types. See [Spatial Relations](/elastic/docs-builder/docs/3016/reference/query-languages/query-dsl/query-dsl-shape-query#_spatial_relations) for operators and more information. |
| `description`    | no       | -            | Description of the processor. Useful for describing the purpose of the processor or its configuration.                                                                                                                                                                                                                                                                                                                                                              |
| `if`             | no       | -            | Conditionally execute the processor. See [Conditionally run a processor](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/manage-data/ingest/transform-enrich/ingest-pipelines#conditionally-run-processor).                                                                                                                                                                                                                                      |
| `ignore_failure` | no       | `false`      | Ignore failures for the processor. See [Handling pipeline failures](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/manage-data/ingest/transform-enrich/ingest-pipelines#handling-pipeline-failures).                                                                                                                                                                                                                                            |
| `on_failure`     | no       | -            | Handle failures for the processor. See [Handling pipeline failures](https://docs-v3-preview.elastic.dev/elastic/docs-builder/docs/3016/manage-data/ingest/transform-enrich/ingest-pipelines#handling-pipeline-failures).                                                                                                                                                                                                                                            |
| `tag`            | no       | -            | Identifier for the processor. Useful for debugging and metrics.                                                                                                                                                                                                                                                                                                                                                                                                     |