The verifyTable call will force a checkpoint and flush all in-memory data to disk and then verifies the on-disk data. Then after that, MongoDB will do its own scans to verify size and sort order. This requires reading all data twice from disk.
We instead should always do the cheaper and more meaningful consistency checking, leaving the verifyTable for full : true cases.