3

我正在尝试 MySQL 数据库的数据导入处理程序。

我在 solrconfig.xml 中添加了 DIhandler,根据我的数据库方案创建了一个 data-config.xml,还在 schema.xml 中添加了一个不同的字段。我正在连接 MySQL 数据库

在我连接并运行后,dataimport?command=full-import我得到了这个响应

"00C:\solr\conf\data-config.xmlfull-importidle1102011-03-05 15:01:04Indexing completed.    Added/Updated: 0 documents. Deleted 0 documents.2011-03-05 15:01:042011-03-05  15:01:040:0:0.400This response format is experimental. It is likely to change in the future."

xml 文件在这个http://pastebin.com/iKebKGSZ

4

1 回答 1

1
<field column="manu" name="manu" />
<field column="id" name="id" />
<field column="weight" name="weight" />
<field column="price" name="price" />
<field column="popularity" name="popularity" />
<field column="instock" name="inStock" />
<field column="includes" name="includes" />

这些领域也在你的schema.xml吗?

我在 pastebin 链接中看不到它们。确保您的架构中也有所有字段。

于 2011-12-13T16:44:05.603 回答