-
Notifications
You must be signed in to change notification settings - Fork 4.1k
feat(backup_request): add rate-limited backup request policy (#3228) #3229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
feng-y
wants to merge
1
commit into
apache:master
Choose a base branch
from
feng-y:feat/rate-limited-backup-request
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+453
−4
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,205 @@ | ||
| // Licensed to the Apache Software Foundation (ASF) under one | ||
| // or more contributor license agreements. See the NOTICE file | ||
| // distributed with this work for additional information | ||
| // regarding copyright ownership. The ASF licenses this file | ||
| // to you under the Apache License, Version 2.0 (the | ||
| // "License"); you may not use this file except in compliance | ||
| // with the License. You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, | ||
| // software distributed under the License is distributed on an | ||
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| // KIND, either express or implied. See the License for the | ||
| // specific language governing permissions and limitations | ||
| // under the License. | ||
|
|
||
| #include "brpc/backup_request_policy.h" | ||
|
|
||
| #include <new> // std::nothrow | ||
| #include <gflags/gflags.h> | ||
| #include "butil/logging.h" | ||
| #include "brpc/reloadable_flags.h" | ||
| #include "bvar/reducer.h" | ||
| #include "bvar/window.h" | ||
| #include "butil/atomicops.h" | ||
| #include "butil/time.h" | ||
|
|
||
| namespace brpc { | ||
|
|
||
| DEFINE_double(backup_request_max_ratio, -1, | ||
| "Maximum ratio of backup requests to total requests. " | ||
| "Value in (0, 1] enables rate limiting. Values <= 0 disable it " | ||
| "(-1 is default). Can be overridden per-channel via " | ||
| "ChannelOptions.backup_request_max_ratio. " | ||
| "Note: takes effect at Channel::Init() time; changing this flag " | ||
| "at runtime does not affect already-created channels."); | ||
|
|
||
| static bool validate_backup_request_max_ratio(const char*, double v) { | ||
| if (v <= 0) return true; // non-positive means disabled | ||
| if (v <= 1.0) return true; | ||
| LOG(ERROR) << "Invalid backup_request_max_ratio=" << v | ||
| << ", must be <= 0 (disabled) or in (0, 1]"; | ||
| return false; | ||
feng-y marked this conversation as resolved.
Show resolved
Hide resolved
feng-y marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| BRPC_VALIDATE_GFLAG(backup_request_max_ratio, | ||
| validate_backup_request_max_ratio); | ||
|
|
||
| DEFINE_int32(backup_request_ratio_window_size_s, 10, | ||
| "Window size in seconds for computing the backup request ratio. " | ||
| "Must be in [1, 3600]."); | ||
|
|
||
| static bool validate_backup_request_ratio_window_size_s( | ||
| const char*, int32_t v) { | ||
| if (v >= 1 && v <= 3600) return true; | ||
| LOG(ERROR) << "Invalid backup_request_ratio_window_size_s=" << v | ||
| << ", must be in [1, 3600]"; | ||
| return false; | ||
| } | ||
| BRPC_VALIDATE_GFLAG(backup_request_ratio_window_size_s, | ||
| validate_backup_request_ratio_window_size_s); | ||
|
|
||
feng-y marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| DEFINE_int32(backup_request_ratio_update_interval_s, 5, | ||
| "Interval in seconds between ratio cache updates. Must be >= 1."); | ||
|
|
||
feng-y marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| static bool validate_backup_request_ratio_update_interval_s( | ||
| const char*, int32_t v) { | ||
| if (v >= 1) return true; | ||
| LOG(ERROR) << "Invalid backup_request_ratio_update_interval_s=" << v | ||
| << ", must be >= 1"; | ||
| return false; | ||
| } | ||
| BRPC_VALIDATE_GFLAG(backup_request_ratio_update_interval_s, | ||
| validate_backup_request_ratio_update_interval_s); | ||
|
|
||
| // Standalone statistics module for tracking backup/total request ratio | ||
| // within a sliding time window. Each instance schedules two bvar::Window | ||
| // sampler tasks; keep this in mind for high channel-count deployments. | ||
| class BackupRateLimiter { | ||
| public: | ||
| BackupRateLimiter(double max_backup_ratio, | ||
| int window_size_seconds, | ||
| int update_interval_seconds) | ||
| : _max_backup_ratio(max_backup_ratio) | ||
| , _update_interval_us(update_interval_seconds * 1000000LL) | ||
| , _total_count() | ||
| , _backup_count() | ||
| , _total_window(&_total_count, window_size_seconds) | ||
| , _backup_window(&_backup_count, window_size_seconds) | ||
| , _cached_ratio(0.0) | ||
| , _last_update_us(0) { | ||
| } | ||
|
|
||
| // All atomic operations use relaxed ordering intentionally. | ||
| // This is best-effort rate limiting: a slightly stale ratio is | ||
| // acceptable for approximate throttling. | ||
| bool ShouldAllow() const { | ||
| const int64_t now_us = butil::cpuwide_time_us(); | ||
| int64_t last_us = _last_update_us.load(butil::memory_order_relaxed); | ||
| double ratio = _cached_ratio.load(butil::memory_order_relaxed); | ||
|
|
||
| if (now_us - last_us >= _update_interval_us) { | ||
| if (_last_update_us.compare_exchange_strong( | ||
| last_us, now_us, butil::memory_order_relaxed)) { | ||
| int64_t total = _total_window.get_value(); | ||
| int64_t backup = _backup_window.get_value(); | ||
| ratio = (total > 0) ? static_cast<double>(backup) / total : 0.0; | ||
| _cached_ratio.store(ratio, butil::memory_order_relaxed); | ||
| } | ||
| } | ||
|
|
||
| // max_backup_ratio >= 1.0 means no limit (ratio cannot exceed 1.0). | ||
| bool allow = _max_backup_ratio >= 1.0 || ratio < _max_backup_ratio; | ||
| if (allow) { | ||
| // Count backup decisions immediately for faster feedback | ||
| // during latency spikes (before RPCs complete). | ||
| _backup_count << 1; | ||
| } | ||
| return allow; | ||
| } | ||
feng-y marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| void OnRPCEnd(const Controller* /*controller*/) { | ||
| // Count all completed RPCs. Backup decisions are counted | ||
| // in ShouldAllow() at decision time for faster feedback. | ||
| _total_count << 1; | ||
| } | ||
|
|
||
| private: | ||
| double _max_backup_ratio; | ||
| int64_t _update_interval_us; | ||
|
|
||
| bvar::Adder<int64_t> _total_count; | ||
| mutable bvar::Adder<int64_t> _backup_count; | ||
| bvar::Window<bvar::Adder<int64_t>> _total_window; | ||
| bvar::Window<bvar::Adder<int64_t>> _backup_window; | ||
|
|
||
| mutable butil::atomic<double> _cached_ratio; | ||
| mutable butil::atomic<int64_t> _last_update_us; | ||
| }; | ||
|
|
||
| // Internal BackupRequestPolicy that composes a BackupRateLimiter | ||
| // for ratio-based suppression. | ||
| class RateLimitedBackupPolicy : public BackupRequestPolicy { | ||
| public: | ||
| RateLimitedBackupPolicy(int32_t backup_request_ms, | ||
| double max_backup_ratio, | ||
| int window_size_seconds, | ||
| int update_interval_seconds) | ||
| : _backup_request_ms(backup_request_ms) | ||
| , _rate_limiter(max_backup_ratio, window_size_seconds, | ||
| update_interval_seconds) { | ||
| } | ||
|
|
||
| int32_t GetBackupRequestMs(const Controller* /*controller*/) const override { | ||
| return _backup_request_ms; | ||
| } | ||
|
|
||
| bool DoBackup(const Controller* /*controller*/) const override { | ||
| return _rate_limiter.ShouldAllow(); | ||
| } | ||
|
|
||
| void OnRPCEnd(const Controller* controller) override { | ||
| _rate_limiter.OnRPCEnd(controller); | ||
| } | ||
|
|
||
| private: | ||
| int32_t _backup_request_ms; | ||
| BackupRateLimiter _rate_limiter; | ||
| }; | ||
|
|
||
| BackupRequestPolicy* CreateRateLimitedBackupPolicy( | ||
| int32_t backup_request_ms, | ||
| double max_backup_ratio, | ||
| int window_size_seconds, | ||
| int update_interval_seconds) { | ||
| if (backup_request_ms < 0) { | ||
| LOG(ERROR) << "Invalid backup_request_ms=" << backup_request_ms | ||
| << ", must be >= 0"; | ||
| return NULL; | ||
| } | ||
| if (max_backup_ratio <= 0 || max_backup_ratio > 1.0) { | ||
| LOG(ERROR) << "Invalid max_backup_ratio=" << max_backup_ratio | ||
| << ", must be in (0, 1]"; | ||
| return NULL; | ||
feng-y marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| if (window_size_seconds < 1 || window_size_seconds > 3600) { | ||
| LOG(ERROR) << "Invalid window_size_seconds=" << window_size_seconds | ||
| << ", must be in [1, 3600]"; | ||
| return NULL; | ||
| } | ||
| if (update_interval_seconds < 1) { | ||
| LOG(ERROR) << "Invalid update_interval_seconds=" | ||
| << update_interval_seconds << ", must be >= 1"; | ||
| return NULL; | ||
| } | ||
| RateLimitedBackupPolicy* policy = new (std::nothrow) RateLimitedBackupPolicy( | ||
| backup_request_ms, max_backup_ratio, | ||
feng-y marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| window_size_seconds, update_interval_seconds); | ||
| if (!policy) { | ||
| LOG(ERROR) << "Fail to allocate RateLimitedBackupPolicy"; | ||
| } | ||
| return policy; | ||
| } | ||
|
|
||
| } // namespace brpc | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.