简体   繁体   中英

Elasticsearch update id of each document to a value of another field in the document

在Elasticsearch中,如何将每个文档的ID替换为文档中另一个字段的值?

I don't think you can change the ids of existing documents in the index, but you can reindex them using the path parameter in your mapping. Here is a trivial example.

I set up a simple index, using the path parameter in the _id definition in the mapping, and added a few docs:

PUT /test_index
{
    "mappings": {
        "doc":{
            "_id": {
                "path": "number"
            },
            "properties": {
                "text_field": {
                    "type": "string"
                },
                "number": {
                    "type": "integer"
                }
            }
        }
    }
}

POST /test_index/doc/_bulk
{"index":{}}
{"text_field": "Apple TV","number":3}
{"index":{}}
{"text_field": "Apple iPhone","number":2}
{"index":{}}
{"text_field": "Apple MacBook","number":1}

Then if I search, I can see that the ids were set as I asked:

POST /test_index/_search
...
{
   "took": 2,
   "timed_out": false,
   "_shards": {
      "total": 5,
      "successful": 5,
      "failed": 0
   },
   "hits": {
      "total": 3,
      "max_score": 1,
      "hits": [
         {
            "_index": "test_index",
            "_type": "doc",
            "_id": "1",
            "_score": 1,
            "_source": {
               "text_field": "Apple MacBook",
               "number": 1
            }
         },
         {
            "_index": "test_index",
            "_type": "doc",
            "_id": "2",
            "_score": 1,
            "_source": {
               "text_field": "Apple iPhone",
               "number": 2
            }
         },
         {
            "_index": "test_index",
            "_type": "doc",
            "_id": "3",
            "_score": 1,
            "_source": {
               "text_field": "Apple TV",
               "number": 3
            }
         }
      ]
   }
}

Here's the code I used:

http://sense.qbox.io/gist/933bd839b2d524889e483f50c59c37ffaab2270a

您可以通过定义_id的映射来做到这一点,如此处id-mapping所述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM