-
Notifications
You must be signed in to change notification settings - Fork 247
Expand file tree
/
Copy pathshard_connection.cpp
More file actions
1392 lines (1205 loc) · 45.4 KB
/
shard_connection.cpp
File metadata and controls
1392 lines (1205 loc) · 45.4 KB
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2011-2026 Redis Labs Ltd.
*
* This file is part of memtier_benchmark.
*
* memtier_benchmark is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
*
* memtier_benchmark is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with memtier_benchmark. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#ifdef HAVE_NETINET_TCP_H
#include <netinet/tcp.h>
#endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#ifdef HAVE_ASSERT_H
#include <assert.h>
#endif
#include "shard_connection.h"
#include "obj_gen.h"
#include "memtier_benchmark.h"
#include "connections_manager.h"
#include "client.h"
#include "retry_policy.h"
#include "event2/bufferevent.h"
#ifdef USE_TLS
#include <openssl/ssl.h>
#include <openssl/err.h>
#include "event2/bufferevent_ssl.h"
#endif
void cluster_client_timer_handler(evutil_socket_t fd, short what, void *ctx)
{
shard_connection *sc = (shard_connection *) ctx;
assert(sc != NULL);
sc->handle_timer_event();
}
void cluster_client_reconnect_timer_handler(evutil_socket_t fd, short what, void *ctx)
{
shard_connection *sc = (shard_connection *) ctx;
assert(sc != NULL);
sc->handle_reconnect_timer_event();
}
void deferred_fill_pipeline_cb(evutil_socket_t, short, void *ctx)
{
static_cast<shard_connection *>(ctx)->fill_pipeline();
}
void cluster_client_connection_timeout_handler(evutil_socket_t fd, short what, void *ctx)
{
shard_connection *sc = (shard_connection *) ctx;
assert(sc != NULL);
sc->handle_connection_timeout_event();
}
void cluster_client_retry_drain_handler(evutil_socket_t fd, short what, void *ctx)
{
shard_connection *sc = (shard_connection *) ctx;
assert(sc != NULL);
sc->handle_retry_drain_event();
}
void cluster_client_read_handler(bufferevent *bev, void *ctx)
{
shard_connection *sc = (shard_connection *) ctx;
assert(sc != NULL);
sc->process_response();
}
void cluster_client_event_handler(bufferevent *bev, short events, void *ctx)
{
shard_connection *sc = (shard_connection *) ctx;
assert(sc != NULL);
sc->handle_event(events);
}
request::request(request_type type, unsigned int size, struct timeval *sent_time, unsigned int keys) :
m_type(type),
m_size(size),
m_keys(keys),
m_retries(0),
m_claimed_by_retry(false),
m_serialized(NULL),
m_serialized_len(0),
m_key(NULL),
m_key_len(0)
{
if (sent_time != NULL)
m_sent_time = *sent_time;
else {
gettimeofday(&m_sent_time, NULL);
}
m_first_sent_time = m_sent_time;
}
request::~request(void)
{
if (m_serialized) {
free(m_serialized);
m_serialized = NULL;
m_serialized_len = 0;
}
if (m_key) {
free(m_key);
m_key = NULL;
m_key_len = 0;
}
}
void request::set_serialized(const char *data, size_t len)
{
if (m_serialized) {
free(m_serialized);
m_serialized = NULL;
m_serialized_len = 0;
}
if (!data || len == 0) return;
m_serialized = (char *) malloc(len);
if (!m_serialized) return; // best-effort capture; replay just won't work
memcpy(m_serialized, data, len);
m_serialized_len = len;
}
void request::set_key_for_log(const char *key, unsigned int key_len)
{
if (m_key) {
free(m_key);
m_key = NULL;
m_key_len = 0;
}
if (!key || key_len == 0) return;
m_key = (char *) malloc(key_len);
if (!m_key) return;
memcpy(m_key, key, key_len);
m_key_len = key_len;
}
arbitrary_request::arbitrary_request(size_t request_index, request_type type, unsigned int size,
struct timeval *sent_time, const arbitrary_command *cmd_meta) :
request(type, size, sent_time,
// m_keys is the number of expected key buckets. Prefer the
// spec-resolved positions when available so per-key totals match
// what the parser will see; otherwise fall back to the user's
// __key__ placeholder count, then 1 as a conservative default.
(cmd_meta != NULL && !cmd_meta->spec_key_positions.empty())
? (unsigned int) cmd_meta->spec_key_positions.size()
: (cmd_meta != NULL && cmd_meta->keys_count > 0) ? cmd_meta->keys_count
: 1),
index(request_index),
m_cmd_meta(cmd_meta)
{
}
verify_request::verify_request(request_type type, unsigned int size, struct timeval *sent_time, unsigned int keys,
const char *key, unsigned int key_len, const char *value, unsigned int value_len) :
request(type, size, sent_time, keys), m_value(NULL), m_value_len(0)
{
// base class holds the key for both verification + failed-keys logging.
set_key_for_log(key, key_len);
m_value_len = value_len;
m_value = (char *) malloc(value_len);
memcpy(m_value, value, m_value_len);
}
verify_request::~verify_request(void)
{
if (m_value != NULL) {
free((void *) m_value);
m_value = NULL;
}
}
shard_connection::shard_connection(unsigned int id, connections_manager *conns_man, benchmark_config *config,
struct event_base *event_base, abstract_protocol *abs_protocol) :
m_address(NULL),
m_port(NULL),
m_unix_sockaddr(NULL),
m_bev(NULL),
m_event_timer(NULL),
m_request_per_cur_interval(0),
m_pending_resp(0),
m_connection_state(conn_disconnected),
m_hello(setup_done),
m_authentication(setup_done),
m_db_selection(setup_done),
m_cluster_slots(setup_done),
m_reconnect_attempts(0),
m_current_backoff_delay(1.0),
m_reconnect_timer(NULL),
m_reconnecting(false),
m_connection_timeout_timer(NULL),
m_retry_queue(NULL),
m_replay_queue(NULL),
m_retry_drain_timer(NULL),
m_current_retry_backoff_ms(0.0),
m_deferred_fill_timer(NULL)
{
m_id = id;
m_conns_manager = conns_man;
m_config = config;
m_event_base = event_base;
if (m_config->unix_socket) {
m_unix_sockaddr = (struct sockaddr_un *) malloc(sizeof(struct sockaddr_un));
assert(m_unix_sockaddr != NULL);
m_unix_sockaddr->sun_family = AF_UNIX;
strncpy(m_unix_sockaddr->sun_path, m_config->unix_socket, sizeof(m_unix_sockaddr->sun_path) - 1);
m_unix_sockaddr->sun_path[sizeof(m_unix_sockaddr->sun_path) - 1] = '\0';
}
m_protocol = abs_protocol->clone();
assert(m_protocol != NULL);
m_pipeline = new std::queue<request *>;
assert(m_pipeline != NULL);
if (m_config->retry_on_error) {
m_retry_queue = new std::queue<request *>;
m_replay_queue = new std::queue<request *>;
m_current_retry_backoff_ms = (double) m_config->retry_backoff_ms;
}
}
shard_connection::~shard_connection()
{
if (m_address != NULL) {
free(m_address);
m_address = NULL;
}
if (m_port != NULL) {
free(m_port);
m_port = NULL;
}
if (m_unix_sockaddr != NULL) {
free(m_unix_sockaddr);
m_unix_sockaddr = NULL;
}
if (m_bev != NULL) {
bufferevent_free(m_bev);
m_bev = NULL;
}
if (m_event_timer != NULL) {
event_free(m_event_timer);
m_event_timer = NULL;
}
if (m_reconnect_timer != NULL) {
event_free(m_reconnect_timer);
m_reconnect_timer = NULL;
}
if (m_connection_timeout_timer != NULL) {
event_free(m_connection_timeout_timer);
m_connection_timeout_timer = NULL;
}
if (m_protocol != NULL) {
delete m_protocol;
m_protocol = NULL;
}
if (m_pipeline != NULL) {
delete m_pipeline;
m_pipeline = NULL;
}
if (m_retry_drain_timer != NULL) {
event_free(m_retry_drain_timer);
m_retry_drain_timer = NULL;
}
if (m_deferred_fill_timer != NULL) {
event_free(m_deferred_fill_timer);
m_deferred_fill_timer = NULL;
}
if (m_retry_queue != NULL) {
while (!m_retry_queue->empty()) {
delete m_retry_queue->front();
m_retry_queue->pop();
}
delete m_retry_queue;
m_retry_queue = NULL;
}
if (m_replay_queue != NULL) {
while (!m_replay_queue->empty()) {
delete m_replay_queue->front();
m_replay_queue->pop();
}
delete m_replay_queue;
m_replay_queue = NULL;
}
}
void shard_connection::setup_event(int sockfd)
{
if (m_bev) {
bufferevent_free(m_bev);
}
#ifdef USE_TLS
if (m_config->openssl_ctx) {
SSL *ctx = SSL_new(m_config->openssl_ctx);
assert(ctx != NULL);
if (m_config->tls_sni) {
SSL_set_tlsext_host_name(ctx, m_config->tls_sni);
}
m_bev = bufferevent_openssl_socket_new(m_event_base, sockfd, ctx, BUFFEREVENT_SSL_CONNECTING,
BEV_OPT_CLOSE_ON_FREE);
} else {
#endif
m_bev = bufferevent_socket_new(m_event_base, sockfd, BEV_OPT_CLOSE_ON_FREE);
#ifdef USE_TLS
}
#endif
assert(m_bev != NULL);
bufferevent_setcb(m_bev, cluster_client_read_handler, NULL, cluster_client_event_handler, (void *) this);
m_protocol->set_buffers(bufferevent_get_input(m_bev), bufferevent_get_output(m_bev));
}
int shard_connection::setup_socket(struct connect_info *addr)
{
int flags;
int sockfd;
if (m_unix_sockaddr != NULL) {
sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
if (sockfd < 0) {
return -1;
}
} else {
// initialize socket
sockfd = socket(addr->ci_family, addr->ci_socktype, addr->ci_protocol);
if (sockfd < 0) {
return -1;
}
int error = setsockopt(sockfd, SOL_SOCKET, SO_KEEPALIVE, (void *) &flags, sizeof(flags));
assert(error == 0);
/*
* Configure socket behavior:
* If l_onoff is non-zero and l_linger is zero:
* The socket will discard any unsent data and the close() call will return immediately.
*/
struct linger ling;
ling.l_onoff = 1; // Enable SO_LINGER
ling.l_linger = 0; // Discard any unsent data and close immediately
error = setsockopt(sockfd, SOL_SOCKET, SO_LINGER, (void *) &ling, sizeof(ling));
assert(error == 0);
error = setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY, (void *) &flags, sizeof(flags));
assert(error == 0);
}
// set non-blocking behavior
flags = 1;
if ((flags = fcntl(sockfd, F_GETFL, 0)) < 0 || fcntl(sockfd, F_SETFL, flags | O_NONBLOCK) < 0) {
close(sockfd);
return -1;
}
return sockfd;
}
int shard_connection::connect(struct connect_info *addr)
{
// set required setup commands
m_authentication = m_config->authenticate ? setup_none : setup_done;
m_db_selection = m_config->select_db ? setup_none : setup_done;
m_hello = (m_config->protocol == PROTOCOL_RESP2 || m_config->protocol == PROTOCOL_RESP3) ? setup_none : setup_done;
// setup socket
int sockfd = setup_socket(addr);
if (sockfd < 0) {
fprintf(stderr, "Failed to setup socket: %s\n", strerror(errno));
return -1;
}
// set up bufferevent
setup_event(sockfd);
// set readable id
set_readable_id();
// call connect
m_connection_state = conn_in_progress;
if (bufferevent_socket_connect(m_bev, m_unix_sockaddr ? (struct sockaddr *) m_unix_sockaddr : addr->ci_addr,
m_unix_sockaddr ? sizeof(struct sockaddr_un) : addr->ci_addrlen) == -1) {
disconnect();
benchmark_error_log("connect failed, error = %s\n", strerror(errno));
return -1;
}
// Start connection timeout timer (only if enabled)
if (m_config->connection_timeout > 0) {
struct timeval timeout;
timeout.tv_sec = m_config->connection_timeout;
timeout.tv_usec = 0;
m_connection_timeout_timer =
event_new(m_event_base, -1, 0, cluster_client_connection_timeout_handler, (void *) this);
event_add(m_connection_timeout_timer, &timeout);
}
return 0;
}
void shard_connection::disconnect()
{
if (m_bev) {
bufferevent_free(m_bev);
m_bev = NULL;
}
if (m_event_timer != NULL) {
event_free(m_event_timer);
m_event_timer = NULL;
}
if (m_reconnect_timer != NULL) {
event_free(m_reconnect_timer);
m_reconnect_timer = NULL;
}
if (m_connection_timeout_timer != NULL) {
event_free(m_connection_timeout_timer);
m_connection_timeout_timer = NULL;
}
// Drain pipeline. With --retry-on-error, move in-flight requests into the
// replay queue so they get resent after reconnect. Otherwise, discard them
// as before.
if (m_config->retry_on_error && m_replay_queue != NULL) {
while (m_pending_resp) {
request *req = pop_req();
// Only setup commands have no serialized capture (we never attempt
// capture for those) — drop those.
if (req->m_type == rt_auth || req->m_type == rt_select_db || req->m_type == rt_cluster_slots ||
req->m_type == rt_hello) {
delete req;
continue;
}
if (req->m_serialized && req->m_serialized_len > 0) {
m_replay_queue->push(req);
} else {
delete req;
}
}
// Also rescue requests sitting in the per-connection retry queue
// (waiting for a backoff timer to fire). Without this, the backoff
// timer's connection check (handle_retry_drain_event) would silently
// leave them stranded after reconnect.
if (m_retry_queue != NULL) {
while (!m_retry_queue->empty()) {
request *req = m_retry_queue->front();
m_retry_queue->pop();
if (req->m_serialized && req->m_serialized_len > 0) {
m_replay_queue->push(req);
} else {
delete req;
}
}
}
// Cancel any pending drain timer — it has nothing to drain now and
// will be re-armed after reconnect by drain_replay_queue_after_reconnect.
if (m_retry_drain_timer != NULL && evtimer_pending(m_retry_drain_timer, NULL)) {
evtimer_del(m_retry_drain_timer);
}
} else {
while (m_pending_resp)
delete pop_req();
}
if (m_deferred_fill_timer != NULL && evtimer_pending(m_deferred_fill_timer, NULL)) {
evtimer_del(m_deferred_fill_timer);
}
m_connection_state = conn_disconnected;
// Reset rate limiting state during disconnection
m_request_per_cur_interval = 0;
// by default no need to send any setup request
m_authentication = setup_done;
m_db_selection = setup_done;
m_cluster_slots = setup_done;
m_hello = setup_done;
}
void shard_connection::set_address_port(const char *address, const char *port)
{
if (m_address != NULL) {
free(m_address);
}
m_address = strdup(address);
if (m_port != NULL) {
free(m_port);
}
m_port = strdup(port);
}
void shard_connection::set_readable_id()
{
if (m_unix_sockaddr != NULL) {
m_readable_id.assign(m_config->unix_socket);
} else {
m_readable_id.assign(m_address);
m_readable_id.append(":");
m_readable_id.append(m_port);
}
}
const char *shard_connection::get_readable_id()
{
return m_readable_id.c_str();
}
int shard_connection::get_local_port()
{
if (!m_bev) {
return -1;
}
int fd = bufferevent_getfd(m_bev);
if (fd < 0) {
return -1;
}
struct sockaddr_storage local_addr;
socklen_t addr_len = sizeof(local_addr);
if (getsockname(fd, (struct sockaddr *) &local_addr, &addr_len) != 0) {
return -1;
}
if (local_addr.ss_family == AF_INET) {
struct sockaddr_in *addr_in = (struct sockaddr_in *) &local_addr;
return ntohs(addr_in->sin_port);
} else if (local_addr.ss_family == AF_INET6) {
struct sockaddr_in6 *addr_in6 = (struct sockaddr_in6 *) &local_addr;
return ntohs(addr_in6->sin6_port);
}
return -1;
}
const char *shard_connection::get_last_request_type()
{
if (!m_pipeline || m_pipeline->empty()) {
return "none";
}
// Get the last request in the pipeline (the one at the back)
// Note: We can't directly access the back of a std::queue, so we need to check the front
// which represents the oldest pending request
request *req = m_pipeline->front();
if (!req) {
return "unknown";
}
switch (req->m_type) {
case rt_set:
return "SET";
case rt_get:
return "GET";
case rt_wait:
return "WAIT";
case rt_arbitrary:
return "ARBITRARY";
case rt_auth:
return "AUTH";
case rt_select_db:
return "SELECT";
case rt_cluster_slots:
return "CLUSTER_SLOTS";
case rt_hello:
return "HELLO";
default:
return "unknown";
}
}
request *shard_connection::pop_req()
{
request *req = m_pipeline->front();
m_pipeline->pop();
m_pending_resp--;
assert(m_pending_resp >= 0);
return req;
}
void shard_connection::push_req(request *req)
{
m_pipeline->push(req);
m_pending_resp++;
if (m_config->request_rate) {
// Handle race condition during reconnection - don't assert if interval is 0
if (m_request_per_cur_interval > 0) {
m_request_per_cur_interval--;
} else {
// Rate limit exceeded, but don't crash - just log debug info
benchmark_debug_log("Rate limit interval exhausted during request push (connection %u)\n", m_id);
}
}
}
void shard_connection::capture_serialized_bytes(size_t before_pos, request *req)
{
if (!m_config->retry_on_error || !m_bev || !req) return;
struct evbuffer *out = bufferevent_get_output(m_bev);
size_t after_pos = evbuffer_get_length(out);
if (after_pos <= before_pos) return;
size_t len = after_pos - before_pos;
char *buf = (char *) malloc(len);
if (!buf) {
benchmark_debug_log("retry: failed to allocate %zu bytes for capture (conn %u)\n", len, m_id);
return;
}
struct evbuffer_ptr p;
if (evbuffer_ptr_set(out, &p, before_pos, EVBUFFER_PTR_SET) != 0) {
free(buf);
return;
}
struct evbuffer_iovec vecs[8];
int n = evbuffer_peek(out, (ev_ssize_t) len, &p, vecs, 8);
if (n < 0) {
free(buf);
return;
}
if (n > 8) {
struct evbuffer_iovec *dyn = (struct evbuffer_iovec *) malloc((size_t) n * sizeof(*dyn));
if (!dyn) {
free(buf);
return;
}
int n2 = evbuffer_peek(out, (ev_ssize_t) len, &p, dyn, n);
if (n2 == n) {
size_t off = 0;
for (int i = 0; i < n2 && off < len; i++) {
size_t take = dyn[i].iov_len;
if (off + take > len) take = len - off;
memcpy(buf + off, dyn[i].iov_base, take);
off += take;
}
req->m_serialized = buf;
req->m_serialized_len = len;
buf = NULL; // ownership transferred
}
free(dyn);
if (buf) free(buf);
return;
}
size_t off = 0;
for (int i = 0; i < n && off < len; i++) {
size_t take = vecs[i].iov_len;
if (off + take > len) take = len - off;
memcpy(buf + off, vecs[i].iov_base, take);
off += take;
}
req->m_serialized = buf;
req->m_serialized_len = len;
}
bool shard_connection::retry_queue_full() const
{
if (!m_retry_queue) return false;
unsigned int cap = m_config->max_retry_queue;
if (cap == 0) {
// Auto cap: pipeline * 4, floor of 64.
cap = m_config->pipeline * 4;
if (cap < 64) cap = 64;
}
return m_retry_queue->size() >= cap;
}
bool shard_connection::enqueue_retry(request *req)
{
if (!m_config->retry_on_error || !m_retry_queue) return false;
if (!req || !req->m_serialized || req->m_serialized_len == 0) return false;
// Honor max_retries (always counts; MOVED/ASK count too).
if (m_config->max_retries >= 0 && (int) req->m_retries >= m_config->max_retries) {
return false;
}
if (retry_queue_full()) {
// Caller treats this as terminal: log + finalize.
return false;
}
req->m_claimed_by_retry = true;
m_retry_queue->push(req);
// (Re)schedule the drain timer if we have a backoff configured. With zero
// backoff we still go through the timer with a 0 ms delay to keep the
// ordering predictable and the libevent integration simple.
if (m_retry_drain_timer == NULL) {
m_retry_drain_timer = event_new(m_event_base, -1, 0, cluster_client_retry_drain_handler, (void *) this);
}
if (m_retry_drain_timer != NULL) {
// Only (re)add if not pending.
if (!evtimer_pending(m_retry_drain_timer, NULL)) {
double ms = m_current_retry_backoff_ms;
struct timeval delay;
delay.tv_sec = (long) (ms / 1000.0);
delay.tv_usec = (long) ((ms - delay.tv_sec * 1000.0) * 1000.0);
event_add(m_retry_drain_timer, &delay);
}
}
// Exponential backoff for the *next* retry on this connection.
if (m_config->retry_backoff_factor > 0.0) {
m_current_retry_backoff_ms *= m_config->retry_backoff_factor;
}
return true;
}
void shard_connection::replay_request(request *req)
{
if (!req || !req->m_serialized || !m_bev) return;
struct evbuffer *out = bufferevent_get_output(m_bev);
evbuffer_add(out, req->m_serialized, req->m_serialized_len);
gettimeofday(&req->m_sent_time, NULL);
req->m_retries++;
// Back in the pipeline: ownership returns to the normal flow.
req->m_claimed_by_retry = false;
push_req(req);
}
void shard_connection::handle_retry_drain_event()
{
if (!m_retry_queue || m_retry_queue->empty()) return;
// Only drain if the connection is actually usable.
if (m_connection_state != conn_connected || !m_bev) {
// Will retry once we reconnect (handled by drain_replay_queue_after_reconnect).
return;
}
while (!m_retry_queue->empty()) {
request *req = m_retry_queue->front();
m_retry_queue->pop();
replay_request(req);
}
}
void shard_connection::drain_replay_queue_after_reconnect()
{
if (!m_replay_queue) return;
while (!m_replay_queue->empty()) {
request *req = m_replay_queue->front();
m_replay_queue->pop();
// Each replay counts toward max_retries.
if (m_config->max_retries >= 0 && (int) req->m_retries >= m_config->max_retries) {
struct timeval now;
gettimeofday(&now, NULL);
global_failed_keys_logger().log_failure(now, "REPLAY", req->m_key, req->m_key_len, "connection-dropped",
req->m_retries);
delete req;
continue;
}
if (!req->m_serialized || req->m_serialized_len == 0) {
// Can't replay — capture failed earlier. Drop with a log line.
struct timeval now;
gettimeofday(&now, NULL);
global_failed_keys_logger().log_failure(now, "REPLAY", req->m_key, req->m_key_len,
"no-captured-bytes-for-replay", req->m_retries);
delete req;
continue;
}
replay_request(req);
}
}
bool shard_connection::is_conn_setup_done()
{
return m_authentication == setup_done && m_db_selection == setup_done && m_cluster_slots == setup_done &&
m_hello == setup_done;
}
void shard_connection::send_conn_setup_commands(struct timeval timestamp)
{
if (m_authentication == setup_none) {
benchmark_debug_log("sending authentication command.\n");
m_protocol->authenticate(m_config->authenticate);
push_req(new request(rt_auth, 0, ×tamp, 0));
m_authentication = setup_sent;
}
if (m_db_selection == setup_none) {
benchmark_debug_log("sending db selection command.\n");
m_protocol->select_db(m_config->select_db);
push_req(new request(rt_select_db, 0, ×tamp, 0));
m_db_selection = setup_sent;
}
if (m_hello == setup_none) {
benchmark_debug_log("sending HELLO command.\n");
m_protocol->configure_protocol(m_config->protocol);
push_req(new request(rt_hello, 0, ×tamp, 0));
m_hello = setup_sent;
}
if (m_cluster_slots == setup_none) {
benchmark_debug_log("sending cluster slots command.\n");
// in case we send CLUSTER SLOTS command, we need to keep the response to parse it
m_protocol->set_keep_value(true);
m_protocol->write_command_cluster_slots();
push_req(new request(rt_cluster_slots, 0, ×tamp, 0));
m_cluster_slots = setup_sent;
}
}
void shard_connection::process_response(void)
{
int ret;
bool responses_handled = false;
struct timeval now;
gettimeofday(&now, NULL);
while ((ret = m_protocol->parse_response()) > 0) {
bool error = false;
protocol_response *r = m_protocol->get_response();
request *req = pop_req();
switch (req->m_type) {
case rt_auth:
if (r->is_error()) {
benchmark_error_log("error: authentication failed [%s]\n", r->get_status());
error = true;
} else {
m_authentication = setup_done;
benchmark_debug_log("authentication successful.\n");
}
break;
case rt_select_db:
if (strcmp(r->get_status(), "+OK") != 0) {
benchmark_error_log("database selection failed.\n");
error = true;
} else {
benchmark_debug_log("database selection successful.\n");
m_db_selection = setup_done;
}
break;
case rt_cluster_slots:
if (r->get_mbulk_value() == NULL || r->get_mbulk_value()->mbulks_elements.size() == 0) {
benchmark_error_log("cluster slot failed.\n");
error = true;
} else {
// parse response
m_conns_manager->handle_cluster_slots(r);
m_protocol->set_keep_value(false);
m_cluster_slots = setup_done;
benchmark_debug_log("cluster slot command successful\n");
}
break;
case rt_hello:
if (r->is_error()) {
benchmark_error_log("error: HELLO failed [%s]\n", r->get_status());
error = true;
} else {
m_hello = setup_done;
benchmark_debug_log("HELLO successful.\n");
}
break;
default:
benchmark_debug_log("server %s: handled response (first line): %s, %d hits, %d misses\n", get_readable_id(),
r->get_status(), r->get_hits(), req->m_keys - r->get_hits());
m_conns_manager->handle_response(m_id, now, req, r);
m_conns_manager->inc_reqs_processed();
responses_handled = true;
break;
}
// The retry path may have claimed ownership of req for resend; in that
// case the retry queue / replay path is responsible for freeing it.
if (!req->m_claimed_by_retry) {
delete req;
}
if (error) {
return;
}
}
if (ret == -1) {
benchmark_error_log("error: response parsing failed.\n");
}
if (m_config->reconnect_interval > 0 && responses_handled) {
if ((m_config->requests != m_conns_manager->get_reqs_processed()) &&
((m_conns_manager->get_reqs_processed() % m_config->reconnect_interval) == 0)) {
assert(m_pipeline->size() == 0);
benchmark_debug_log("reconnecting, m_reqs_processed = %u\n", m_conns_manager->get_reqs_processed());
// client manage connection & disconnection of shard
m_conns_manager->disconnect();
ret = m_conns_manager->connect();
if (ret != 0) {
benchmark_error_log("failed to reconnect.\n");
exit(1);
}
return;
}
}
fill_pipeline();
if (m_conns_manager->finished()) {
m_conns_manager->set_end_time();
}
}
void shard_connection::process_first_request()
{
m_conns_manager->set_start_time();
fill_pipeline();
}
void shard_connection::fill_pipeline(void)
{
struct timeval now;
gettimeofday(&now, NULL);
// Re-enable I/O in case a prior idle period disabled the bufferevent
// (e.g. a --transaction non-pin connection that was held by hold_pipeline).
if (m_bev != NULL && get_connection_state() == conn_connected) {
bufferevent_enable(m_bev, EV_READ | EV_WRITE);
}
while (!m_conns_manager->finished() && m_pipeline->size() < m_config->pipeline) {
if (!is_conn_setup_done()) {
send_conn_setup_commands(now);
return;
}
// don't exceed requests
if (m_conns_manager->hold_pipeline(m_id)) {
break;
}
// Hold new work while the retry queue is at its hard cap. The drain
// timer will reschedule fill_pipeline via the event loop once it makes
// progress.
if (retry_queue_full()) {
break;
}