When I was trying to indexing using Solr, I am getting "Document is missing mandatory uniqueKey field: id" exception. I looked at the schema.xml file in the solr folder and found that there is a tag like below,
<field name="id" type="string" indexed="true" stored="true" />
<uniqueKey>id</uniqueKey>
I looked at my rdf file and trying to look for any id field defined there, but unfortunately there is no id field. I am not sure what is the unique field in RDF format file so that I can replace the field name "id" to the one uniquely present in the rdf file.
Any help please?