HDDS-619. hdds.db.profile should not be tagged as a required setting & should default to DISK. Contributed by Dinesh Chitlangia.

This commit is contained in:
Arpit Agarwal 2018-10-10 17:37:20 -07:00
parent 045069efec
commit 2bd000c851
2 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ public final class HddsConfigKeys {
// DB Profiles used by ROCKDB instances. // DB Profiles used by ROCKDB instances.
public static final String HDDS_DB_PROFILE = "hdds.db.profile"; public static final String HDDS_DB_PROFILE = "hdds.db.profile";
public static final DBProfile HDDS_DEFAULT_DB_PROFILE = DBProfile.SSD; public static final DBProfile HDDS_DEFAULT_DB_PROFILE = DBProfile.DISK;
// Once a container usage crosses this threshold, it is eligible for // Once a container usage crosses this threshold, it is eligible for
// closing. // closing.

View File

@ -1184,8 +1184,8 @@
<property> <property>
<name>hdds.db.profile</name> <name>hdds.db.profile</name>
<value>SSD</value> <value>DISK</value>
<tag>OZONE, OM, PERFORMANCE, REQUIRED</tag> <tag>OZONE, OM, PERFORMANCE</tag>
<description>This property allows user to pick a configuration <description>This property allows user to pick a configuration
that tunes the RocksDB settings for the hardware it is running that tunes the RocksDB settings for the hardware it is running
on. Right now, we have SSD and DISK as profile options.</description> on. Right now, we have SSD and DISK as profile options.</description>