Apache Solr - Aggiornamento dei dati
Aggiornamento del documento utilizzando XML
Di seguito è riportato il file XML utilizzato per aggiornare un campo nel documento esistente. Salvalo in un file con il nomeupdate.xml.
<add>
<doc>
<field name = "id">001</field>
<field name = "first name" update = "set">Raj</field>
<field name = "last name" update = "add">Malhotra</field>
<field name = "phone" update = "add">9000000000</field>
<field name = "city" update = "add">Delhi</field>
</doc>
</add>
Come puoi osservare, il file XML scritto per aggiornare i dati è proprio come quello che usiamo per aggiungere documenti. Ma l'unica differenza è che usiamo il fileupdate attributo del campo.
Nel nostro esempio, useremo il documento sopra e proveremo ad aggiornare i campi del documento con l'id 001.
Supponiamo che il documento XML esista nel file binelenco di Solr. Poiché stiamo aggiornando l'indice che esiste nel core denominatomy_core, puoi aggiornare utilizzando il post strumento come segue -
[[email protected] bin]$ ./post -c my_core update.xml
Eseguendo il comando precedente, otterrai il seguente output.
/home/Hadoop/java/bin/java -classpath /home/Hadoop/Solr/dist/Solr-core
6.2.0.jar -Dauto = yes -Dc = my_core -Ddata = files
org.apache.Solr.util.SimplePostTool update.xml
SimplePostTool version 5.0.0
Posting files to [base] url http://localhost:8983/Solr/my_core/update...
Entering auto mode. File endings considered are
xml,json,jsonl,csv,pdf,doc,docx,ppt,pptx,xls,xlsx,odt,odp,ods,ott,otp,ots,rtf,
htm,html,txt,log
POSTing file update.xml (application/xml) to [base]
1 files indexed.
COMMITting Solr index changes to http://localhost:8983/Solr/my_core/update...
Time spent: 0:00:00.159
Verifica
Visita la home page dell'interfaccia web di Apache Solr e seleziona il core come my_core. Prova a recuperare tutti i documenti passando la query ":" nell'area di testoqed eseguire la query. Durante l'esecuzione, puoi osservare che il documento viene aggiornato.
Aggiornamento del documento utilizzando Java (API client)
Di seguito è riportato il programma Java per aggiungere documenti all'indice Apache Solr. Salva questo codice in un file con il nomeUpdatingDocument.java.
import java.io.IOException;
import org.apache.Solr.client.Solrj.SolrClient;
import org.apache.Solr.client.Solrj.SolrServerException;
import org.apache.Solr.client.Solrj.impl.HttpSolrClient;
import org.apache.Solr.client.Solrj.request.UpdateRequest;
import org.apache.Solr.client.Solrj.response.UpdateResponse;
import org.apache.Solr.common.SolrInputDocument;
public class UpdatingDocument {
public static void main(String args[]) throws SolrServerException, IOException {
//Preparing the Solr client
String urlString = "http://localhost:8983/Solr/my_core";
SolrClient Solr = new HttpSolrClient.Builder(urlString).build();
//Preparing the Solr document
SolrInputDocument doc = new SolrInputDocument();
UpdateRequest updateRequest = new UpdateRequest();
updateRequest.setAction( UpdateRequest.ACTION.COMMIT, false, false);
SolrInputDocument myDocumentInstantlycommited = new SolrInputDocument();
myDocumentInstantlycommited.addField("id", "002");
myDocumentInstantlycommited.addField("name", "Rahman");
myDocumentInstantlycommited.addField("age","27");
myDocumentInstantlycommited.addField("addr","hyderabad");
updateRequest.add( myDocumentInstantlycommited);
UpdateResponse rsp = updateRequest.process(Solr);
System.out.println("Documents Updated");
}
}
Compilare il codice sopra eseguendo i seguenti comandi nel terminale:
[[email protected] bin]$ javac UpdatingDocument
[[email protected] bin]$ java UpdatingDocument
Eseguendo il comando precedente, otterrai il seguente output.
Documents updated