Elasticsearch의 URL 및 Request Body 질의 문구
2841 단어 elasticsearch
:
GET /movies/_search?q=2012&df=title&sort=year:desc&from=0&size=10&timeout=1s
{
"profile":"true"
}
구문 설명:
질의 예
GET /movies/_search?q=2012&df=title&sort=year:desc&from=0&size=10&timeout=1s
{
"profile": "true"
}
GET /_cat/indices
GET /movies/_search?q=title:"Beautiful Mind"
{
"profile": "true"
}
GET /movies/_search?q=title:Beautiful Mind
{
"profile": "true"
}
GET /movies/_search?q=title:(Beautiful Mind)
{
"profile": "true"
}
GET /movies/_search?q=title:(Beautiful AND Mind)
{
"profile": "true"
}
GET /movies/_search?q=title:(Beautiful %2BMind)
{
"profile": "true"
}
// [] {}
GET /movies/_search?q=year:{1980 TO 2000]
{
"profile": "true"
}
//
GET /movies/_search?q=year:>1980
{
"profile": "true"
}
// ( , , , )
GET /movies/_search?q=title:b*
{
"profile": "true"
}
//
GET /movies/_search?q=title:[bt]oy
{
"profile": "true"
}
//
GET /movies/_search?q=title:beautifl~1
{
"profile": "true"
}
//
GET /movies/_search?q=title:"Lord Rings"~2
{
"profile": "true"
}
Request Body Search
// Request Body Search
//
GET /kibana_sample_data_ecommerce/_search
{
"sort":[{"order_date":"desc"}],
"query": {
"match_all": {}
}
}
// source
GET /kibana_sample_data_ecommerce/_search
{
"_source":["order_date"],
"query": {
"match_all": {}
}
}
//
GET /kibana_sample_data_ecommerce/_search
{
"script_fields": {
"new_field": {
"script": {
"lang": "painless",
"source": "doc['order_date'].value+'_hello'"
}
}
},
"query": {
"match_all": {}
}
}
// Match Phrase
// or
POST movies/_search
{
"query": {
"match": {
"title": "Last Christmas"
}
}
}
// Last Christms title
POST movies/_search
{
"query": {
"match": {
"title": {
"query": "Last Christmas",
"operator": "and"
}
}
}
}
// slop
POST movies/_search
{
"query": {
"match_phrase": {
"title": {
"query": "one love",
"slop": 1
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
kafka connect e elasticsearch를 관찰할 수 있습니다.No menu lateral do dashboard tem a opção de connectors onde ele mostra todos os clusters do kafka connect conectados atu...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.