python Fielddata is disabled on text fields
# 执行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的更多相关文章
- Fielddata is disabled on text fields by default. Set fielddata=true on [gender] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memor
		ES进行如下聚合操作时,会报如题所示错误: ➜ Downloads curl -XPOST 'localhost:9200/bank/_search?pretty' -d ' { "size ... 
- (转载)es进行聚合操作时提示Fielddata is disabled on text fields by default
		原文地址:http://blog.csdn.net/u011403655/article/details/71107415 根据es官网的文档执行 GET /megacorp/employee/_se ... 
- (转)es进行聚合操作时提示Fielddata is disabled on text fields by default
		根据es官网的文档执行 GET /megacorp/employee/_search { "aggs": { "all_interests": { " ... 
- Kibana创建索引成功,但一直不显示出来(Fielddata is disabled on text fields by default. Set fielddata=true........)
		现象 把EFK整个集群搭建完成后,通过Kibana操作界面创建索引(如图1),我创建了lile-zabbix*的索引,显示是创建成功了,但是只要我在重新刷新一次,已经创建的索引就“消失了”.后通过查看 ... 
- Elasticsearch 报错:Fielddata is disabled on text fields by default.  Set `fielddata=true` on [`your_field_name`] in order to load  fielddata in memory by uninverting the inverted index.
		Elasticsearch 报错: Fielddata is disabled on text fields by default. Set `fielddata=true` on [`your_fi ... 
- Elasticsearch 6.2.3版本 string 类型字段 排序 报错 Fielddata is disabled on text fields by default
		背景说明 最近在做一个 Elasticsearch 的分页查询,并且对查询结果按照特定字段进行排序的功能. 但是执行结果却报错,报错信息如下: { "error": { " ... 
- Elasticsearch 6.2.3版本 执行聚合报错 Fielddata is disabled on text fields by default
		背景说明 执行<Elasticsearch 权威指南>的示例,在执行聚合查询的时候,报错 Fielddata is disabled on text fields by default. ... 
- elasticsearch报Fielddata is disabled on text fields by default
		我刚玩elk没几天,今天启动kibana之后执行查询看见elasticsearch报了一个错误 Caused by: java.lang.IllegalArgumentException: Field ... 
- Kibana error " Fielddata is disabled on text fields by default. Set fielddata=true on [publisher] ..."
		Reason of this error:Fielddata can consume a lot of heap space, especially when loading high cardina ... 
随机推荐
- iOS-合成图片(长图)
			合成图片 直接合成图片还是比较简单的,现在的难点是要把,通过文本输入的一些基本数据也合成到一张图片中,如果有多长图片就合成长图. 现在的实现方法是,把所有的文本消息格式化,然后绘制到一个UILable ... 
- 【题解搬运】PAT_A1016 Phone Bills
			从我原来的博客上搬运.原先blog作废. 题目 A long-distance telephone company charges its customers by the following rul ... 
- Qt 贪吃蛇小游戏
			简单的实现了走和变大的样子,剩下的还在完善 贴代码 #include "mainwindow.h" #include "ui_mainwindow.h" #in ... 
- Spotlight on MySQL
			聚光灯在MySQL 1.Sessios会话Total Users:总用户数前连接到MySQL服务器的用户会话总数Active Users:活跃用户此控件表示连接到当前正在执行SQL语句或其他数据库请求 ... 
- 在Android上,怎样与Kotlin一起使用Retrofit(KAD21)
			作者:Antonio Leiva 时间:Apr 18, 2017 原文链接:https://antonioleiva.com/retrofit-android-kotlin/ 这是又一个例子,关于怎样 ... 
- Python第三方库之openpyxl(3)
			Python第三方库之openpyxl(3) 区域图 区域图类似于折线图,绘图线下面的区域会被填充,通过将分组设置为“standard”.“stacked”或“percentStacked”,可以获得 ... 
- CodeForces-1132F Clear the String
			题目链接 https://vjudge.net/problem/CodeForces-1132F 题面 Description You are given a string \(s\) of leng ... 
- remix-ide的三种使用方式
			如何实现一个hello word语句输出 这里写图片描述 {{uploading-image-404522.png(uploading...)}} 代码演示运行方式 VS code IDE,代码编写, ... 
- tarball
			环境:Linux系统 命令:tar 关键:tar打包出来的文件有没有进行压缩所得到的文件称谓不同 仅是打包,得到的文件我们称为tarfile 包含压缩,得到的文件我们称为tarball 
- CentOS6.8单独编译安装PHP gd库扩展
			# PHP-GD安装 #在安装之前可以先更新一下yum源,可以使用国内的阿里云源 yum -y install libjpeg-turbo-devel yum -y install freetype- ... 
