without haste but without rest

엘라스틱서치 파이썬 쿼리 샘플 본문

Database/ElasticSearch

엘라스틱서치 파이썬 쿼리 샘플

JinungKim 2021. 9. 29. 18:07

단일 필드

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": "엘라스틱서치"}},
            ]
        }
    }
)
Comments