Hi, I am using DataStax Enterprise and having a problem with solr when dynamically adding new columns to Cassandra.
The schema.xml has the following line to index all columns ends with "_dy".
<dynamicField name="*_dy" type="string" indexed="true" stored="true"/>
The initial column family consists of columns without indexing. After posting the schema.xml and solrconfig.xml files, all works fine. However, whenever I add a new column to a column family, accessing the solr admin page prints out the following exceptions:
---------------------------------------------------------------------------------
HTTP Status 500 - java.lang.RuntimeException: org.apache.solr.common.SolrException: Could not find: solrconfig.xml java.lang.RuntimeException: java.lang.RuntimeException: org.apache.solr.common.SolrException: Could not find: solrconfig.xml at com.datastax.bdp.plugin.AbstractPlugin.activate(AbstractPlugin.java:47) at ...
---------------------------------------------------------------------------------
If I post the same schema.xml and solrconfig.xml files again, the admin page works again. Is there a way to avoid this re-posting? I need to programmatically add new columns continuously and at the mean time, searching via solr should also work.
Thanks a lot!!
