码迷,mamicode.com
首页 > 编程语言 > 详细

python Fielddata is disabled on text fields

时间:2018-10-10 12:15:01      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:csdn   key   size   www   class   http   doc   def   body   

# 执行https://www.elastic.co/guide/cn/elasticsearch/guide/current/_aggregation_test_drive.html中的例子时报错Fielddata is disabled on text fields ,只需要在查询的fields后面加上.kewwords即可
# 参考https://blog.csdn.net/u011403655/article/details/71107415/
def curl_es(data):
    res = es.search(index="cars", doc_type="transactions", body=data)
    print(res)

body = {
    "size" : 0,
    "aggs" : {
        "popular_colors" : {
            "terms" : {
              "field" : "color.keyword"  #加上keyword就不报错了
            }
        }
    }
}
curl_es(body)

python Fielddata is disabled on text fields

标签:csdn   key   size   www   class   http   doc   def   body   

原文地址:https://www.cnblogs.com/lajiao/p/9765144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!