[enhancement](memory) reduce memory usage for failed broker loads (#15895)

* [enhancement](memory) reduce memory usage for failed  broker loads
This commit is contained in:
Zhengguo Yang
2023-01-30 10:22:31 +08:00
committed by GitHub
parent 69e748b076
commit ec4a56922f
5 changed files with 29 additions and 2 deletions

View File

@ -1956,6 +1956,12 @@ public class Config extends ConfigBase {
@ConfField(masterOnly = true)
public static int hms_events_polling_interval_ms = 10000;
/**
* Maximum number of error tablets showed in broker load
*/
@ConfField(masterOnly = true, mutable = true)
public static int max_error_tablet_of_broker_load = 3;
@ConfField(mutable = false)
public static int topn_two_phase_limit_threshold = 512;
}