Hello Solr-Friends,

I have a problem with my current solr configuration. I want to import two tables into solr. I got it to work for the first table, but the second table doesn't get imported (no errormessage, 0 rows skipped). I have two tables called name and title and i want to load their fields called id, name and id title (two id colums that have nothing to do with each other)

This is in my data-config.xml:

<document>
    <entity name="name" query="SELECT id, name FROM name"></entity>
</document>
<document>
<entity name="title" query="SELECT id AS titleid, title FROM name"></entity>
</document>

and this is in my schema.xml:

<field name="id" type="string" indexed="true" stored="true" />
<field name="id" type="string" indexed="true" stored="true" />
<field name="id" type="string" indexed="true" stored="true" />


Reply via email to