-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathcron.c
326 lines (283 loc) · 8.37 KB
/
cron.c
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
/*
* Odyssey.
*
* Scalable PostgreSQL connection pooler.
*/
#include <kiwi.h>
#include <machinarium.h>
#include <odyssey.h>
#include <stdlib.h>
#include <stdio.h>
static int od_cron_stat_cb(od_route_t *route, od_stat_t *current,
od_stat_t *avg,
#ifdef PROM_FOUND
od_prom_metrics_t *metrics,
#endif
void **argv)
{
od_instance_t *instance = argv[0];
(void)current;
struct {
int database_len;
char database[64];
int user_len;
char user[64];
int obsolete;
int client_pool_total;
int server_pool_active;
int server_pool_idle;
uint64_t avg_count_tx;
uint64_t avg_tx_time;
uint64_t avg_count_query;
uint64_t avg_query_time;
uint64_t avg_recv_client;
uint64_t avg_recv_server;
} info;
od_route_lock(route);
info.database_len = od_snprintf(info.database, sizeof(info.database),
"%s", route->rule->db_name);
info.user_len = od_snprintf(info.user, sizeof(info.user), "%s",
route->rule->user_name);
info.obsolete = route->rule->obsolete;
info.client_pool_total = od_client_pool_total(&route->client_pool);
info.server_pool_active = route->server_pool.count_active;
info.server_pool_idle = route->server_pool.count_idle;
info.avg_count_query = avg->count_query;
info.avg_count_tx = avg->count_tx;
info.avg_query_time = avg->query_time;
info.avg_tx_time = avg->tx_time;
info.avg_recv_server = avg->recv_server;
info.avg_recv_client = avg->recv_client;
od_route_unlock(route);
#ifdef PROM_FOUND
if (instance->config.log_general_stats_prom) {
od_prom_metrics_write_stat_cb(
metrics, info.user, info.database, info.database_len,
info.user_len, info.client_pool_total,
info.server_pool_active, info.server_pool_idle,
info.avg_count_tx, info.avg_tx_time,
info.avg_count_query, info.avg_query_time,
info.avg_recv_client, info.avg_recv_server);
if (instance->config.log_route_stats_prom) {
const char *prom_log =
od_prom_metrics_get_stat_cb(metrics);
od_logger_write_plain(&instance->logger, OD_LOG,
"stats", NULL, NULL, prom_log);
free(prom_log);
}
}
#endif
od_log(&instance->logger, "stats", NULL, NULL,
"[%.*s.%.*s%s] %d clients, "
"%d active servers, "
"%d idle servers, "
"%" PRIu64 " transactions/sec (%" PRIu64 " usec) "
"%" PRIu64 " queries/sec (%" PRIu64 " usec) "
"%" PRIu64 " in bytes/sec, "
"%" PRIu64 " out bytes/sec",
info.database_len, info.database, info.user_len, info.user,
info.obsolete ? " obsolete" : "", info.client_pool_total,
info.server_pool_active, info.server_pool_idle,
info.avg_count_tx, info.avg_tx_time, info.avg_count_query,
info.avg_query_time, info.avg_recv_client, info.avg_recv_server);
return 0;
}
static inline void send_msg_stat(machine_channel_t *chan)
{
machine_msg_t *msg;
msg = machine_msg_create(0);
machine_msg_set_type(msg, OD_MSG_STAT);
machine_channel_write(chan, msg);
}
static inline void request_logger_stats(od_logger_t *logger)
{
send_msg_stat(logger->task_channel);
}
static inline void request_worker_stats(od_worker_pool_t *worker_pool)
{
uint32_t i;
for (i = 0; i < worker_pool->count; i++) {
od_worker_t *worker = &worker_pool->pool[i];
send_msg_stat(worker->task_channel);
}
}
static inline void od_cron_stat(od_cron_t *cron)
{
od_router_t *router = cron->global->router;
od_instance_t *instance = cron->global->instance;
od_worker_pool_t *worker_pool = cron->global->worker_pool;
if (instance->config.log_stats) {
/* system worker stats */
uint64_t count_coroutine = 0;
uint64_t count_coroutine_cache = 0;
uint64_t msg_allocated = 0;
uint64_t msg_cache_count = 0;
uint64_t msg_cache_gc_count = 0;
uint64_t msg_cache_size = 0;
od_atomic_u64_t startup_errors =
od_atomic_u64_of(&cron->startup_errors);
cron->startup_errors = 0;
machine_stat(&count_coroutine, &count_coroutine_cache,
&msg_allocated, &msg_cache_count,
&msg_cache_gc_count, &msg_cache_size);
#ifdef PROM_FOUND
if (instance->config.log_general_stats_prom) {
od_prom_metrics_write_stat(
cron->metrics, msg_allocated, msg_cache_count,
msg_cache_gc_count, msg_cache_size,
count_coroutine, count_coroutine_cache);
char *prom_log =
od_prom_metrics_get_stat(cron->metrics);
od_logger_write_plain(&instance->logger, OD_LOG,
"stats", NULL, NULL, prom_log);
free(prom_log);
}
#endif
od_log(&instance->logger, "stats", NULL, NULL,
"system worker: msg (%" PRIu64 " allocated, %" PRIu64
" cached, %" PRIu64 " freed, %" PRIu64 " cache_size), "
"coroutines (%" PRIu64 " active, %" PRIu64
" cached) startup errors %" PRIu64,
msg_allocated, msg_cache_count, msg_cache_gc_count,
msg_cache_size, count_coroutine, count_coroutine_cache,
startup_errors);
/* request stats per worker */
request_worker_stats(worker_pool);
request_logger_stats(&instance->logger);
od_log(&instance->logger, "stats", NULL, NULL, "clients %d",
od_atomic_u32_of(&router->clients));
}
/* update stats per route and print info */
od_route_pool_stat_cb_t stat_cb;
if (!instance->config.log_stats) {
stat_cb = NULL;
} else {
stat_cb = od_cron_stat_cb;
}
void *argv[] = { instance };
od_router_stat(router, cron->stat_time_us,
#ifdef PROM_FOUND
cron->metrics,
#endif
stat_cb, argv);
/* update current stat time mark */
cron->stat_time_us = machine_time_us();
}
static inline void od_cron_expire(od_cron_t *cron)
{
od_router_t *router = cron->global->router;
od_instance_t *instance = cron->global->instance;
/* collect and close expired idle servers */
od_list_t expire_list;
od_list_init(&expire_list);
int rc;
rc = od_router_expire(router, &expire_list);
if (rc > 0) {
od_list_t *i, *n;
od_list_foreach_safe(&expire_list, i, n)
{
od_server_t *server;
server = od_container_of(i, od_server_t, link);
od_debug(&instance->logger, "expire", NULL, server,
"closing idle server connection (%d secs)",
server->idle_time);
server->route = NULL;
od_backend_close_connection(server);
od_backend_close(server);
}
}
/* cleanup unused dynamic or obsolete routes */
od_router_gc(router);
}
static void od_cron_err_stat(od_cron_t *cron)
{
od_router_t *router = cron->global->router;
od_list_t *it;
od_list_foreach(&router->route_pool.list, it)
{
od_route_t *current_route =
od_container_of(it, od_route_t, link);
od_route_lock(current_route);
{
if (current_route->extra_logging_enabled) {
od_err_logger_inc_interval(
current_route->err_logger);
}
}
od_route_unlock(current_route);
}
od_router_lock(router)
{
od_err_logger_inc_interval(router->router_err_logger);
}
od_router_unlock(router)
od_route_pool_lock(router->route_pool)
{
od_err_logger_inc_interval(router->route_pool.err_logger);
}
od_route_pool_unlock(router->route_pool)
}
static void od_cron(void *arg)
{
od_cron_t *cron = arg;
od_instance_t *instance = cron->global->instance;
cron->stat_time_us = machine_time_us();
cron->online = 1;
int stats_tick = 0;
for (;;) {
if (!cron->online) {
return;
}
// we take a lock here
// to prevent usage routes that are deallocated while shutdown
pthread_mutex_lock(&cron->lock);
{
/* mark and sweep expired idle server connections */
od_cron_expire(cron);
/* update statistics */
if (++stats_tick >= instance->config.stats_interval) {
od_cron_stat(cron);
stats_tick = 0;
}
od_cron_err_stat(cron);
}
pthread_mutex_unlock(&cron->lock);
/* 1 second soft interval */
machine_sleep(1000);
}
}
void od_cron_init(od_cron_t *cron)
{
cron->stat_time_us = 0;
cron->global = NULL;
cron->startup_errors = 0;
#ifdef PROM_FOUND
cron->metrics = (od_prom_metrics_t *)malloc(sizeof(od_prom_metrics_t));
cron->metrics->port = 0;
cron->metrics->http_server = NULL;
#endif
cron->online = 0;
pthread_mutex_init(&cron->lock, NULL);
}
int od_cron_start(od_cron_t *cron, od_global_t *global)
{
cron->global = global;
od_instance_t *instance = global->instance;
int64_t coroutine_id;
coroutine_id = machine_coroutine_create(od_cron, cron);
if (coroutine_id == INVALID_COROUTINE_ID) {
od_error(&instance->logger, "cron", NULL, NULL,
"failed to start cron coroutine");
return NOT_OK_RESPONSE;
}
return OK_RESPONSE;
}
od_retcode_t od_cron_stop(od_cron_t *cron)
{
cron->online = 0;
pthread_mutex_lock(&cron->lock);
#ifdef PROM_FOUND
od_prom_metrics_destroy(cron->metrics);
#endif
return OK_RESPONSE;
}