ElasticSearch6.3脚本更新

使用上篇文章创建的索引进行学习:https://www.cnblogs.com/wangymd/p/11200996.html

官方文档:https://www.elastic.co/guide/en/elasticsearch/painless/6.3/painless-examples.html 

 

1、脚本更新指定字段

方式1:

POST test_index/test_type/4/_update
{
  "script":{
    "source":"ctx._source.count = 10"
  }
}

方式2:

POST test_index/test_type/4/_update
{
  "script":{
    "source":"ctx._source.count = params.count",
    "params": {
      "count":20
    }
  }
}

POST test_index/test_type/4/_update

{
  "script" : {
    "source": "ctx._source.count++"  #自增
  }
}

POST test_index/test_type/4/_update
{
  "script" : {
    "source": "ctx._source.count--"  #自减
  }

2、数组添加值

索引增加字段

PUT test_index/test_type/_mapping
{
  "properties": {
    "tags" : {
        "type": "text"
    }
  }
}

索引字段设置数组值

POST test_index/test_type/4/_update
{
  "doc": {
    "tags":["aa"]
  }
}

索引字段添加数组值

注意字段无数据时直接添加会发生错误。

POST test_index/test_type/4/_update
{
  "script":{
    "source":"ctx._source.tags.add(params.tags)",
    "params": {
      "tags":"bb"
    }
  }
}

3、添加字段

POST test_index/test_type/4/_update
{
  "script" : "ctx._source.date = '2019-07-25'"  #字段名和字段值
}

4、删除字段

POST test_index/test_type/4/_update
{
  "script" : "ctx._source.remove('date')"
}

5、复杂的脚本

①根据不同条件执行不同的命令

POST test_index/test_type/4/_update
{
  "script" : {
    "source": "if (ctx._source.tags.contains(params.tag)) { ctx.op = 'delete' } else { ctx.op = 'none' }",  #tags包含aa"进行删除",其他误操作
    "lang": "painless",
    "params" : {
      "tag" : "aa"
    }
  }
}

 

转载于:https://www.cnblogs.com/wangymd/p/11244856.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值