: Subject: Error: Current core has 1206 fields, : exceeding the max-fields limit of 1000 : : Hi all, : : can someone explain how I can raise the limit on a Solr 9.8.1 collection/core.
It's an optional feature declared in the _default solrconfig.xml that only applies when using the "add-unknown-fields-to-the-schema" update processor chain... Look for this class name in your solrconfig.xml... https://solr.apache.org/docs/9_8_0/core/org/apache/solr/update/processor/NumFieldLimitingUpdateRequestProcessorFactory.html ..by default it has 'name="max-fields"' You can either: - change it's config as you see fit - remove it's name from the update processor chain you use - change the update chain you use to something else -Hoss http://www.lucidworks.com/