ElasticSearch update

本文涉及的产品
检索分析服务 Elasticsearch 版,2核4GB开发者规格 1个月
简介: ElasticSearch update

1 - 单个更新指定字段


update table set first_time = 1 where id=1
POST test/doc/1/_update
{
  "doc": {
    "first_time": 1
  }
}

2 - 批量更新字段


update table set first_time = last_time where first_time=0 and last_time !=0
POST test/_update_by_query
{
  "script": {
    "source": "ctx._source.first_time=ctx._source.last_time"
  },
  "query": {
    "bool": {
      "must": [
        {
          "term": {
            "first_time": 0
          }
        }
      ],
      "must_not": [
        {
          "term": {
            "last_time": 0
          }
        }
      ]
    }
  }
}


相关实践学习
使用阿里云Elasticsearch体验信息检索加速
通过创建登录阿里云Elasticsearch集群,使用DataWorks将MySQL数据同步至Elasticsearch,体验多条件检索效果,简单展示数据同步和信息检索加速的过程和操作。
ElasticSearch 入门精讲
ElasticSearch是一个开源的、基于Lucene的、分布式、高扩展、高实时的搜索与数据分析引擎。根据DB-Engines的排名显示,Elasticsearch是最受欢迎的企业搜索引擎,其次是Apache Solr(也是基于Lucene)。 ElasticSearch的实现原理主要分为以下几个步骤: 用户将数据提交到Elastic Search 数据库中 通过分词控制器去将对应的语句分词,将其权重和分词结果一并存入数据 当用户搜索数据时候,再根据权重将结果排名、打分 将返回结果呈现给用户 Elasticsearch可以用于搜索各种文档。它提供可扩展的搜索,具有接近实时的搜索,并支持多租户。
目录
相关文章
|
算法 Java 关系型数据库
Elasticsearch Document Update API详解、原理与示例
Elasticsearch Document Update API详解、原理与示例
Elasticsearch Document Update API详解、原理与示例
|
消息中间件 API 数据库
elasticsearch使用指南之Elasticsearch Document Update API详解、原理与示例
本节详细介绍了Document Update API的核心关键点以及实现要点,最后给出Demo展示如何在JAVA中使用Update API。
3104 0
|
8天前
|
Java Maven 开发工具
【ElasticSearch 】IK 分词器安装
【ElasticSearch 】IK 分词器安装
16 1
|
25天前
|
数据可视化 索引
elasticsearch head、kibana 安装和使用
elasticsearch head、kibana 安装和使用
|
2月前
|
存储 负载均衡 索引
linux7安装elasticsearch-7.4.0集群配置
linux7安装elasticsearch-7.4.0集群配置
113 0
|
24天前
|
Java Windows
windows下 安装 Elasticsearch报错warning: usage of JAVA_HOME is deprecated, use ES_JAVA_HOME
windows下 安装 Elasticsearch报错warning: usage of JAVA_HOME is deprecated, use ES_JAVA_HOME
29 0
|
25天前
|
搜索推荐 Java 大数据
ElasticSearch安装
ElasticSearch安装
|
24天前
|
JSON Unix Linux
Elasticsearch如何安装
Elasticsearch如何安装
|
8天前
|
存储 数据可视化 数据挖掘
【ElasticSearch】ElasticSearch安装
【ElasticSearch】ElasticSearch安装
22 2

热门文章

最新文章