使用 Solr DataImportHandler 缺少 url 字段

发布于 2024-08-19 12:54:59 字数 996 浏览 6 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

信仰 2024-08-26 12:54:59

我发现这个问题是什么,在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文