gavinchou commented on code in PR #60882: URL: https://github.com/apache/doris/pull/60882#discussion_r2867251573
########## cloud/src/common/config.h: ########## @@ -245,6 +245,10 @@ CONF_Int32(txn_store_retry_base_intervals_ms, "500"); CONF_Bool(enable_retry_txn_conflict, "true"); CONF_mBool(enable_s3_rate_limiter, "false"); +// Fault injection: randomly return rate limit error for PUT (delete) operations, for testing recycler. +// s3_rate_limit_inject_prob is the probability (0-100) of injecting a rate limit error. +CONF_mBool(enable_s3_rate_limit_inject, "false"); +CONF_mInt32(s3_rate_limit_inject_prob, "30"); Review Comment: use fullname, s3_rate_limit_inject_prob -> s3_rate_limit_inject_probility -- 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]
