我检查了这个: Find documents with empty string value on elasticsearch
此外,我们没有_source(不存储数据)所以我们不能使用它:
{"filter": {"script": {"script": "_source._content.length() == 0"}
此:
{"from": 0, "size": 100, "query":{"term": {"name":""}}}
和此:
{"filter": {"missing": {"existence": true, "field": "name", "null_value": true}}, "query": {"match_all": {}}}
不起作用!
似乎stempel在“”(空字符串)上存储了某种值,它不是“”而不是null。