Hi , I am trying to index my Solr 4.3 from Apache Nutch 2.2 data. And for that I have copied the schema-solr4.xml from Nutch2.2 runtime/local/conf and pasted it to my SolrHome solr/collection1/conf.
My Solr4.3 is hosted in Tomcat. And initially when I tried http://localhost:8080/solr/#/collection1 it wasn't working and on further investigation I found _version_ field was missing so I added this field as <field name="_version_" type="long" indexed="true" stored="true"/> and it started working ok. And now when I try http://localhost:8080/solr/collection1/browse ... it shows me errors like "HTTP Status 500 - {msg=lazy loading error,trace=org.apache.solr.common.SolrException: lazy loading error at org.apache.solr.core.SolrCore$LazyQueryResponseWriterWrapper.getWrappedWriter(SolrCore.java:2260) at org.apache.solr.core.SolrCore$LazyQueryResponseWriterWrapper.getContentType(SolrCore.java:2279) at org.apache.solr.servlet.SolrDispatchFilter.writeResponse(SolrDispatchFilter.java:623) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:372) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:155) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at ...." So could you please guide me that whats missing now ? is this again due to any schema issue or something else ? Thanks, Tony