Kikyou1997 commented on code in PR #26163:
URL: https://github.com/apache/doris/pull/26163#discussion_r1381223608
##########
fe/fe-core/src/main/java/org/apache/doris/statistics/StatisticsAutoCollector.java:
##########
@@ -113,7 +113,7 @@ protected boolean skip(TableIf table) {
if (!(table instanceof OlapTable || table instanceof ExternalTable)) {
return true;
}
- if (table.getDataSize(true) <
Config.huge_table_lower_bound_size_in_bytes) {
+ if (table.getDataSize(true) <
Config.huge_table_lower_bound_size_in_bytes * 5) {
Review Comment:
控制size为大于Config.huge_table_lower_bound_size_in_bytes五倍的表的收集频率
##########
fe/fe-core/src/main/java/org/apache/doris/statistics/StatisticsAutoCollector.java:
##########
@@ -113,7 +113,7 @@ protected boolean skip(TableIf table) {
if (!(table instanceof OlapTable || table instanceof ExternalTable)) {
return true;
}
- if (table.getDataSize(true) <
Config.huge_table_lower_bound_size_in_bytes) {
+ if (table.getDataSize(true) <
Config.huge_table_lower_bound_size_in_bytes * 5) {
Review Comment:
控制size为大于Config.huge_table_lower_bound_size_in_bytes五倍的表的收集频率
--
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]