Removed configuration option (notablescan) in MongoDB 2.6 config file

mongodb

Solution

You can set `notablescan` in the new format with setParameter call. For example:

setParameter:
    notablescan: 1

Problem

The configuration file format was changed in the latest (2.6) version of `MongoDB` into a `YAML` based format. Apparently the new format removed some configuration options, `notablescan` in my case. Is there a way to set it in the new format? Or must I stay with the 2.4 version one? v2.6 Configuration File Options v2.4 Configuration File Options

Original source