blob: c967183230918785af23ea9555784df9972e1847 [file] [log] [blame]
//
//
// Copyright 2017 gRPC authors.
//
// Licensed 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 <grpc/support/port_platform.h>
#include "src/core/client_channel/retry_throttle.h"
#include <map>
#include <string>
#include <utility>
#include <grpc/support/atm.h>
namespace grpc_core {
namespace internal {
//
// ServerRetryThrottleData
//
ServerRetryThrottleData::ServerRetryThrottleData(
uintptr_t max_milli_tokens, uintptr_t milli_token_ratio,
ServerRetryThrottleData* old_throttle_data)
: max_milli_tokens_(max_milli_tokens),
milli_token_ratio_(milli_token_ratio) {
uintptr_t initial_milli_tokens = max_milli_tokens;
// If there was a pre-existing entry for this server name, initialize
// the token count by scaling proportionately to the old data. This
// ensures that if we're already throttling retries on the old scale,
// we will start out doing the same thing on the new one.
if (old_throttle_data != nullptr) {
double token_fraction =
static_cast<uintptr_t>(
gpr_atm_acq_load(&old_throttle_data->milli_tokens_)) /
static_cast<double>(old_throttle_data->max_milli_tokens_);
initial_milli_tokens =
static_cast<uintptr_t>(token_fraction * max_milli_tokens);
}
gpr_atm_rel_store(&milli_tokens_, static_cast<gpr_atm>(initial_milli_tokens));
// If there was a pre-existing entry, mark it as stale and give it a
// pointer to the new entry, which is its replacement.
if (old_throttle_data != nullptr) {
Ref().release(); // Ref held by pre-existing entry.
gpr_atm_rel_store(&old_throttle_data->replacement_,
reinterpret_cast<gpr_atm>(this));
}
}
ServerRetryThrottleData::~ServerRetryThrottleData() {
ServerRetryThrottleData* replacement =
reinterpret_cast<ServerRetryThrottleData*>(
gpr_atm_acq_load(&replacement_));
if (replacement != nullptr) {
replacement->Unref();
}
}
void ServerRetryThrottleData::GetReplacementThrottleDataIfNeeded(
ServerRetryThrottleData** throttle_data) {
while (true) {
ServerRetryThrottleData* new_throttle_data =
reinterpret_cast<ServerRetryThrottleData*>(
gpr_atm_acq_load(&(*throttle_data)->replacement_));
if (new_throttle_data == nullptr) return;
*throttle_data = new_throttle_data;
}
}
bool ServerRetryThrottleData::RecordFailure() {
// First, check if we are stale and need to be replaced.
ServerRetryThrottleData* throttle_data = this;
GetReplacementThrottleDataIfNeeded(&throttle_data);
// We decrement milli_tokens by 1000 (1 token) for each failure.
const uintptr_t new_value =
static_cast<uintptr_t>(gpr_atm_no_barrier_clamped_add(
&throttle_data->milli_tokens_, gpr_atm{-1000}, gpr_atm{0},
static_cast<gpr_atm>(throttle_data->max_milli_tokens_)));
// Retries are allowed as long as the new value is above the threshold
// (max_milli_tokens / 2).
return new_value > throttle_data->max_milli_tokens_ / 2;
}
void ServerRetryThrottleData::RecordSuccess() {
// First, check if we are stale and need to be replaced.
ServerRetryThrottleData* throttle_data = this;
GetReplacementThrottleDataIfNeeded(&throttle_data);
// We increment milli_tokens by milli_token_ratio for each success.
gpr_atm_no_barrier_clamped_add(
&throttle_data->milli_tokens_,
static_cast<gpr_atm>(throttle_data->milli_token_ratio_), gpr_atm{0},
static_cast<gpr_atm>(throttle_data->max_milli_tokens_));
}
//
// ServerRetryThrottleMap
//
ServerRetryThrottleMap* ServerRetryThrottleMap::Get() {
static ServerRetryThrottleMap* m = new ServerRetryThrottleMap();
return m;
}
RefCountedPtr<ServerRetryThrottleData> ServerRetryThrottleMap::GetDataForServer(
const std::string& server_name, uintptr_t max_milli_tokens,
uintptr_t milli_token_ratio) {
MutexLock lock(&mu_);
auto it = map_.find(server_name);
ServerRetryThrottleData* throttle_data =
it == map_.end() ? nullptr : it->second.get();
if (throttle_data == nullptr ||
throttle_data->max_milli_tokens() != max_milli_tokens ||
throttle_data->milli_token_ratio() != milli_token_ratio) {
// Entry not found, or found with old parameters. Create a new one.
it = map_.emplace(server_name,
MakeRefCounted<ServerRetryThrottleData>(
max_milli_tokens, milli_token_ratio, throttle_data))
.first;
throttle_data = it->second.get();
}
return throttle_data->Ref();
}
} // namespace internal
} // namespace grpc_core