Description
transientCacheSize is not persisted solr.xml when creating a new core. I was able to reproduce this using the following solr.xml file:
<?xml version="1.0" encoding="UTF-8" ?> <solr persistent="true"> <cores transientCacheSize="21" defaultCoreName="collection1" adminPath="/admin/cores" zkClientTimeout="${zkClientTimeout:15000}" hostPort="8983" hostContext="solr"> <core name="collection1" collection="collection1"/> </cores> </solr>
I created a new core:
curl "http://localhost:8983/solr/admin/cores?action=create&instanceDir=collection1&transient=true&name=tmp5&loadOnStartup=false"
The resulting solr.xml file has the new core added, but is missing the transientCacheSize attribute.
Attachments
Attachments
Issue Links
- is part of
-
SOLR-4615 Take out the possibility of having a solr.properties file
-
- Resolved
-