This version of the OpenSearch documentation is no longer maintained. For the latest version, see the current documentation. For information about OpenSearch version maintenance, see Release Schedule and Maintenance Policy.

Convert

The convert processor converts a field in a document to a different type, for example, a string to an integer or an integer to a string. For an array field, all values in the array are converted. The following is the syntax for the convert processor:

  1. {
  2. "convert": {
  3. "field": "field_name",
  4. "type": "type-value"
  5. }
  6. }

copy

Configuration parameters

The following table lists the required and optional parameters for the convert processor.

ParameterRequiredDescription
fieldRequiredThe name of the field that contains the data to be converted. Supports template snippets.
typeRequiredThe type to convert the field value to. The supported types are integer, long, float, double, string, boolean, ip, and auto. If the type is boolean, the value is set to true if the field value is a string true (ignoring case) and to false if the field value is a string false (ignoring case). If the value is not one of the allowed values, an error will occur.
descriptionOptionalA brief description of the processor.
ifOptionalA condition for running this processor.
ignore_failureOptionalIf set to true, failures are ignored. Default is false.
ignore_missingOptionalIf set to true, the processor does not modify the document if the field does not exist or is null. Default is false.
on_failureOptionalA list of processors to run if the processor fails.
tagOptionalAn identifier tag for the processor. Useful for debugging to distinguish between processors of the same type.
target_fieldOptionalThe name of the field in which to store the parsed data. If not specified, the value will be stored in the field field. Default is field.

Using the processor

Follow these steps to use the processor in a pipeline.

Step 1: Create a pipeline.

The following query creates a pipeline, named convert-price, that converts price to a floating-point number, stores the converted value in the price_float field, and sets the value to 0 if it is less than 0:

  1. PUT _ingest/pipeline/convert-price
  2. {
  3. "description": "Pipeline that converts price to floating-point number and sets value to zero if price less than zero",
  4. "processors": [
  5. {
  6. "convert": {
  7. "field": "price",
  8. "type": "float",
  9. "target_field": "price_float"
  10. }
  11. },
  12. {
  13. "set": {
  14. "field": "price",
  15. "value": "0",
  16. "if": "ctx.price_float < 0"
  17. }
  18. }
  19. ]
  20. }

copy

Step 2 (Optional): Test the pipeline.

It is recommended that you test your pipeline before you ingest documents.

To test the pipeline, run the following query:

  1. POST _ingest/pipeline/convert-price/_simulate
  2. {
  3. "docs": [
  4. {
  5. "_index": "testindex1",
  6. "_id": "1",
  7. "_source": {
  8. "price": "-10.5"
  9. }
  10. }
  11. ]
  12. }

copy

Response

The following example response confirms that the pipeline is working as expected:

  1. {
  2. "docs": [
  3. {
  4. "doc": {
  5. "_index": "testindex1",
  6. "_id": "1",
  7. "_source": {
  8. "price_float": -10.5,
  9. "price": "0"
  10. },
  11. "_ingest": {
  12. "timestamp": "2023-08-22T15:38:21.180688799Z"
  13. }
  14. }
  15. }
  16. ]
  17. }

Step 3: Ingest a document.

The following query ingests a document into an index named testindex1:

  1. PUT testindex1/_doc/1?pipeline=convert-price
  2. {
  3. "price": "10.5"
  4. }

copy

Step 4 (Optional): Retrieve the document.

To retrieve the document, run the following query:

  1. GET testindex1/_doc/1

copy