Elasticsearch contaming Umlaut compliance not working

I have the following request:

res = es.search(index="index", body={"query": {
    "bool" : {
        "must" : {
            "match" : { "text" : "FlΓΌchtl*" }
        },
        "filter": {
            "range" : { "publish_date" : {"gte": "2015-08-30 00:00:00", "lt": "2016-01-01 00:00:00"}
            }
        }
    }
}}, size=10000)

      

When I do this query in Kibana, I get 3071 results, however, when I do it using the Python library, I get zero results. When I use words that do not contain Umlaute everything works fine. What am I doing wrong?

+3
python elasticsearch


source to share


No one has answered this question yet

Check out similar questions:

9540
What does the yield keyword do?
5504
Does Python have a ternary conditional operator?
5433
What if __name__ == "__main__": do?
3602
Does Python have a substring method "contains"?
2006
What does ** (double star / asterisk) and * (star / asterisk) do for parameters?
599
Solr vs ElasticSearch
40
Elasticsearch: find substring
0
How do I use a "filter" in an Elasticsearch query with Python?
0
How to combine ElasticSearch query with multi_match, boost, wildcard and filter?
0
Elasticsearch. Range query for dash strings



All Articles
Loading...
X
Show
Funny
Dev
Pics