Hi, I started playing around with Solr 5.5 and created a collection using the following:
./solr create_collection -c test -p 9000 -replicationFactor 2 -d basic_configs -shards 2 The collection created fine, however I see that although I specified basic_configs, it was deployed in managed schema mode. I was able to follow instructions here: https://cwiki.apache.org/confluence/display/solr/Managed+Schema+Definition+in+SolrConfig To get it back to basic mode, which required me to modify solrconfig and remove the manged schema file from zookeeper manually. I checked the configuration files for basic_configs for Solr 5.5 and it looks like it is managed, however Solr 5.4 still has the classic as the default parameters. Is this now the default behavior for basic_configs? I would really like to maintain an option to easily create collection with classic schema settings without jumping through all of these hoops. Thanks