Skip to content

Commit

Permalink
Fix reveresed promote throttle default parameters.
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Nelson <mnelson@redhat.com>
  • Loading branch information
Mark Nelson committed May 3, 2016
1 parent fe20133 commit 793ceac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/config_opts.h
Expand Up @@ -659,8 +659,8 @@ OPTION(osd_hit_set_max_size, OPT_INT, 100000) // max target size for a HitSet
OPTION(osd_hit_set_namespace, OPT_STR, ".ceph-internal") // rados namespace for hit_set tracking

// conservative default throttling values
OPTION(osd_tier_promote_max_objects_sec, OPT_U64, 5 * 1024*1024)
OPTION(osd_tier_promote_max_bytes_sec, OPT_U64, 25)
OPTION(osd_tier_promote_max_objects_sec, OPT_U64, 25)
OPTION(osd_tier_promote_max_bytes_sec, OPT_U64, 5 * 1024*1024)

OPTION(osd_tier_default_cache_mode, OPT_STR, "writeback")
OPTION(osd_tier_default_cache_hit_set_count, OPT_INT, 4)
Expand Down

0 comments on commit 793ceac

Please sign in to comment.