Answer by AppB for Solr Query - HTTP error 404 undefined field text
This may not always be the case, but when I got a similar issue, it turned out that restarting the Solr server using restart command didn't suffice. Explicitly stopping the server with the stop command...
View ArticleAnswer by Ababneh A for Solr Query - HTTP error 404 undefined field text
The text field is composed of copies of another fields, as specified in the default schema.xml (when inserting a new document). So, when we have the df "text" in the solrconfig.xml, and we make a...
View ArticleAnswer by Arindam for Solr Query - HTTP error 404 undefined field text
I had the same problem. In case there is no <defaultSearchField> in the solrconfig.xml file, look for the /select handler. Within that you would find something like this <str...
View ArticleAnswer by Olivier LEVILLAIN for Solr Query - HTTP error 404 undefined field text
I have the same problem which appears either on a 404 answer sometimes as described above or as an exception in the jetty stack trace: SEVERE: org.apache.solr.common.SolrException: undefined field text...
View ArticleAnswer by hovenko for Solr Query - HTTP error 404 undefined field text
Default solr configuration has defined some request handlers with defaults that match the default schema included in the solr tarball. Check the request handlers defined in solrconfig and you might...
View ArticleSolr Query - HTTP error 404 undefined field text
I've got a Solr instance running on my Ubuntu machine using the default Jetty server that the Solr download comes with. Whenever I start Solr using java -jar start.jar The server starts fine but there...
View Article