1

在索引到 solr 时,我收到这样的错误。

 HTTP Status 500 - lazy loading error
 org.apache.solr.common.SolrException: lazy loading error at
 org.apache.solr.core.RequestHandlers$LazyRequestHandlerWrapper.getWrappedHandler(RequestHandlers.java:260)
 at org.apache.solr.core.RequestHandlers$LazyRequestHandlerWrapper.handleRequest(RequestHandlers.java:242)
 at org.apache.solr.core.SolrCore.execute(SolrCore.java:1376) at
 org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:365)
 at
 org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:260)
 at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
 at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
 at

形成的 URL 是:http://localhost:8080/solr/update/extract?Latitude=51.9125&Longitude=179.5&commit=true&waitFlush=true&waitSearcher=true&wt=javabin&version=2

(我已经在 Windows 机器上使用 Xampp 配置了 tomcat)

我一直在关注 SOF 和其他各种博客/论坛并尝试对其进行调试,但几个小时我都找不到任何东西。

我在 solr.xml 中添加了以下内容

<maxFieldLength>10000</maxFieldLength>
<writeLockTimeout>60000</writeLockTimeout>
<commitLockTimeout>60000</commitLockTimeout>

<lockType>simple</lockType>
<unlockOnStartup>true</unlockOnStartup>
<reopenReaders>true</reopenReaders>

<requestParsers enableRemoteStreaming="true" 
multipartUploadLimitInKB="2048000" />

<lst name="defaults">
<!--str name="echoParams">explicit</str-->
<!--int name="rows">10</int-->
<!--str name="df">text</str-->
<str name="Latitude">Latitude</str>
<str name="Longitude">Longitude</str>
</lst>

甚至尝试将以下内容添加到 solconfig.xml 并重新启动我得到的 tomcat

   <requestHandler name="/update/extract" class="org.apache.solr.handler.extraction.ExtractingRequestHandler"> 
     <lst name="defaults"> 
     <str name="ext.map.Last-Modified">last_modified</str> 
     <bool name="ext.ignore.und.fl">true</bool> 
     </lst> 
     </requestHandler> 

在 Java 控制台上显示错误:org.apache.solr.common.SolrException: Internal Server Error

  1. 我意识到这个问题可能是因为我的 solr home 路径。我创建了一个新目录并在那里复制了所有配置文件并提到它作为我的 solr 路径。但是,我后来更新了 solrconfig.xml,更正了所有 jar 的路径。

  2. 还尝试将“pdfbox 和 fontbox”jar 添加到 solr lib 文件夹并重新启动 Tomcat

我的Java代码是:

 String urlString = "http://localhost:8080/solr"; 
    SolrServer server = new CommonsHttpSolrServer(urlString);
    ContentStreamUpdateRequest up = new ContentStreamUpdateRequest("/update/extract");
    String fileName=f.toString();
    up.addFile(new File(fileName));
    up.setParam("Latitude", Latitude);
    up.setParam("Longitude", Longitude);
    up.setAction(AbstractUpdateRequest.ACTION.COMMIT, true, true);
    server.request(up);

(端口8080是我配置的)

solr 索引仍然无法在我的最后工作.. 我已经尝试了几个小时调试这个并弄清楚了。如果您能给我一些提示或建议我做错了什么,那就太好了。

至于你的参考我已经尝试过: http ://wiki.apache.org/solr/FrontPage http://wiki.apache.org/solr/ContentStreamUpdateRequestExample http://wiki.apache.org/solr/UpdateRichDocuments http: //wiki.apache.org/solr/ExtractingRequestHandler#Configuration http://lucene.472066.n3.nabble.com/Problem-using-ExtractingRequestHandler-with-tomcat-td494930.html http://lucene.472066.n3。 nabble.com/Internal-Server-Error-td715713.html 如何使用 SolrJ 索引 pdf 的内容?

4

2 回答 2

2

最后我找到了解决这个问题的方法。

只需修改,将标签的SOLR_HOME/conf/solrconfig.xml所有目录属性从更改为,保存文件<tab>"../../dist/""../dist/"

如果遇到此问题,则solr必须将目录移动apache-solr-x.x.x\example到其他位置,因此"../../dist/"需要相应更改相对路径。

记得重新启动你的tomcat,看看它是否工作。

于 2012-09-04T02:00:41.597 回答
1

你的类路径中有 solr-cell.jar 吗??

ExtractingRequestHandler 在 solr-cell.jar 中,默认的 solr-server 没有打包

于 2012-04-21T00:25:02.767 回答