zoukankan      html  css  js  c++  java
  • es中如何定位不合法搜索

    GET /test_index/test_type/_validate/query?explain
    {
      "query": {
        "math": {
          "test_field": "test"
        }
      }
    }

    {
      "valid": false,
      "error": "org.elasticsearch.common.ParsingException: no [query] registered for [math]"
    }

    GET /test_index/test_type/_validate/query?explain
    {
      "query": {
        "match": {
          "test_field": "test"
        }
      }
    }

    {
      "valid": true,
      "_shards": {
      "total": 1,
      "successful": 1,
      "failed": 0
    },
    "explanations": [{
      "index": "test_index",
      "valid": true,
      "explanation": "+test_field:test #(#_type:test_type)"
    }]
    }

    一般用在那种特别复杂庞大的搜索下,比如你一下子写了上百行的搜索,这个时候可以先用validate api去验证一下,搜索是否合法

  • 相关阅读:
    FileUpload组件
    国际化
    dbutils
    BeanUtils
    c3p0连接池]
    JDBC代码模板
    JDBC基础与连接sql2012
    JSP以及JSP解析原理
    Tomcat使用,部署
    JAVA---反射
  • 原文地址:https://www.cnblogs.com/qinjf/p/8530980.html
Copyright © 2011-2022 走看看