forked from googleapis/google-cloud-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
session_pool.h
246 lines (214 loc) · 9.64 KB
/
session_pool.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
// Copyright 2019 Google LLC
//
// 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
//
// https://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.
#ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_SPANNER_INTERNAL_SESSION_POOL_H
#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_SPANNER_INTERNAL_SESSION_POOL_H
#include "google/cloud/spanner/backoff_policy.h"
#include "google/cloud/spanner/database.h"
#include "google/cloud/spanner/internal/channel.h"
#include "google/cloud/spanner/internal/session.h"
#include "google/cloud/spanner/internal/spanner_stub.h"
#include "google/cloud/spanner/retry_policy.h"
#include "google/cloud/spanner/version.h"
#include "google/cloud/backoff_policy.h"
#include "google/cloud/completion_queue.h"
#include "google/cloud/future.h"
#include "google/cloud/status_or.h"
#include "absl/container/fixed_array.h"
#include <google/spanner/v1/spanner.pb.h>
#include <chrono>
#include <condition_variable>
#include <cstddef>
#include <map>
#include <memory>
#include <mutex>
#include <random>
#include <string>
#include <utility>
#include <vector>
namespace google {
namespace cloud {
namespace spanner_internal {
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
struct SessionPoolFriendForTest;
// An option for the Clock that the session pool will use. This is an injection
// point to facility unit testing.
struct SessionPoolClockOption {
using Type = std::shared_ptr<Session::Clock>;
};
class SessionPool;
/**
* Create a `SessionPool`.
*
* The parameters allow the `SessionPool` to make remote calls needed to manage
* the pool, and to associate `Session`s with the stubs used to create them.
* `stubs` must not be empty.
*/
std::shared_ptr<SessionPool> MakeSessionPool(
spanner::Database db, std::vector<std::shared_ptr<SpannerStub>> stubs,
google::cloud::CompletionQueue cq, Options opts);
/**
* Maintains a pool of `Session` objects.
*
* Session creation is relatively expensive (30-100ms), so we keep a pool of
* Sessions to avoid incurring the overhead of creating a Session for every
* Transaction. Typically, we will allocate a `Session` from the pool the
* first time we use a `Transaction`, then return it to the pool when the
* `Transaction` finishes.
*
* Allocation from the pool is LIFO to take advantage of the fact the Spanner
* backends maintain a cache of sessions which is valid for 30 seconds, so
* re-using Sessions as quickly as possible has performance advantages.
*/
class SessionPool : public std::enable_shared_from_this<SessionPool> {
public:
~SessionPool();
/**
* Allocates a "regular" session from the pool, which only supports a
* single transaction at a time, whether read-write or read-only, creating
* a new one if necessary.
*
* The returned `SessionHolder` will return the `Session` to this pool,
* unless `dissociate_from_pool` is true, in which case it is not returned
* to the pool. This is used in partitioned operations, since we don't
* know when all parties are done using the session.
*
* @return a `SessionHolder` on success (which is guaranteed not to be
* `nullptr`), or an error.
*/
StatusOr<SessionHolder> Allocate(bool dissociate_from_pool = false);
/**
* Returns the multiplexed session, which allows an unbounded number of
* concurrent operations, and has no affinity to a single gRPC channel.
* A multiplexed session is long-lived, but does not require keep-alive
* requests when idle.
*
* May fallback to a "regular" session if no multiplexed session has
* been allocated.
*
* @return a `SessionHolder` on success (which is guaranteed not to be
* `nullptr`), or an error.
*/
StatusOr<SessionHolder> Multiplexed();
/**
* Return a `SpannerStub` to be used when making calls using `session`.
*/
std::shared_ptr<SpannerStub> GetStub(Session const& session);
private:
friend std::shared_ptr<SessionPool> MakeSessionPool(
spanner::Database, std::vector<std::shared_ptr<SpannerStub>>,
google::cloud::CompletionQueue, Options);
/**
* Construct a `SessionPool`.
*
* @warning Must call Initialize() once immediately after the constructor.
*/
SessionPool(spanner::Database db,
std::vector<std::shared_ptr<SpannerStub>> stubs,
google::cloud::CompletionQueue cq, Options opts);
void Initialize();
// Represents a request to create `session_count` sessions on `channel`
// See `ComputeCreateCounts` and `CreateSessions`.
struct CreateCount {
std::shared_ptr<Channel> channel;
int session_count;
};
enum class WaitForSessionAllocation { kWait, kNoWait };
// Allocate a session from the pool.
StatusOr<SessionHolder> Allocate(std::unique_lock<std::mutex>,
bool dissociate_from_pool);
// Returns a stub to use by round-robining between the channels.
std::shared_ptr<SpannerStub> GetStub(std::unique_lock<std::mutex>);
// Release session back to the pool.
void Release(std::unique_ptr<Session> session);
// Called when a thread needs to wait for a `Session` to become available.
// @p specifies the condition to wait for.
template <typename Predicate>
void Wait(std::unique_lock<std::mutex>& lk, Predicate&& p) {
++num_waiting_for_session_;
cond_.wait(lk, std::forward<Predicate>(p));
--num_waiting_for_session_;
}
Status CreateMultiplexedSession(); // LOCKS_EXCLUDED(mu_)
StatusOr<std::string> CreateMultiplexedSession(
std::shared_ptr<SpannerStub>) const;
bool HasValidMultiplexedSession(std::unique_lock<std::mutex> const&) const;
Status Grow(std::unique_lock<std::mutex>& lk, int sessions_to_create,
WaitForSessionAllocation wait); // EXCLUSIVE_LOCKS_REQUIRED(mu_)
StatusOr<std::vector<CreateCount>> ComputeCreateCounts(
int sessions_to_create); // EXCLUSIVE_LOCKS_REQUIRED(mu_)
Status CreateSessions(std::vector<CreateCount> const& create_counts,
WaitForSessionAllocation wait); // LOCKS_EXCLUDED(mu_)
Status CreateSessionsSync(std::shared_ptr<Channel> const& channel,
std::map<std::string, std::string> const& labels,
std::string const& role,
int num_sessions); // LOCKS_EXCLUDED(mu_)
void CreateSessionsAsync(std::shared_ptr<Channel> const& channel,
std::map<std::string, std::string> const& labels,
std::string const& role,
int num_sessions); // LOCKS_EXCLUDED(mu_)
SessionHolder MakeSessionHolder(std::unique_ptr<Session> session,
bool dissociate_from_pool);
friend struct SessionPoolFriendForTest; // To test Async*()
// Asynchronous calls used to maintain the pool.
future<StatusOr<google::spanner::v1::BatchCreateSessionsResponse>>
AsyncBatchCreateSessions(CompletionQueue& cq,
std::shared_ptr<SpannerStub> const& stub,
std::map<std::string, std::string> const& labels,
std::string const& role, int num_sessions);
future<Status> AsyncDeleteSession(CompletionQueue& cq,
std::shared_ptr<SpannerStub> const& stub,
std::string session_name);
future<StatusOr<google::spanner::v1::ResultSet>> AsyncRefreshSession(
CompletionQueue& cq, std::shared_ptr<SpannerStub> const& stub,
std::string session_name);
Status HandleBatchCreateSessionsDone(
std::shared_ptr<Channel> const& channel,
StatusOr<google::spanner::v1::BatchCreateSessionsResponse> response);
void ScheduleBackgroundWork(std::chrono::seconds relative_time);
void DoBackgroundWork();
void MaintainPoolSize();
void RefreshExpiringSessions();
// Remove the named session from the pool (if it is present).
void Erase(std::string const& session_name);
spanner::Database const db_;
google::cloud::CompletionQueue cq_;
Options const opts_;
std::unique_ptr<spanner::RetryPolicy const> retry_policy_prototype_;
std::unique_ptr<spanner::BackoffPolicy const> backoff_policy_prototype_;
std::shared_ptr<Session::Clock> clock_;
int const max_pool_size_;
std::mt19937 random_generator_;
std::mutex mu_;
std::condition_variable cond_;
SessionHolder multiplexed_session_; // GUARDED_BY(mu_)
std::vector<std::unique_ptr<Session>> sessions_; // GUARDED_BY(mu_)
int total_sessions_ = 0; // GUARDED_BY(mu_)
int create_calls_in_progress_ = 0; // GUARDED_BY(mu_)
int num_waiting_for_session_ = 0; // GUARDED_BY(mu_)
// Lower bound on all `sessions_[i]->last_use_time()` values.
Session::Clock::time_point last_use_time_lower_bound_ =
clock_->Now(); // GUARDED_BY(mu_)
future<void> current_timer_;
// `channels_` is guaranteed to be non-empty and will not be resized after
// the constructor runs.
// n.b. `FixedArray` iterators are never invalidated.
using ChannelVec = absl::FixedArray<std::shared_ptr<Channel>>;
ChannelVec channels_; // GUARDED_BY(mu_)
ChannelVec::iterator next_dissociated_stub_channel_; // GUARDED_BY(mu_)
};
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
} // namespace spanner_internal
} // namespace cloud
} // namespace google
#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_SPANNER_INTERNAL_SESSION_POOL_H