On 2/26/2018 5:57 AM, FiMko wrote: > Can you say how to download schema in Solr 7 world? Because the schema.xml > approach has been obsoleted.
The filename has changed in recent examples. The file will be most likely be called managed-schema, not schema.xml. The file may included a warning about manual edits. This is because if you combine manual edits with HTTP requests using the schema API, and don't do it correctly, the http requests will cause your manual edits to be lost. If you're careful about how you manage your edits, that won't happen. > BTW I have just commented out another chain > "add-unknown-fields-to-the-schema", then restarted Solr. > If I create a document updateRequestProcessorChain "mychain" is still not > working - the value of "text_en" is not cloned into "text_en_exact". If all you did was disable the add-unknown-fields-to-the-schema chain, that doesn't enable your chain. You have to do something to enable your chain. One thing you can do is set the default parameter to true in the chain's definition. But I would recommend that you use the copyField directive in your schema for this particular behavior, not an update chain. Thanks, Shawn