I'm trying to do a simple SolrDocument submission with Java like the one detailed in the Solrj Wiki. However, the submission always fails and returns this:
org.apache.solr.common.SolrException: Bad Request
Bad Request
request: http://address:port/solr/update?wt=xml&version=2.2
I have one file named item.csv, which contains around 100 products for now and it is indexed using SOLR.My requirements is if I add more data around 10 to 100 products ...
I am building a java application using solrj. When i add document for a single record, program runs fine. When i use Collection, at server.add(docs) i get the following exception: ...
I've already submitted a similar question, but I've broken down the problem to its simplest form, so I'm gonna post it again:
The problem is, that SolrJ seems to keep file handles ...
I am a SolrJ beginner and want to find out whats the fastest way to determine if an document with an unique ID exists?
I don't need the document, I just ...