_update_by_query

 POST cq-tbpitem/_update_by_query
{
  "script": {
   // "source": "ctx._source.CUSTOMID='2700011';ctx._source.DWBM='1234' ", //更新多个字段
"source": "ctx._source.testupdate=ctx._source.CUSTOMID+'|'+ctx._source.REPORTNUM ",
    "lang": "painless"
  },
  "query": {
    "bool": {
      "must": [
        {
          "term": {
            "CUSTOMID": {
              "value": "1800621"
            }
          }
        },
        {
          "wildcard": {
            "SYSPRIMARYKEY": {
              "value": "*AA*"
            }
          }
        }
      ]
    }
  }
}
原文地址:https://www.cnblogs.com/zhangfeitaimengle/p/8990732.html