Hi,
I am trying solr with an oracle database, It's working but I have on the top of
the page an exception :
SolrCore Initialization Failures
solr:
org.apache.solr.common.SolrException:org.apache.solr.common.SolrException:
Could not load config for solrconfig.xml
Here is my solrconfig.xml :
<dataConfig>
<dataSource driver="oracle.jdbc.OracleDriver"
url="jdbc:oracle:thin:@ourIPaddress:1521:ourDB"
user="username"
password="password"/>
<document>
<entity name="residential" query="select * from
tsunami.consumer_data_01 where state='MA'"
deltaQuery="select LEMSMATCHCODE, STREETNAME from residential
where last_modified > '${dataimporter.last_index_time}'">
<field column="LEMSMATCHCODE" name="lemsmatchcode" />
<field column="STREETNAME" name="streetname" />
</entity>
</document>
</dataConfig>
Thanks, your help is appreciated.