Skip to content

Commit

Permalink
Merge pull request ceph#1331 from ceph/wip-cache-pool
Browse files Browse the repository at this point in the history
mon/OSDMonitor: make default false-positive-probability 5%

Reviewed-by: Greg Farnum <[email protected]>
  • Loading branch information
gregsfortytwo committed Feb 28, 2014
2 parents 07ddfcf + f0241c8 commit 84decc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mon/OSDMonitor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3213,7 +3213,7 @@ int OSDMonitor::prepare_command_pool_set(map<string,cmd_vartype> &cmdmap,
p.hit_set_params = HitSet::Params();
else if (val == "bloom") {
BloomHitSet::Params *bsp = new BloomHitSet::Params;
bsp->set_fpp(.01);
bsp->set_fpp(.05);
p.hit_set_params = HitSet::Params(bsp);
} else if (val == "explicit_hash")
p.hit_set_params = HitSet::Params(new ExplicitHashHitSet::Params);
Expand Down

0 comments on commit 84decc1

Please sign in to comment.