this behavior should instead make use of the ``ceph auth export
<entity-name>`` command for whichever key(s) they need.
+* The ``mon_osd_pool_ec_fast_read`` option has been renamed
+ ``osd_pool_default_ec_fast_read`` to be more consistent with other
+ ``osd_pool_default_*`` options that affect default values for newly
+ created RADOS pools.
+
+
Upgrading from Luminous
-----------------------
OPTION(mon_osd_prime_pg_temp, OPT_BOOL) // prime osdmap with pg mapping changes
OPTION(mon_osd_prime_pg_temp_max_time, OPT_FLOAT) // max time to spend priming
OPTION(mon_osd_prime_pg_temp_max_estimate, OPT_FLOAT) // max estimate of pg total before we do all pgs in parallel
-OPTION(mon_osd_pool_ec_fast_read, OPT_BOOL) // whether turn on fast read on the pool or not
OPTION(mon_election_timeout, OPT_FLOAT) // on election proposer, max waiting time for all ACKs
OPTION(mon_lease, OPT_FLOAT) // lease interval
OPTION(mon_lease_renew_interval_factor, OPT_FLOAT) // on leader, to renew the lease
// Allows the "peered" state for recovery and backfill below min_size
OPTION(osd_allow_recovery_below_min_size, OPT_BOOL)
+OPTION(osd_pool_default_ec_fast_read, OPT_BOOL) // whether turn on fast read on the pool or not
OPTION(osd_pool_default_flags, OPT_INT) // default flags for new pools
OPTION(osd_pool_default_flag_hashpspool, OPT_BOOL) // use new pg hashing to prevent pool/pg overlap
OPTION(osd_pool_default_flag_nodelete, OPT_BOOL) // pool can't be deleted
.set_default(.25)
.set_description("Calculate all PG mappings if estimated fraction of PGs that change is above this amount"),
- Option("mon_osd_pool_ec_fast_read", Option::TYPE_BOOL, Option::LEVEL_ADVANCED)
- .set_default(false)
- .set_description(""),
-
Option("mon_stat_smooth_intervals", Option::TYPE_UINT, Option::LEVEL_ADVANCED)
.set_default(6)
.set_min(1)
.set_default(-1)
.set_description(""),
+ Option("osd_pool_default_ec_fast_read", Option::TYPE_BOOL, Option::LEVEL_ADVANCED)
+ .set_default(false)
+ .set_description(""),
+
Option("osd_pool_default_crush_rule", Option::TYPE_INT, Option::LEVEL_ADVANCED)
.set_default(-1)
.set_description(""),
fread = true;
break;
case FAST_READ_DEFAULT:
- fread = g_conf()->mon_osd_pool_ec_fast_read;
+ fread = g_conf()->osd_pool_default_ec_fast_read;
break;
default:
*ss << "invalid fast_read setting: " << fast_read;