:Default: ``true``
-``max mds``
-
-:Description: The number of active MDS daemons during cluster creation. Set
- under ``[mon]`` or ``[global]``.
-
-:Type: 32-bit Integer
-:Default: ``1``
-
-
``mds max file size``
:Description: The maximum allowed file size to set when creating a
OPTION(mds_wipe_sessions, OPT_BOOL, 0)
OPTION(mds_wipe_ino_prealloc, OPT_BOOL, 0)
OPTION(mds_skip_ino, OPT_INT, 0)
-OPTION(max_mds, OPT_INT, 1)
OPTION(mds_standby_for_name, OPT_STR, "")
OPTION(mds_standby_for_rank, OPT_INT, -1)
OPTION(mds_standby_for_fscid, OPT_INT, -1)
{
auto fs = std::make_shared<Filesystem>();
fs->mds_map.fs_name = name;
- fs->mds_map.max_mds = g_conf->max_mds;
+ fs->mds_map.max_mds = 1;
fs->mds_map.data_pools.insert(data_pool);
fs->mds_map.metadata_pool = metadata_pool;
fs->mds_map.cas_pool = -1;
// Carry forward what makes sense
new_fs->fscid = fs->fscid;
new_fs->mds_map.inline_data_enabled = fs->mds_map.inline_data_enabled;
- new_fs->mds_map.max_mds = g_conf->max_mds;
+ new_fs->mds_map.max_mds = 1;
new_fs->mds_map.data_pools = fs->mds_map.data_pools;
new_fs->mds_map.metadata_pool = fs->mds_map.metadata_pool;
new_fs->mds_map.cas_pool = fs->mds_map.cas_pool;