elaticsear no [query] registered for [filtered] 오류

1646 단어

1. 문제 설명


실행 문장:
 
GET /megacorp/employee/_search
{
    "query" : {
        "filtered" : {
            "filter" : {
                "range" : {
                    "age" : { "gt" : 30 } <1>
                }
            },
            "query" : {
                "match" : {
                    "last_name" : "smith" <2>
                }
            }
        }
    }
}

오류가 발생했습니다.
{
  "error": {
    "root_cause": [
      {
        "type": "parsing_exception",
        "reason": "no [query] registered for [filtered]",
        "line": 3,
        "col": 22
      }
    ],
    "type": "parsing_exception",
    "reason": "no [query] registered for [filtered]",
    "line": 3,
    "col": 22
  },
  "status": 400
}
 

  

2. 원인 및 해결


이유: 필터 질의가 사용되지 않고 ES 5.0에서 제거되었습니다.해결:bool/must/filter 조회 사용
GET /megacorp/employee/_search
{
    "query" : {
        "bool" : {
            "filter" : {
                "range" : {
                    "age" : { "gt" : 30 }
                }
            },
            "must" : {
                "match" : {
                    "last_name" : "smith"
                }
            }
        }
    }
}
 

  
 
다음으로 전송:https://www.cnblogs.com/slowcity/p/10042629.html

좋은 웹페이지 즐겨찾기