使用 solr 建立索引
我正在使用 solrj 来索引数据,我在 schema.xml 中创建了一些新字段,当我尝试通过 java 索引数据时,我必须使用所有新字段,如果我不使用这个新字段之一,我有一个异常 org.apache.solr.common.solreException 错误请求 我可以使用我选择的字段对数据建立索引吗?
I'm using solrj to index data, I have created some new field in schema.xml, when I try to index data by java I have to use all new fields, if I don't use one of this new field I have an exception org.apache.solr.common.solrexception bad request
Can I index Data with fields that I choose?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为 schema.xml 中所有定义的字段都将属性“required”设置为“true”。
将属性设置为 false,每个文档就不再需要该字段。
Because all of your defined fields in schema.xml has set the attribute "required" as "true".
Set the attribute to false and the field is not longer necessary for each document.