Hi,
We have some custom Index Builders in our solution, and we're looking into improving the indexing performance.
I was wondering if it's possible to customize the IndexWriterConfig used by the index builders. Specifically, we'd like to override the default RAMBufferSizeMB (which I understand defaults to 16 MB ) and potentially configure other IndexWriterConfig settings.
Is there an extension point or supported way to provide a custom IndexWriterConfig, or override properties such as:
RAMBufferSizeMBUseCompoundFileOpenMode (we have the possibility to controll this.)- Other
IndexWriterConfigsettings
Our indexes can contain several million documents, and we're investigating whether tuning these settings could improve indexing throughput.
Any guidance on the recommended approach would be appreciated.