caiconghui commented on a change in pull request #6200:
URL: https://github.com/apache/incubator-doris/pull/6200#discussion_r670424687
##########
File path: fe/fe-core/src/main/java/org/apache/doris/common/Config.java
##########
@@ -735,9 +735,17 @@
*/
@ConfField(mutable = true, masterOnly = true)
public static int max_backend_down_time_second = 3600; // 1h
+
+ /**
+ * If disable_storage_medium_check is true, ReportHandler would not check
tablet's storage medium
+ * and disable storage cool down function, the default value is false.
+ * You can set the value true when you don't care what the storage medium
of the tablet is.
+ */
+ @ConfField(mutable = true, masterOnly = true)
+ public static boolean disable_storage_medium_check = false;
Review comment:
enable_strict_storage_medium_check make the user confused, if we really
need to check storage_medium, we should not create table without consider
storage medium and then produce many migration task usually failed because that
user not use this feature and all storage medium are same. If we not care the
storage medium, just disable this check, which can save a lot of time for
tablet report, because it is meanless to distinguish ssd from hdd for some
users while user not need cool down feature.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]