使用 Solr DataImportHandler 缺少 url 字段
我是 Solr 新手,在使用 DataImportHandler 时遇到困难。服务器启动时我收到此消息:
一月 27, 2010 12:27:22 PM org.apache.solr.handler.dataimport.DataImportHandler processConfiguration
信息:处理 solrconfig.xml 中的配置:{config=dih-gensigdb-jdbc.xml} 一月 27, 2010 12:27:22 PM org.apache.solr.handler.dataimport.DataImporter loadDataConfig 信息:数据配置加载成功 2010 年 1 月 27 日 12:27:22 下午 org.apache.solr.handler.dataimport.DataImporter verifyWithSchema 信息: url 是 SolrSchema 中的必填字段。但在DataConfig中没有找到
我的 dataConfig 不包含 url 字段,但我不确定为什么需要它。当我使用 DIH 控制台并尝试调试配置时,我在文档导入期间收到以下错误:
org.apache.solr.common.SolrException:文档 [null] 缺少必填字段:url
我的 dataConfig 如下所示:
<代码><数据配置> <数据源名称=“jdbc”驱动程序=“oracle.jdbc.driver.OracleDriver” url =“jdbc:oracle:thin:@localhost:1521:xe” 用户=“genesigdb”密码=“genesigdb”/> <文档名称=“PMID”> <实体名称=“PMID”数据源=“jdbc”查询=“从发布中选择 PMID”>
I'm new to Solr and having difficulties with the DataImportHandler. I get this message when the server starts:
Jan 27, 2010 12:27:22 PM org.apache.solr.handler.dataimport.DataImportHandler processConfiguration
INFO: Processing configuration from solrconfig.xml: {config=dih-gensigdb-jdbc.xml}
Jan 27, 2010 12:27:22 PM org.apache.solr.handler.dataimport.DataImporter loadDataConfig
INFO: Data Configuration loaded successfully
Jan 27, 2010 12:27:22 PM org.apache.solr.handler.dataimport.DataImporter verifyWithSchema
INFO: url is a required field in SolrSchema . But not found in DataConfig
My dataConfig doesnt contain a url field, but i'm not sure why its required. When i use the DIH console and try to debug the config I get the following errors during document import:
org.apache.solr.common.SolrException: Document [null] missing required field: url
My dataConfig looks like this:<dataConfig>
<dataSource name="jdbc" driver="oracle.jdbc.driver.OracleDriver"
url="jdbc:oracle:thin:@localhost:1521:xe"
user="genesigdb" password="genesigdb"/>
<document name="PMID">
<entity name="PMID" dataSource="jdbc" query="SELECT PMID FROM PUBLICATION">
</entity>
</document>
</dataConfig>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现这个问题是什么,在 schema.xml 文件中有一个名为 unique key 的字段,它应该与 dataConfig.xml 中实体的 PK 相关
I found what this issue was, in the schema.xml file there is an field called unique key which should correlate with the PK of your entity in the dataConfig.xml