Hi,
Have some pdf stored in file server and use datafari to crawl them and retrieve.
I would like to have some field from external source (ENVIRONNEMENT, EMMETEUR, DESTINATAIRE)
I have create field into SOLR : OK
First I crawl the file on the server in a folder
I can search with full text : OK (exemple :
1110285 which is a word in the document)
Then I try to update the document
curl -X POST -H 'Content-Type: application/xml'
http://localhost:8983/solr/FileShare_shard1_replica1/update --data-binary @201410071032_539249_SOLR.xml
201410071032_539249_SOLR.xml:<add>
<doc>
<field name="id">file://///serverfile/Data/Linux/datafari/test/document/201410071032_539249.pdf</field>
<field name="ENVIRONNEMENT" update="set">TEST</field>
<field name="EMETTEUR" update="set">ME</field>
<field name="DESTINATAIRE" update="set">YOU</field>
</doc>
</add>
The field are added to solr with the existing field : OK
But the full text search do not work anymore (exemple :
1110285 return nothing)
I tried to change content_en, content_fr to stored=true, but this not work
Does anyone have idea about update field in SOLR?