Marked answer here is good. I want to add an additional code to help others who use InsertMany instead of BulkWriteAsync to take benefit of IsOrdered = false quicker
m_Collection.InsertMany(listOfDocument, new InsertManyOptions() { IsOrdered = false });