I have a question on segment creation on disk during indexing. In my solrconfig.xml, I have commented maxBufferedDocs and ramBufferSizeMB. I am controlling the flushing of data to disk using autoCommit's maxDocs and maxTime.
Here, maxDocs is set to 50000 and will be hit first, so that commit of data to disk happens every 50000 docs. So, my question here is will it create a new segment when this commit happens? In the wiki <https://wiki.apache.org/solr/SolrPerformanceFactors#mergeFactor>, it is mentioned that a new segment creation is determined based on maxBufferedDocs parameter. As I have commented this parameter, how a new segment creation is determined? Thanks, Manohar