Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to Solr. When I index my database, it fetches all the rows successfully, but the output is showing that they are not indexed. Here are the details:

My data-config.xml setting

    <entity name="company" query="select report_number, company_name from company">
        <field column="report_number" name="country_id"/>
        <field column="company_name" name="country_name"/> 
    </entity>

Report_number and company_name both are varchar datatype in the database.

My Schema.xml file where I define the fields

    <field name="country_id" type="string" indexed="true" stored="true" required="false" />      
    <field name="country_name" type="string" indexed="true" stored="true" required="false" />


This is the browser output

share|improve this question
1  
Check your solr log file – Shane Andrade Jan 18 at 6:56

1 Answer

As part of the example schema a uniqueKey field is defined:

 <!-- Field to use to determine and enforce document uniqueness. 
      Unless this field is marked with required="false", it will be a required field
  -->
 <uniqueKey>id</uniqueKey>

As the comment states, unless you mark that field as required="false" you must include that field in all items being added to the index. Unless you have modified this entry to be one of your custom defined fields, you will need to change this entry in the schema.xml or supply an id field entry along with your other two field in your data-config.xml settings.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.