首页 > 其他分享 >es部分请求语句

es部分请求语句

时间:2023-03-15 09:34:41浏览次数:36  
标签:语句 vic 请求 keyword text ignore above type es

1、根据文档id更新

POST vic_score_much_index_49_202206/_doc/506499385/_update
{
	"doc": {
		"is_issue": 0
	}
}

2、根据条件更新

POST vic_score_much_index_49_202206/_doc/_update_by_query
{
	"query": {
		"match": {
			"contact_id": "2022061712242692642637S1"
		}
	},
	"script": {
		"source": "ctx._source['is_issue']=0"
	}
}


POST vic_score_much_index_49_202206/_doc/_update_by_query
{
	"query": {
		"term": {
			"plan_id": 12955
		}
	},
	"script": {
		"source": "ctx._source['is_issue']=0"
	}
}

3、查询某个字段不为空

{
	"query": {
		"exists": {
			"field": "human_plan_span"
		}
	}
}

4.es索引创建模板(GET _template/vic_asr_log_template(get查看,put创建))

PUT _template/vic_asr_log_template

{
    "order": 3,
    "index_patterns": [
        "vic_asr_log_*"
    ],
    "settings": {
        "index": {
            "number_of_shards": "3",
            "number_of_replicas": "1"
        }
    },
    "mappings": {
        "properties": {
            "asrTime": {
                "type": "text",
                "fields": {
                    "keyword": {
                        "ignore_above": 256,
                        "type": "keyword"
                    }
                }
            },
            "contactId": {
                "type": "text",
                "fields": {
                    "keyword": {
                        "ignore_above": 256,
                        "type": "keyword"
                    }
                }
            },
            "asrText": {
                "type": "text",
                "fields": {
                    "keyword": {
                        "ignore_above": 7000,
                        "type": "keyword"
                    }
                }
            },
            "asrJson": {
                "type": "text",
                "fields": {
                    "keyword": {
                        "ignore_above": 256,
                        "type": "keyword"
                    }
                }
            },
            "asrDateTime": {
                "type": "long"
            }
        }
    },
    "aliases": {
        
    }
}

5.es修改索引属性(ignore_above)(原ignore_above为256,现修改为7000,极限8000(网上查询))

PUT vic_asr_log_202403/_mappings

{
    "properties": {
        "asrText": {
            "type": "text",
            "fields": {
                "keyword": {
                    "ignore_above": 7000,
                    "type": "keyword"
                }
            }
        }
    }
}

6.es新增数据

POST http://10.125.128.187:3888/vic_asr_log_202303/_doc

{
"name":"张三"
}

7.

标签:语句,vic,请求,keyword,text,ignore,above,type,es
From: https://www.cnblogs.com/xu-m/p/17217306.html

相关文章

  • nodejs安装使用express
    NodeJs快速搭建Express框架1.用Express应用程序生成器express-generator进行快速搭建。1.1安装express-generator命令npminstallexpress-generator-g1.2生成......
  • 5 Cookie和Session案例开发
    ​ 案例:通过HttpSession判断用户是否登录需求:实现登录一次即可,在一次会话内,可以反复多次访问WEB-INF/welcome.html,如果没有登录过,跳转到登录页,登录成功后,可以......
  • 5 Cookie和Session案例开发
    ​ 案例:通过HttpSession判断用户是否登录需求:实现登录一次即可,在一次会话内,可以反复多次访问WEB-INF/welcome.html,如果没有登录过,跳转到登录页,登录成功后,可以......
  • es6都新增了什么?
    一.var,let,const区别1.变量提升:var存在变量提升,即变量可在声明前调用,值为undefined,let,const不存在变量提升2.暂时性死区:var不存在,let,const存在,只有等到声明变量那一刻才......
  • K8S对外服务之Ingress
    一、Ingress简介service的作用体现在两个方面,对集群内部,它不断跟踪pod的变化,更新endpoint(端点)中对应pod的对象,提供了ip不断变化的pod的服务发现机制;对集群外部,他类似负载......
  • PyQt-Fluent-Widgets:一个 Fluent Design 风格的组件库
    简介这是一个使用PyQt/PySide编写的FluentDesign风格的组件库,包含最常用的组件,支持亮暗主题无缝切换。实际上此项目是从GrooveMusic项目剥离出来的子项目,github......
  • 1. 初识Kubernetes
    WhatIsK8S狭义上讲,K8S是一个应用编排器。绝大部分情况下,它被用于 编排 容器化 的云原生微服务应用。具体的,它可以实现:自动化部署应用按需对应用进行扩容或缩容应......
  • 【总结】2022-03-10 Books Queries
    BooksQueries题意有一个序列,初始为空。有\(q\)次询问,每次询问为以下三种操作中的一种:Lx,一个大写字母L,和一个编号x,表示将x放入序列最左边。Rx,一个大写字母R......
  • Mac 开发 | IDEA 设置 Mybatis 的XML SQL 语句提示
    1、IDEA链接数据库2、IDEA设置数据库方言为链接的数据库方言3、IDEASQL解析范围设置4、可以在mapperxml中写select测试了。......
  • Dynamics 365 Reporting Services 报表日志目录
     默认目录为 <drive>\ProgramFiles\MicrosoftSQLServer\MSRS130.MSSQLSERVER\ReportingServices\LogFiles。  排查ReportingServices报表问题:https://lea......