You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Mudi Ugbowanko (Created) (JIRA)" <ji...@apache.org> on 2011/12/30 20:56:30 UTC

[jira] [Created] (SOLR-2995) Data Import on CentOS 5.7

Data Import on CentOS 5.7
-------------------------

                 Key: SOLR-2995
                 URL: https://issues.apache.org/jira/browse/SOLR-2995
             Project: Solr
          Issue Type: Bug
          Components: contrib - DataImportHandler
    Affects Versions: 3.5
         Environment: CentOS release 5.7 (Final); Linux 2.6.18-274.12.1.el5.centos.plusxen x86_64 x86_64 x86_64 GNU/Linux
            Reporter: Mudi Ugbowanko
            Priority: Minor


I have configured my solr on centos box and configured my solrconfig.xml to use 'dataimporthandler' plugin.

My solrconfig contains the following configuration:

<lib dir="/path/to/solr/dist" regex="apache-solr-dataimporthandler-.*\.jar" />
...
<requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler">
   <lst name="defaults">
      <str name="config">data-config.xml</str>
   </lst>
</requestHandler>
and the 'data-config.xml' contains the correct db connections.

However when I access the that plugin: http://localhost:8080/solr_app/dataimport (with or without a command), I get the following errors:

Dec 30, 2011 6:46:03 PM org.apache.solr.common.SolrException log SEVERE: java.lang.AbstractMethodError: org.apache.solr.handler.RequestHandlerBase.handleRequestBody(Lorg/apache/solr/request/SolrQueryRequest;Lorg/apache/solr/response/SolrQueryResponse;)V at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129) at org.apache.solr.core.SolrCore.execute(SolrCore.java:1372) at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) at java.lang.Thread.run(Thread.java:636)

The really annoying part is these errors give no clear indication what is wrong. Mind you I was able to set this up on my local desktop with no issues. Running this on an online 'Centos 5.7' box ... errors!

I'm sure it is an easy fix ... but the exception/error thrown gives no clear indication what is going wrong.

Thanks in advance.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


Re: [jira] [Closed] (SOLR-2995) Data Import on CentOS 5.7

Posted by Erick Erickson <er...@gmail.com>.
First, please start new topics with a new thread, it
helps people keep track of things....

Well, a Fix Version of 1.4 probably just got
in there when you opened the bug.

But I don't understand the question about
"different versions". All software releases
get version numbers, the current release is 3.5
so I really don't know how you were using 1.4.1
unless you purposely mixed and matched...

Best
Erick

On Sun, Jan 1, 2012 at 2:33 PM, Mudi Ugbowanko (Closed) (JIRA)
<ji...@apache.org> wrote:
>
>     [ https://issues.apache.org/jira/browse/SOLR-2995?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
>
> Mudi Ugbowanko closed SOLR-2995.
> --------------------------------
>
>       Resolution: Not A Problem
>    Fix Version/s: 1.4.1
>
> I was using data import handler v1.4.1 with solr 3.5.0.
>
> My next question is why the different versions?
>
> Thanks
>
> M.
>
>> Data Import on CentOS 5.7
>> -------------------------
>>
>>                 Key: SOLR-2995
>>                 URL: https://issues.apache.org/jira/browse/SOLR-2995
>>             Project: Solr
>>          Issue Type: Bug
>>          Components: contrib - DataImportHandler
>>    Affects Versions: 3.5
>>         Environment: CentOS release 5.7 (Final); Linux 2.6.18-274.12.1.el5.centos.plusxen x86_64 x86_64 x86_64 GNU/Linux
>>            Reporter: Mudi Ugbowanko
>>            Priority: Minor
>>              Labels: DIH, dataimportHandler
>>             Fix For: 1.4.1
>>
>>   Original Estimate: 24h
>>  Remaining Estimate: 24h
>>
>> I have configured my solr on centos box and configured my solrconfig.xml to use 'dataimporthandler' plugin.
>> My solrconfig contains the following configuration:
>> <lib dir="/path/to/solr/dist" regex="apache-solr-dataimporthandler-.*\.jar" />
>> ...
>> <requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler">
>>    <lst name="defaults">
>>       <str name="config">data-config.xml</str>
>>    </lst>
>> </requestHandler>
>> and the 'data-config.xml' contains the correct db connections.
>> However when I access the that plugin: http://localhost:8080/solr_app/dataimport (with or without a command), I get the following errors:
>> Dec 30, 2011 6:46:03 PM org.apache.solr.common.SolrException log SEVERE: java.lang.AbstractMethodError: org.apache.solr.handler.RequestHandlerBase.handleRequestBody(Lorg/apache/solr/request/SolrQueryRequest;Lorg/apache/solr/response/SolrQueryResponse;)V at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129) at org.apache.solr.core.SolrCore.execute(SolrCore.java:1372) at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) at java.lang.Thread.run(Thread.java:636)
>> The really annoying part is these errors give no clear indication what is wrong. Mind you I was able to set this up on my local desktop with no issues. Running this on an online 'Centos 5.7' box ... errors!
>> I'm sure it is an easy fix ... but the exception/error thrown gives no clear indication what is going wrong.
>> Thanks in advance.
>
> --
> This message is automatically generated by JIRA.
> If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
> For more information on JIRA, see: http://www.atlassian.com/software/jira
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
> For additional commands, e-mail: dev-help@lucene.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org


[jira] [Closed] (SOLR-2995) Data Import on CentOS 5.7

Posted by "Mudi Ugbowanko (Closed) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-2995?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mudi Ugbowanko closed SOLR-2995.
--------------------------------

       Resolution: Not A Problem
    Fix Version/s: 1.4.1

I was using data import handler v1.4.1 with solr 3.5.0.

My next question is why the different versions?

Thanks

M.
                
> Data Import on CentOS 5.7
> -------------------------
>
>                 Key: SOLR-2995
>                 URL: https://issues.apache.org/jira/browse/SOLR-2995
>             Project: Solr
>          Issue Type: Bug
>          Components: contrib - DataImportHandler
>    Affects Versions: 3.5
>         Environment: CentOS release 5.7 (Final); Linux 2.6.18-274.12.1.el5.centos.plusxen x86_64 x86_64 x86_64 GNU/Linux
>            Reporter: Mudi Ugbowanko
>            Priority: Minor
>              Labels: DIH, dataimportHandler
>             Fix For: 1.4.1
>
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> I have configured my solr on centos box and configured my solrconfig.xml to use 'dataimporthandler' plugin.
> My solrconfig contains the following configuration:
> <lib dir="/path/to/solr/dist" regex="apache-solr-dataimporthandler-.*\.jar" />
> ...
> <requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler">
>    <lst name="defaults">
>       <str name="config">data-config.xml</str>
>    </lst>
> </requestHandler>
> and the 'data-config.xml' contains the correct db connections.
> However when I access the that plugin: http://localhost:8080/solr_app/dataimport (with or without a command), I get the following errors:
> Dec 30, 2011 6:46:03 PM org.apache.solr.common.SolrException log SEVERE: java.lang.AbstractMethodError: org.apache.solr.handler.RequestHandlerBase.handleRequestBody(Lorg/apache/solr/request/SolrQueryRequest;Lorg/apache/solr/response/SolrQueryResponse;)V at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129) at org.apache.solr.core.SolrCore.execute(SolrCore.java:1372) at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:602) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489) at java.lang.Thread.run(Thread.java:636)
> The really annoying part is these errors give no clear indication what is wrong. Mind you I was able to set this up on my local desktop with no issues. Running this on an online 'Centos 5.7' box ... errors!
> I'm sure it is an easy fix ... but the exception/error thrown gives no clear indication what is going wrong.
> Thanks in advance.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org