OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PerBalancerStore
(Results
1 - 5
of
5
) sorted by null
/external/grpc-grpc/src/cpp/server/load_reporter/
load_data_store.cc
141
void
PerBalancerStore
::MergeRow(const LoadRecordKey& key,
147
"[
PerBalancerStore
%p] Load data merged (Key: %s, Value: %s).",
151
"[
PerBalancerStore
%p] Load data dropped (Key: %s, Value: %s).",
163
void
PerBalancerStore
::Suspend() {
166
gpr_log(GPR_DEBUG, "[
PerBalancerStore
%p] Suspended.", this);
169
void
PerBalancerStore
::Resume() {
171
gpr_log(GPR_DEBUG, "[
PerBalancerStore
%p] Resumed.", this);
174
uint64_t
PerBalancerStore
::GetNumCallsInProgressForReport() {
192
const std::unique_ptr<
PerBalancerStore
>& orphaned_store = p.second;
213
std::set<
PerBalancerStore
*> orphaned_stores
[
all
...]
load_data_store.h
38
// PerHostStore, in which for each balancer we keep a
PerBalancerStore
. Each
39
//
PerBalancerStore
maintains a map of load records, mapping from LoadRecordKey
195
class
PerBalancerStore
{
200
PerBalancerStore
(grpc::string lb_id, grpc::string load_key)
221
return "[
PerBalancerStore
lb_id_=" + lb_id_ + " load_key_=" + load_key_ +
245
// When a report stream is created, a
PerBalancerStore
is created for the
260
PerBalancerStore
* FindPerBalancerStore(const grpc::string& lb_id) const;
264
const std::set<
PerBalancerStore
*>* GetAssignedStores(
268
// Creates a
PerBalancerStore
for the given LB ID, assigns the store to
272
void AssignOrphanedStore(
PerBalancerStore
* orphaned_store
[
all
...]
load_reporter.h
211
const
PerBalancerStore
& per_balancer_store);
load_reporter.cc
298
for (
PerBalancerStore
* per_balancer_store : *assigned_stores) {
353
::grpc::lb::v1::Load* load, const
PerBalancerStore
& per_balancer_store) {
/external/grpc-grpc/test/cpp/server/load_reporter/
load_data_store_test.cc
39
using ::grpc::load_reporter::
PerBalancerStore
;
52
const std::set<
PerBalancerStore
*>* per_balancer_stores,
215
// Detailed load data won't be kept when the
PerBalancerStore
is suspended.
326
// No
PerBalancerStore
created for Unknown LB ID.
352
PerBalancerStore
per_balancer_store(kLbId1, kLoadKey1);
394
PerBalancerStore
per_balancer_store(kLbId1, kLoadKey1);
Completed in 122 milliseconds