SOLR新手,尝试将大型文档流式传输到我的SolrCloud实例上。我现在对类型并不挑剔,所以一切都是字符串。
相关字段:(取自schema.xml)
<field name="student_count" type="string" indexed="true" stored="true"/>
尝试插入:
2.5
错误:
"java.lang.NumberFormatException":
Error adding field 'student_count'='2.5' msg=For input string: \"2.5\"
我想知道为什么更新不起作用,是不是没有拿起我的架构?为什么SOLR在预定义模式已经是字符串时尝试将字符串转换为数字?