索引失败.回滚所有更改. (Solr数据导入) [英] Indexing failed. Rolled back all changes. (Solr DataImport)

查看:205
本文介绍了索引失败.回滚所有更改. (Solr数据导入)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我尝试运行domain.com:8080/solr/dataimport?command=full-import时,出现错误Indexing failed. Rolled back all changes.

When I try to run domain.com:8080/solr/dataimport?command=full-import, I get the error Indexing failed. Rolled back all changes.

没有其他错误消息通知我什么时候出错?有什么建议吗?

There's no additional error message to inform me what when wrong? Any suggestions?

data-config.xml

 <dataConfig>

    <dataSource 
        name="mysql"
        driver="com.mysql.jdbc.Driver" 
        url="jdbc:mysql://localhost/databasename" 
        user="myusername" 
        password="mypassword" />

    <document>

        <entity 
            name="posts" 
            datasource="mysql"
            query="select id, title, description from posts"
            deltaQuery="select id, title, description from posts where updated_at > '${dataimporter.last_index_time}'">\
        </entity>
        <field column="id" name="id" indexed="true" stored="true" />
        <field column="title" name="title" indexed="true" stored="true" />
        <field column="description" name="description" indexed="true" stored="true" />

    </document>

</dataConfig>

输出

<response>
  <lst name="responseHeader">
    <int name="status">0</int>
    <int name="QTime">0</int>
  </lst>
    <lst name="initArgs">
    <lst name="defaults">
    <str name="config">/usr/local/solr/conf/data-config.xml</str>
  </lst>
</lst>
<str name="command">full-import</str>
<str name="status">idle</str>
<str name="importResponse"/>
<lst name="statusMessages">
  <str name="Time Elapsed">0:0:12.227</str>
  <str name="Total Requests made to DataSource">0</str>
  <str name="Total Rows Fetched">0</str>
  <str name="Total Documents Processed">0</str>
  <str name="Total Documents Skipped">0</str>
  <str name="Full Dump Started">2012-08-16 14:50:07</str>
  <str name="">Indexing failed. Rolled back all changes.</str>
  <str name="Rolledback">2012-08-16 14:50:08</str>
</lst>
<str name="WARNING">
  This response format is experimental. It is likely to change in the future.
</str>
</response>

登录

Aug 16, 2012 3:15:28 PM org.apache.solr.common.SolrException log
  SEVERE: Full Import failed:java.lang.RuntimeException: java.lang.RuntimeException: org.apache.solr.handler.dataimport.DataImportHandlerException: Could not load driver: com.mysql.jdbc.Driver Processing Document # 1
    at org.apache.solr.handler.dataimport.DocBuilder.execute(DocBuilder.java:264)
    at org.apache.solr.handler.dataimport.DataImporter.doFullImport(DataImporter.java:375)
    at org.apache.solr.handler.dataimport.DataImporter.runCmd(DataImporter.java:445)
    at org.apache.solr.handler.dataimport.DataImporter$1.run(DataImporter.java:426)
  Caused by: java.lang.RuntimeException: org.apache.solr.handler.dataimport.DataImportHandlerException: Could not load driver: com.mysql.jdbc.Driver Processing Document # 1
    at org.apache.solr.handler.dataimport.DocBuilder.buildDocument(DocBuilder.java:621)
    at org.apache.solr.handler.dataimport.DocBuilder.doFullDump(DocBuilder.java:327)
    at org.apache.solr.handler.dataimport.DocBuilder.execute(DocBuilder.java:225)
    ... 3 more

推荐答案

所有错误信息都在日志​​文件中(通常是:catalina.out)

All info about what went wrong is in the log file (usually: catalina.out)

这篇关于索引失败.回滚所有更改. (Solr数据导入)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆