Elasticsearch Elasticsearch Upsert

By Opster Team

Updated: May 23, 2023

| 3 min read

Quick links

Elasticsearch Upsert: Optimizing Update and Insert Operations

Introduction

What is Upsert in Elasticsearch?

In Elasticsearch, upsert is a powerful operation that allows you to perform both update and insert actions in a single request. This is particularly useful when you want to update a document if it exists, or insert a new document if it does not.

In this article, we will discuss the benefits of using upsert, how to perform upsert operations, and provide examples to help you optimize your Elasticsearch usage.

Benefits of Using Upsert

  1. Efficiency: Upsert operations can save you time and resources by combining update and insert actions into a single request. This reduces the number of requests made to the Elasticsearch cluster and can improve overall performance.
  2. Consistency: By using upserts, you can ensure that your data remains consistent, even if multiple clients are attempting to update or insert the same document simultaneously. Upsert operations are atomic, which means that they are either fully completed or not executed at all, preventing partial updates or inserts.

Performing Upsert Operations

To perform an upsert operation in Elasticsearch, you can use the Update API with the `upsert` parameter. The `upsert` parameter allows you to specify the document that should be inserted if the document does not already exist. The Update API also accepts a `doc` parameter, which contains the partial document to be updated if the document exists.

How to perform an upsert operation in Elasticsearch?

  1. Prepare the Update API request

    The request should include the index, document type (if applicable), and document ID. You can use the HTTP POST or PUT method for the request.

  2. Specify the `doc` parameter

    This parameter contains the partial document to be updated if the document exists. You can use the `script` parameter to define custom update logic if necessary.

  3. Specify the `upsert` parameter

    This parameter contains the document that should be inserted if the document does not already exist.

  4. Send the request:

    Execute the Update API request to perform the upsert operation.

Example

Let’s assume we have an index called `products` and we want to update the price of a product with ID `1`. If the product does not exist, we want to insert a new document with the same ID and a default price.

Here’s the Update API request for this upsert operation:

POST /products/_update/1
{
"doc": {
"price": 100
},
"upsert": {
"price": 50
}
}

In this example, if the product with ID `1` exists, its price will be updated to `100`. If the product does not exist, a new document with ID `1` and a price of `50` will be inserted.

Conclusion

Upsert operations in Elasticsearch can help you optimize your update and insert actions by combining them into a single request. By using the Update API with the `upsert` parameter, you can ensure data consistency and improve the efficiency of your Elasticsearch usage. Make sure to consider upserts when designing your Elasticsearch data management strategies.

How helpful was this guide?

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?