We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cadc73b commit 59c708cCopy full SHA for 59c708c
src/osdc/Objecter.cc
@@ -5121,8 +5121,10 @@ Objecter::Objecter(CephContext *cct,
5121
5122
auto read_policy = cct->_conf.get_val<std::string>("rados_replica_read_policy");
5123
if (read_policy == "localize") {
5124
+ ldout(cct, 20) << __func__ << ": read policy: localize" << dendl;
5125
extra_read_flags = CEPH_OSD_FLAG_LOCALIZE_READS;
5126
} else if (read_policy == "balance") {
5127
+ ldout(cct, 20) << __func__ << ": read policy: balance" << dendl;
5128
extra_read_flags = CEPH_OSD_FLAG_BALANCE_READS;
5129
}
5130
0 commit comments