Elasticsearch - 向文档添加自定义字段/类型

时间:2016-10-10 11:32:02

标签: elasticsearch

要创建从elasticsearch到(旧)数据库的双向同步,我需要为elasticsearch中的每个文档提供附加信息。

因此我想在元信息中添加一个额外的类型/字段,如“_anotherType”:

{
    "_index" : "elastic",
    "_type" : "mytype",
    "_anotherType" : "justanothertype",
    "_id" : "AVdmHHg7S9-Jgvd36DT2",
    "_score" : 0.53454715,
    "_source" : {
        "consignee" : "Jackie Chan",
        "consignor" : "John Doe",
        "revenue" : "123456",
        "timestamp" : "1970-01-01 00:00:01"
    }
}

但是我怎样才能在每个文档中添加这样的信息?

谢谢和最好的问候