You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2021/08/09 03:06:56 UTC

[GitHub] [incubator-doris] morningman commented on a change in pull request #6047: [Enhance] Add config to limit the max size of simple tablet

morningman commented on a change in pull request #6047:
URL: https://github.com/apache/incubator-doris/pull/6047#discussion_r684880090



##########
File path: be/src/common/config.h
##########
@@ -578,6 +578,11 @@ CONF_Int32(query_cache_max_partition_count, "1024");
 // This is to avoid too many version num.
 CONF_mInt32(max_tablet_version_num, "500");
 
+// Maximum size of a tablet, the unit is MB. If the size of a tablet exceed limit, the load process
+// will reject new incoming load job of this tablet. This is to avoid too large tablet.
+// There is no limit to tablet size when the parameter is set to "0".
+CONF_mInt32(max_tablet_size_mb, "0");

Review comment:
       What can user do if a tablet's size exceed the limit?




-- 
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: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org