How to use the 'property.name=value' in the api example[1] to modify core.properties value of 'name'
While creating the collection with below query[2], the core names become 'aggregator_shard1_replica1' and 'aggregator_shard2_replica1'. I wanted have specific/custom name for each of these cores. I tried passing the params as property.name=name&name=aggregator_s1, but it did not work. Editing the core.properties key value pair of name=aggregator_s1 after collection is created, works! But I was looking for setting this property with create request itself. [2] http://example.com:8983/solr/admin/collections?action=CREATE&name=aggregator&numShards=1&replicationFactor=2&maxShardsPerNode=1&collection.configName=aggregator_config&property.name=name&name=aggregator_s1 [1] https://cwiki.apache.org/confluence/display/solr/Collections+API#CollectionsAPI-api1