without haste but without rest
엘라스틱서치 파이썬 쿼리 샘플 본문
단일 필드
client = Elasticsearch(host="server:9200")
result = client.search(
index = "news-test",
query = {
"match": {
"@timestamp": "20210929",
}
}
)
다중 필드 조건
client = Elasticsearch(host="server:9200")
result = client.search(
index = "news-test",
query = {
"bool": {
"must": [
{"match": {"@timestamp": "20210929"}},
{"match": {"subject": "엘라스틱서치"}},
]
}
}
)
'Database > ElasticSearch' 카테고리의 다른 글
ElasticSearch 개념과 특징 (0) | 2021.12.10 |
---|---|
키바나 Elasticsearch built-in security features are not enabled. Without authentication, your cluster could be accessible to anyone. See 경고 메세지 제거하기 (0) | 2021.09.24 |
엘라스틱서치 ip 바인딩 후 시작 에러 (0) | 2021.09.23 |
Comments