On 2/28/2017 8:45 AM, skasab2s wrote: > we are trying to upgrade solr 5.2 to solr 5.5. > > In solr 5.2 we had an own, customised version of solr.war and we put it > under > > solr-5.2.1/server/webapps/ (we overwrote the default solr.war), > > so on the solr startup, the war was extracted to > > solr-5.2.1/server/solr-webapp/ > > Since https://issues.apache.org/jira/browse/SOLR-7227, as far we understand, > the mechanism of extraction the war on startup does not exist. Should we > then extract our custom war ourselves into solr-5.2.1/server/solr-webapp/ ?
Solr 5.5 doesn't have a .war file -- that file is no longer built when Solr is compiled. Instead, the webapp is copied directly to solr-webapp. The end result is the same, but the container no longer needs to extract the .war file on startup. https://wiki.apache.org/solr/WhyNoWar If you are creating the customized version by modifying the Solr source and building, then you should be able to do the same with 5.5 and get a webapp that's got your changes in it. If you are creating the customized version by adding to the .war file, then you should be able to do the same thing with 5.5, but you will be modifying the webapp directly, rather than editing a .war file. Thanks, Shawn