作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在映射中有以下内容。 id有时可以为null,所以我正在使用null_value:1。
"Id" : {
"type" : "integer",
"store" : true,
"doc_values" : true,
"null_value" : 1,
"index":"not_analyzed"
},
[2017-12-24 10:42:42,601][DEBUG][action.bulk ][test-2017-12-24]
[7] failed to execute bulk item (index) index {[test-2017-12-24][test]
org.elasticsearch.index.mapper.MapperParsingException: failed to parse [Id]
at
Caused by: java.lang.NumberFormatException: For input string: "null"
at
java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:580)
at java.lang.Integer.parseInt(Integer.java:615)
最佳答案
从错误中您可以看到您尝试在Id字段中为字符串"null"
编制索引,该字符串无法解析为(可为空)整数。尝试输入null
(不带引号)
关于elasticsearch - elasticsearch null_value替换不适用于整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47962076/
是否可以将对象用于 null_value在 ElasticSearch 中映射? { "properties-v3": { "mappings": { "prope
我正在尝试为“文本”字段定义“null_value”(版本 5.1.1)。像这样: PUT students { "mappings": { "student": { "pro
我遇到了一个与 elasticsearch 相关的问题 geo_point 从数据库导入时。 如果 的值,我的映射效果很好龙 或 纬度 字段包含实际值。 现在可能发生某些行包含 空值 为 经纬度如果我
我是一名优秀的程序员,十分优秀!