Hi,
I am using ExtractingRequestHandler to extract text from binary data and
then index the text but getting *error:
org.apache.solr.update.DirectUpdateHandler2; No uncommitted changes.
Skipping IW.commit.*

*solrconfig.xml:*
<requestHandler name="/update/extract"
class="org.apache.solr.handler.extraction.ExtractingRequestHandler">
          <lst name="defaults">
          <str name="lowernames">true</str>
          <str name="fmap.content">attachment</str>
          <str name="uprefix">ignored_</str>
          </lst>
        </requestHandler>

<lib dir="/var/solrdev/solr-4.5.0/contrib/extraction/lib" regex=".*\.jar" /> 
        <lib dir="/var/solrdev/solr-4.5.0/dist/" regex=".*\.jar" /> 
        <lib dir="/var/solrdev/solr-4.5.0/dist/" regex="solr-cell-4.5.0.jar"
/> 

*schema.xml:*

<field  name="attachment"  type="string"   indexed="true"  stored="true"  
required="false"  multiValued="true"/>
<fieldType name="string" class="solr.TextField" omitNorms="true">

*CURL request:*
curl
"http://localhost:8085/solr/openwave/update/extract?literal.msg-uid=9&commit=true";
-F "myFile=Dummy.doc"

I do not understand where the problem is ? Pls. suggest me



--
View this message in context: 
http://lucene.472066.n3.nabble.com/org-apache-solr-update-DirectUpdateHandler2-No-uncommitted-changes-Skipping-IW-commit-tp4107285.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to