unable to read:dataimport.properties


apache solr:4.1.0 tomcat:7.0.29 mysqlDriver:mysql-connector-java-5.1.24-bin.jar 已将mysql驱动放入solr_home/db/lib中,dataimport也加载成功,但是执行导入时就会报no uniquekey specified in schema和unable to read:dataimport.properties错误. db-data-config.xml:


 <dataConfig>
<dataSource type="jdbcDataSource" driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/user" user="root">
    <document>
        <entity name="users" query="select lUserId,sUserName,sName from users">
            <field column="lUserId" name="id"/>
            <field column="sUserName" name="userName"/>
            <field column="sName" name="name"/>
       </entity>
   </document>
</dataConfig>

查出的字段已经在schema.xml中添加过了。

solr mysql

ukbug 11 years, 6 months ago

今天又试了一下,将db-data-config.xml中type="jdbcDataSource"删除就可以了。

黑丝腹黑控 answered 11 years, 6 months ago

Your Answer