-
Notifications
You must be signed in to change notification settings - Fork 246
Expand file tree
/
Copy pathclient.cpp
More file actions
1561 lines (1369 loc) · 59 KB
/
Copy pathclient.cpp
File metadata and controls
1561 lines (1369 loc) · 59 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 <math.h>
#include <algorithm>
#include <sstream>
#include <arpa/inet.h>
#include "client.h"
#include "cluster_client.h"
#include "config_types.h"
#include "retry_policy.h"
void client::apply_arbitrary_tracking_flags(abstract_protocol *protocol)
{
// Mirror the per-element miss-tracking decision made in setup_client onto a
// single protocol. In cluster mode shard connections are *re-created* (not
// reconnected in place) on topology reset -- cluster_client::disconnect()
// deletes the non-main connections and the next cluster-slots discovery
// rebuilds them via create_shard_connection(). Each rebuild clone()s a fresh
// protocol with runtime flags reset to defaults, so the flag must be
// re-applied here or miss tracking silently never engages for them. (An
// in-place reconnect keeps the same protocol object; reset_state() preserves
// the flag, so that path needs nothing.) See issue #476.
if (protocol == NULL) return;
if (m_arbitrary_needs_elem_tracking) {
protocol->set_track_elem_misses(true);
}
}
bool client::setup_client(benchmark_config *config, abstract_protocol *protocol, object_generator *objgen)
{
m_config = config;
assert(m_config != NULL);
unsigned long long total_num_of_clients = config->clients * config->threads;
// create main connection
shard_connection *conn = new shard_connection(m_connections.size(), this, m_config, m_event_base, protocol);
m_connections.push_back(conn);
m_obj_gen = objgen->clone();
assert(m_obj_gen != NULL);
if (config->distinct_client_seed && config->randomize)
m_obj_gen->set_random_seed(config->randomize + config->next_client_idx);
else if (config->randomize)
m_obj_gen->set_random_seed(config->randomize);
else if (config->distinct_client_seed)
m_obj_gen->set_random_seed(config->next_client_idx);
m_obj_gen->fill_value_buffer();
// Setup first arbitrary command
if (config->arbitrary_commands->is_defined()) advance_arbitrary_command_index();
// Enable value keeping for SCAN incremental iteration (needed to extract cursor from response)
if (config->scan_incremental_iteration) {
MAIN_CONNECTION->get_protocol()->set_keep_value(true);
}
// Enable per-element miss tracking only when a configured command needs
// per-position reply inspection. Only ArrayPerElementNulls
// (HMGET/MGET/ZMSCORE/GEOPOS/...) attributes hits/misses per position; the
// parser records a per-top-level-element hit bitmap directly
// (set_track_elem_misses), with zero reply materialization -- no malloc /
// memcpy of element values, no mbulk tree. EmptyCollection
// (HGETALL/SMEMBERS/LRANGE) only needs the top-level array length
// (response->get_top_array_len()); SingleNullBulk and IntegerMembership use
// the parser's scalar counters / status line. None of them keep values.
if (config->arbitrary_commands->is_defined()) {
for (size_t i = 0; i < config->arbitrary_commands->size(); ++i) {
const arbitrary_command &cmd = config->arbitrary_commands->at(i);
if (!cmd.miss_tracking_enabled || cmd.spec == NULL) continue;
using memtier::command_meta::ReplyShape;
if (cmd.spec->reply_shape == ReplyShape::ArrayPerElementNulls) {
m_arbitrary_needs_elem_tracking = true;
break;
}
}
// Apply to the connections that exist now. Connections created later --
// notably the per-shard connections that cluster_client builds during
// cluster-slots discovery -- pick the flag up via
// apply_arbitrary_tracking_flags() at creation time (see issue #476).
for (size_t i = 0; i < m_connections.size(); ++i) {
apply_arbitrary_tracking_flags(m_connections[i]->get_protocol());
}
}
// Parallel key-pattern determined according to the first command
if ((config->arbitrary_commands->is_defined() && config->arbitrary_commands->at(0).key_pattern == 'P') ||
(config->key_pattern[key_pattern_set] == 'P')) {
unsigned long long client_index = config->next_client_idx % total_num_of_clients;
unsigned long long range = (config->key_maximum - config->key_minimum) / total_num_of_clients + 1;
unsigned long long min = config->key_minimum + (range * client_index);
unsigned long long max = min + range - 1;
if (client_index == (total_num_of_clients - 1)) {
max = config->key_maximum; // the last clients takes the leftover
}
m_obj_gen->set_key_range(min, max);
}
config->next_client_idx++;
m_keylist = new keylist(m_config->multi_key_get + 1);
assert(m_keylist != NULL);
return true;
}
client::client(client_group *group) :
m_event_base(NULL),
m_initialized(false),
m_end_set(false),
m_config(NULL),
m_obj_gen(NULL),
m_stats(group->get_config()),
m_reqs_processed(0),
m_reqs_generated(0),
m_set_ratio_count(0),
m_get_ratio_count(0),
m_arbitrary_command_ratio_count(0),
m_executed_command_index(0),
m_arbitrary_command_rotation_seq(0),
m_txn_rotation_key_index(0),
m_txn_rotation_key_valid(false),
m_txn_rotation_key_seq(0),
m_tot_set_ops(0),
m_tot_wait_ops(0),
m_scan_cursor("0"),
m_scan_iteration_count(0),
m_mget_defer(false),
m_arbitrary_needs_elem_tracking(false)
{
m_event_base = group->get_event_base();
if (!setup_client(group->get_config(), group->get_protocol(), group->get_obj_gen())) {
return;
}
benchmark_debug_log("new client %p successfully set up.\n", this);
m_initialized = true;
}
client::client(struct event_base *event_base, benchmark_config *config, abstract_protocol *protocol,
object_generator *obj_gen) :
m_event_base(NULL),
m_initialized(false),
m_end_set(false),
m_config(NULL),
m_obj_gen(NULL),
m_stats(config),
m_reqs_processed(0),
m_reqs_generated(0),
m_set_ratio_count(0),
m_get_ratio_count(0),
m_arbitrary_command_ratio_count(0),
m_executed_command_index(0),
m_arbitrary_command_rotation_seq(0),
m_txn_rotation_key_index(0),
m_txn_rotation_key_valid(false),
m_txn_rotation_key_seq(0),
m_tot_set_ops(0),
m_tot_wait_ops(0),
m_scan_cursor("0"),
m_scan_iteration_count(0),
m_keylist(NULL),
m_mget_defer(false),
m_arbitrary_needs_elem_tracking(false)
{
m_event_base = event_base;
if (!setup_client(config, protocol, obj_gen)) {
return;
}
benchmark_debug_log("new client %p successfully set up.\n", this);
m_initialized = true;
}
client::~client()
{
for (unsigned int i = 0; i < m_connections.size(); i++) {
shard_connection *sc = m_connections[i];
delete sc;
}
m_connections.clear();
if (m_obj_gen != NULL) {
delete m_obj_gen;
m_obj_gen = NULL;
}
if (m_keylist != NULL) {
delete m_keylist;
m_keylist = NULL;
}
}
bool client::initialized(void)
{
return m_initialized;
}
void client::disconnect(void)
{
shard_connection *sc = MAIN_CONNECTION;
assert(sc != NULL);
sc->disconnect();
}
void client::disconnect_all(void)
{
for (unsigned int i = 0; i < m_connections.size(); i++) {
shard_connection *sc = m_connections[i];
if (sc != NULL) {
sc->disconnect();
}
}
}
int client::connect(void)
{
struct connect_info addr;
// get primary connection
shard_connection *sc = MAIN_CONNECTION;
assert(sc != NULL);
// get address information
if (m_config->unix_socket == NULL) {
if (m_config->server_addr->get_connect_info(&addr) != 0) {
benchmark_error_log("connect: resolve error: %s\n", m_config->server_addr->get_last_error());
return -1;
}
// Just in case we got domain name and not ip, we convert it
char address[INET6_ADDRSTRLEN];
if (addr.ci_family == PF_INET) {
struct sockaddr_in *ipv4 = (struct sockaddr_in *) addr.ci_addr;
inet_ntop(AF_INET, &(ipv4->sin_addr), address, INET_ADDRSTRLEN);
} else {
struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *) addr.ci_addr;
inet_ntop(AF_INET6, &(ipv6->sin6_addr), address, INET6_ADDRSTRLEN);
}
char port_str[20];
snprintf(port_str, sizeof(port_str) - 1, "%u", m_config->port);
// save address and port
sc->set_address_port(address, port_str);
}
// call connect
int ret = sc->connect(&addr);
if (ret) return ret;
return 0;
}
bool client::finished(void)
{
if (m_config->requests > 0 && m_reqs_processed >= m_config->requests) return true;
if (m_config->test_time > 0) {
if (m_config->clients_start > 0) {
// Staircase mode: use global deadline so all clients stop together
struct timeval now;
gettimeofday(&now, NULL);
unsigned int elapsed = now.tv_sec - m_config->benchmark_start_time.tv_sec;
if (elapsed >= m_config->test_time) return true;
} else {
if (m_stats.get_duration() >= m_config->test_time) return true;
}
}
return false;
}
bool client::all_connections_idle(void)
{
for (unsigned int i = 0; i < m_connections.size(); i++) {
shard_connection *sc = m_connections[i];
if (sc != NULL && sc->get_pending_resp() > 0) {
return false;
}
}
return true;
}
void client::set_start_time()
{
// In staircase mode, all clients use the global benchmark start time
// so per-second stats are aligned to the same absolute time origin.
if (m_config->clients_start > 0) {
m_stats.set_start_time(&m_config->benchmark_start_time);
} else {
struct timeval now;
gettimeofday(&now, NULL);
m_stats.set_start_time(&now);
}
}
void client::set_end_time()
{
// update only once
if (!m_end_set) {
benchmark_debug_log("nothing else to do, test is finished.\n");
m_stats.set_end_time(NULL);
m_end_set = true;
}
}
bool client::hold_pipeline(unsigned int conn_id)
{
// don't exceed requests
if (m_config->requests) {
if (m_reqs_generated >= m_config->requests) return true;
}
// if we have reconnect_interval stop enlarging the pipeline on time
if (m_config->reconnect_interval) {
if ((m_reqs_processed % m_config->reconnect_interval) + (m_reqs_generated - m_reqs_processed) >=
m_config->reconnect_interval)
return true;
}
return false;
}
get_key_response client::get_key_for_conn(unsigned int command_index, unsigned int conn_id,
unsigned long long *key_index)
{
int iter;
if (m_config->arbitrary_commands->is_defined())
iter = arbitrary_obj_iter_type(command_index);
else
iter = obj_iter_type(m_config, command_index);
*key_index = m_obj_gen->get_key_index(iter);
if (!m_config->data_import || m_config->generate_keys) {
m_obj_gen->generate_key(*key_index);
} else {
/* For SET command we already read a completes item (see create_set_request()) */
if (command_index == GET_CMD_IDX) dynamic_cast<import_object_generator *>(m_obj_gen)->read_next_key(*key_index);
}
return available_for_conn;
}
bool client::create_arbitrary_request(unsigned int command_index, struct timeval ×tamp, unsigned int conn_id)
{
int cmd_size = 0;
const arbitrary_command &cmd = get_arbitrary_command(command_index);
benchmark_debug_log("%s: %s:\n", m_connections[conn_id]->get_readable_id(), cmd.command.c_str());
// Check if this is a monitor command placeholder - handle it specially
if (cmd.command_args.size() == 1 && cmd.command_args[0].type == monitor_random_type) {
// Select a command from the monitor file at runtime based on the monitor pattern
size_t selected_index = 0;
const std::string *monitor_cmd_ptr = NULL;
if (m_config->monitor_pattern == 'R') {
monitor_cmd_ptr = &m_config->monitor_commands->get_random_command(m_obj_gen, &selected_index);
benchmark_debug_log("%s: random monitor command selected (q%zu): %s\n",
m_connections[conn_id]->get_readable_id(),
selected_index + 1, // 1-based index for user display
monitor_cmd_ptr->c_str());
} else {
monitor_cmd_ptr = &m_config->monitor_commands->get_next_sequential_command(&selected_index);
benchmark_debug_log("%s: sequential monitor command selected (q%zu): %s\n",
m_connections[conn_id]->get_readable_id(),
selected_index + 1, // 1-based index for user display
monitor_cmd_ptr->c_str());
}
const std::string &monitor_cmd = *monitor_cmd_ptr;
// Parse and format the monitor command into a temporary arbitrary_command
arbitrary_command temp_cmd(monitor_cmd.c_str());
if (!temp_cmd.split_command_to_args()) {
fprintf(stderr, "warning: skipping malformed monitor command at line %zu: %s\n", selected_index + 1,
monitor_cmd.c_str());
return true; // Skip this command but continue processing
}
// Format the command for the protocol (adds RESP headers)
if (!m_connections[conn_id]->get_protocol()->format_arbitrary_command(temp_cmd)) {
fprintf(stderr, "warning: skipping unformattable monitor command at line %zu: %s\n", selected_index + 1,
monitor_cmd.c_str());
return true; // Skip this command but continue processing
}
// Send the randomly selected command
for (unsigned int i = 0; i < temp_cmd.command_args.size(); i++) {
const command_arg *arg = &temp_cmd.command_args[i];
if (arg->type == const_type) {
cmd_size += m_connections[conn_id]->send_arbitrary_command(arg);
} else if (arg->type == key_type) {
unsigned long long key_index;
get_key_response res = get_key_for_conn(command_index, conn_id, &key_index);
assert(res == available_for_conn);
cmd_size +=
m_connections[conn_id]->send_arbitrary_command(arg, m_obj_gen->get_key(), m_obj_gen->get_key_len());
} else if (arg->type == data_type) {
unsigned int value_len;
const char *value = m_obj_gen->get_value(0, &value_len);
assert(value != NULL);
assert(value_len > 0);
cmd_size += m_connections[conn_id]->send_arbitrary_command(arg, value, value_len);
}
}
// Get the stats index for the actual command type (e.g., SET, GET)
// instead of using the placeholder's index
size_t stats_index = m_config->monitor_commands->get_stats_index(selected_index);
m_connections[conn_id]->send_arbitrary_command_end(stats_index, ×tamp, cmd_size);
return true;
}
// Normal arbitrary command handling
for (unsigned int i = 0; i < cmd.command_args.size(); i++) {
const command_arg *arg = &cmd.command_args[i];
if (arg->type == const_type) {
cmd_size += m_connections[conn_id]->send_arbitrary_command(arg);
} else if (arg->type == key_type) {
// --transaction: reuse one key for every __key__ in the rotation so
// the whole WATCH/MULTI/EXEC unit resolves to a single key/slot.
// Non-cluster path only: in --cluster-mode, cluster_client drives the
// reuse by pushing the rotation key onto m_key_index_pools and relies
// on this method draining it via get_key_for_conn, so the fast path
// here would leave the pool un-drained. Also skip the data-import
// path, which streams a distinct key per command.
const bool txn_reuse =
m_config->transaction && !m_config->cluster_mode && (!m_config->data_import || m_config->generate_keys);
if (txn_reuse && m_txn_rotation_key_valid && m_txn_rotation_key_seq == m_arbitrary_command_rotation_seq) {
// Same rotation as the cached key: regenerate the identical key
// string without advancing the per-iter key cursor.
m_obj_gen->generate_key(m_txn_rotation_key_index);
} else {
unsigned long long key_index;
get_key_response res = get_key_for_conn(command_index, conn_id, &key_index);
/* If key not available for this connection, we have a bug of sending partial request */
assert(res == available_for_conn);
if (txn_reuse) {
// First keyed command of the rotation: adopt this key for
// the rest of the rotation.
m_txn_rotation_key_index = key_index;
m_txn_rotation_key_valid = true;
m_txn_rotation_key_seq = m_arbitrary_command_rotation_seq;
}
}
// when we have static data mixed with the key placeholder
if (arg->has_key_affixes) {
// Pre-calculate total length to avoid reallocations
const char *key = m_obj_gen->get_key();
unsigned int key_len = m_obj_gen->get_key_len();
size_t prefix_len = arg->data_prefix.length();
size_t suffix_len = arg->data_suffix.length();
size_t total_len = prefix_len + key_len + suffix_len;
// Optimization: use stack buffer for small keys to avoid heap allocation
if (total_len < KEY_BUFFER_STACK_SIZE) {
char stack_buffer[KEY_BUFFER_STACK_SIZE];
char *pos = stack_buffer;
// Manual copy for better performance
if (prefix_len > 0) {
memcpy(pos, arg->data_prefix.data(), prefix_len);
pos += prefix_len;
}
memcpy(pos, key, key_len);
pos += key_len;
if (suffix_len > 0) {
memcpy(pos, arg->data_suffix.data(), suffix_len);
}
cmd_size += m_connections[conn_id]->send_arbitrary_command(arg, stack_buffer, total_len);
} else {
// Fallback to string for large keys
std::string combined_key;
combined_key.reserve(total_len);
combined_key.append(arg->data_prefix);
combined_key.append(key, key_len);
combined_key.append(arg->data_suffix);
cmd_size += m_connections[conn_id]->send_arbitrary_command(arg, combined_key.c_str(),
combined_key.length());
}
} else {
cmd_size +=
m_connections[conn_id]->send_arbitrary_command(arg, m_obj_gen->get_key(), m_obj_gen->get_key_len());
}
} else if (arg->type == data_type) {
unsigned int value_len;
const char *value = m_obj_gen->get_value(0, &value_len);
assert(value != NULL);
assert(value_len > 0);
cmd_size += m_connections[conn_id]->send_arbitrary_command(arg, value, value_len);
}
}
m_connections[conn_id]->send_arbitrary_command_end(command_index, ×tamp, cmd_size);
return true;
}
bool client::create_scan_continuation_request(struct timeval ×tamp, unsigned int conn_id, unsigned int stats_index)
{
int cmd_size = 0;
arbitrary_command *cmd = m_config->scan_continuation_command;
benchmark_debug_log("%s: SCAN continuation cursor=%s\n", m_connections[conn_id]->get_readable_id(),
m_scan_cursor.c_str());
for (unsigned int i = 0; i < cmd->command_args.size(); i++) {
const command_arg *arg = &cmd->command_args[i];
if (arg->type == const_type) {
cmd_size += m_connections[conn_id]->send_arbitrary_command(arg);
} else if (arg->type == scan_cursor_type) {
cmd_size +=
m_connections[conn_id]->send_arbitrary_command(arg, m_scan_cursor.c_str(), m_scan_cursor.length());
} else if (arg->type == key_type) {
unsigned long long key_index;
get_key_response res = get_key_for_conn(0, conn_id, &key_index);
assert(res == available_for_conn);
cmd_size +=
m_connections[conn_id]->send_arbitrary_command(arg, m_obj_gen->get_key(), m_obj_gen->get_key_len());
} else if (arg->type == data_type) {
unsigned int value_len;
const char *value = m_obj_gen->get_value(0, &value_len);
assert(value != NULL);
assert(value_len > 0);
cmd_size += m_connections[conn_id]->send_arbitrary_command(arg, value, value_len);
}
}
m_connections[conn_id]->send_arbitrary_command_end(stats_index, ×tamp, cmd_size);
return true;
}
bool client::create_wait_request(struct timeval ×tamp, unsigned int conn_id)
{
unsigned int num_slaves = m_obj_gen->random_range(m_config->num_slaves.min, m_config->num_slaves.max);
unsigned int timeout = m_obj_gen->normal_distribution(
m_config->wait_timeout.min, m_config->wait_timeout.max, 0,
((m_config->wait_timeout.max - m_config->wait_timeout.min) / 2.0) + m_config->wait_timeout.min);
m_connections[conn_id]->send_wait_command(×tamp, num_slaves, timeout);
return true;
}
bool client::create_set_request(struct timeval ×tamp, unsigned int conn_id)
{
unsigned long long key_index;
get_key_response res = get_key_for_conn(SET_CMD_IDX, conn_id, &key_index);
if (res == not_available) return false;
if (res == available_for_conn) {
unsigned int value_len;
const char *value = m_obj_gen->get_value(key_index, &value_len);
m_connections[conn_id]->send_set_command(×tamp, m_obj_gen->get_key(), m_obj_gen->get_key_len(), value,
value_len, m_obj_gen->get_expiry(), m_config->data_offset);
}
return true;
}
bool client::create_get_request(struct timeval ×tamp, unsigned int conn_id)
{
unsigned long long key_index;
get_key_response res = get_key_for_conn(GET_CMD_IDX, conn_id, &key_index);
if (res == not_available) return false;
if (res == available_for_conn) {
m_connections[conn_id]->send_get_command(×tamp, m_obj_gen->get_key(), m_obj_gen->get_key_len(),
m_config->data_offset);
}
return true;
}
bool client::create_mget_request(struct timeval ×tamp, unsigned int conn_id)
{
unsigned long long key_index;
unsigned int keys_count = m_config->ratio.b - m_get_ratio_count;
if ((int) keys_count > m_config->multi_key_get) keys_count = m_config->multi_key_get;
m_keylist->clear();
for (unsigned int i = 0; i < keys_count; i++) {
get_key_response res = get_key_for_conn(GET_CMD_IDX, conn_id, &key_index);
if (res != available_for_conn) continue;
m_keylist->add_key(m_obj_gen->get_key(), m_obj_gen->get_key_len());
}
if (m_keylist->get_keys_count() == 0) return false;
m_connections[conn_id]->send_mget_command(×tamp, m_keylist);
return true;
}
// This function could use some urgent TLC -- but we need to do it without altering the behavior
void client::create_request(struct timeval timestamp, unsigned int conn_id)
{
// are we using arbitrary command?
if (m_config->arbitrary_commands->is_defined()) {
// SCAN incremental iteration mode: cursor state drives command selection
if (m_config->scan_incremental_iteration) {
if (m_scan_cursor != "0") {
// Send continuation SCAN with current cursor, stats to index 1
if (create_scan_continuation_request(timestamp, conn_id, 1)) {
m_reqs_generated++;
}
} else {
// Send initial SCAN 0, stats to index 0
if (create_arbitrary_request(0, timestamp, conn_id)) {
m_reqs_generated++;
}
}
return;
}
if (create_arbitrary_request(m_executed_command_index, timestamp, conn_id)) {
advance_arbitrary_command_index();
m_reqs_generated++;
}
return;
}
// If the Set:Wait ratio is not 0, start off with WAITs
if (m_config->wait_ratio.b &&
(m_tot_wait_ops == 0 || (m_tot_set_ops / m_tot_wait_ops > m_config->wait_ratio.a / m_config->wait_ratio.b))) {
if (!create_wait_request(timestamp, conn_id)) return;
m_reqs_generated++;
m_tot_wait_ops++;
}
// are we set or get? this depends on the ratio
else if (m_set_ratio_count < m_config->ratio.a) {
/* Before we can create a SET request, we need to read the next imported item */
if (m_config->data_import) {
dynamic_cast<import_object_generator *>(m_obj_gen)->read_next_item();
}
if (!create_set_request(timestamp, conn_id)) return;
m_set_ratio_count++;
m_reqs_generated++;
m_tot_set_ops++;
} else if (m_get_ratio_count < m_config->ratio.b) {
// GET command
if (!m_config->multi_key_get) {
if (!create_get_request(timestamp, conn_id)) return;
m_get_ratio_count++;
m_reqs_generated++;
return;
}
// MGET command
if (!create_mget_request(timestamp, conn_id)) {
// Two distinct reasons for false:
// defer (m_mget_defer==true): backpressure or no-route — the
// destination connection is at pipeline capacity or the routing
// policy found no eligible replica right now. Do NOT advance the
// ratio counter; the next fill_pipeline tick will retry.
// exhausted (m_mget_defer==false): this connection owns no slots
// in the configured key range. Force the counter past the
// threshold so create_request() resets both counters on the next
// call instead of busy-spinning here forever.
if (!m_mget_defer) {
m_get_ratio_count = m_config->ratio.b;
}
return;
}
m_get_ratio_count += m_keylist->get_keys_count();
m_reqs_generated++;
} else {
// overlap counters
m_get_ratio_count = m_set_ratio_count = 0;
}
}
int client::prepare(void)
{
if (MAIN_CONNECTION == NULL) return -1;
int ret = this->connect();
if (ret < 0) {
benchmark_error_log("prepare: failed to connect, test aborted.\n");
return ret;
}
return 0;
}
// Maps internal request_type to a short uppercase string for failed-keys logs.
static const char *request_type_to_name(request_type t)
{
switch (t) {
case rt_get:
return "GET";
case rt_set:
return "SET";
case rt_wait:
return "WAIT";
case rt_arbitrary:
return "ARBITRARY";
default:
return "UNKNOWN";
}
}
void client::handle_response(unsigned int conn_id, struct timeval timestamp, request *request,
protocol_response *response)
{
if (response->is_error()) {
benchmark_error_log("server %s handle error response: %s\n", m_connections[conn_id]->get_readable_id(),
response->get_status());
// Retry path: only when --retry-on-error is enabled. We intercept the
// failed response and re-enqueue the request; stats are NOT updated
// until the request reaches a terminal outcome (success or retries
// exhausted). The shard_connection's retry queue handles backoff and
// hard-cap; if it refuses, we fall through to permanent-failure
// accounting below.
if (m_config->retry_on_error && is_retryable_error(response->get_status(), m_config->retry_on_filter)) {
shard_connection *sc = m_connections[conn_id];
if (sc->enqueue_retry(request)) {
// Ownership transferred to the retry queue (signalled by
// request->m_claimed_by_retry = true). process_response skips
// its delete; the request is freed when the retry queue or
// replay path drains it.
m_stats.inc_retry_attempt();
if (request->m_retries == 0) m_stats.inc_retried_op();
return;
}
// enqueue_retry refused (max retries exceeded / queue full / no
// captured bytes). Fall through to permanent-failure accounting.
}
// Permanent failure path: log to failed-keys file (if configured),
// bump the error counter, and fall through to stats.
if (m_config->failed_keys_file) {
global_failed_keys_logger().log_failure(timestamp, request_type_to_name(request->m_type), request->m_key,
request->m_key_len, response->get_status(), request->m_retries);
}
m_stats.inc_error();
// On SCAN error, reset cursor to restart iteration
if (m_config->scan_incremental_iteration && request->m_type == rt_arbitrary) {
m_scan_cursor = "0";
m_scan_iteration_count = 0;
}
}
// Stats use the first-attempt send time so retries appear as one op with
// total latency from first send to final outcome. For non-retry runs,
// m_first_sent_time == m_sent_time, so this is a no-op behavior change.
struct timeval ref_sent = request->m_first_sent_time;
switch (request->m_type) {
case rt_get:
m_stats.update_get_op(×tamp, response->get_total_len(), request->m_size, ts_diff(ref_sent, timestamp),
response->get_hits(), request->m_keys - response->get_hits());
break;
case rt_set:
m_stats.update_set_op(×tamp, response->get_total_len(), request->m_size, ts_diff(ref_sent, timestamp));
break;
case rt_wait:
m_stats.update_wait_op(×tamp, ts_diff(ref_sent, timestamp));
break;
case rt_arbitrary: {
arbitrary_request *ar = static_cast<arbitrary_request *>(request);
m_stats.update_arbitrary_op(×tamp, response->get_total_len(), request->m_size,
ts_diff(ref_sent, timestamp), ar->index);
// Per-key miss accounting. Only fires when:
// 1. the command resolved to a registry entry (spec != NULL)
// 2. miss tracking wasn't disabled by --command-miss-tracking=off
// 3. the reply isn't an error (errors are recorded separately by the
// protocol layer; counting them as misses would double-book).
if (ar->m_cmd_meta != NULL && ar->m_cmd_meta->miss_tracking_enabled && ar->m_cmd_meta->spec != NULL &&
!response->is_error()) {
unsigned int num_keys = request->m_keys;
unsigned int hits = 0;
unsigned int misses = 0;
// Each case allocates per_key_hit at the right size once. Avoiding
// a pre-resize here means SingleNullBulk pays only for a 1-bucket
// vector and ArrayPerElementNulls pays for one assign() instead of
// a resize-then-assign pair on the hot reply path.
std::vector<bool> per_key_hit;
using memtier::command_meta::ReplyShape;
switch (ar->m_cmd_meta->spec->reply_shape) {
case ReplyShape::SingleNullBulk: {
// Hit iff the top-level reply isn't a null sentinel. We can't
// use response->get_hits() here: the parser increments it for
// every non-null bulk it walks, which overcounts for blocking
// pop commands (BLPOP/BRPOP/BZPOPMAX/BZPOPMIN return [key,
// value] arrays on success — get_hits() returns 2) and for
// multi-element pops (LPOP key COUNT N returns an N-element
// array). The status line carries the top-level RESP type
// header, which is what we actually care about: $-1 (null
// bulk), *-1 (null array), or anything else (a value).
const char *status = response->get_status();
// Miss sentinels: $-1 (null bulk), *-1 (null array, RESP2),
// *0 (empty array - returned by SPOP/SRANDMEMBER with a
// count argument when the key is absent), and "_" (RESP3
// null, parsed via single_type and stored verbatim as the
// status line without the CRLF). Anything else is a value
// (or a non-empty container) and counts as a hit.
bool is_null = (status != NULL && (strcmp(status, "$-1") == 0 || strcmp(status, "*-1") == 0 ||
strcmp(status, "*0") == 0 || strcmp(status, "_") == 0));
// Always one bucket for SingleNullBulk: variadic-key blocking
// commands like BLPOP carry the winning key in the reply but
// we don't parse it, so per-key attribution beyond hit/miss
// isn't available.
per_key_hit.assign(1, false);
num_keys = 1;
hits = is_null ? 0 : 1;
misses = is_null ? 1 : 0;
if (!is_null) per_key_hit[0] = true;
break;
}
case ReplyShape::ArrayPerElementNulls: {
// The parser recorded a per-top-level-element hit/miss bitmap at
// parse time (set_track_elem_misses) with no materialization --
// no value malloc/memcpy, no mbulk tree. Bucket count is the
// reply element count, not the spec key count: HMGET / ZMSCORE
// have 1 Redis key but produce one reply element per
// field/member; MGET (multi-key spec) matches reply size 1:1.
//
// The bitmap reproduces the old materialized walk's semantics:
// - bulk leaf: hit iff $N with N>0 (null $-1 and empty $0 are
// misses); RESP3 null '_' is a miss; other single types are
// hits (see track_leaf in protocol.cpp).
// - nested sub-array element (GEOPOS/SORT_RO/...): hit iff the
// sub-array is non-empty (*0 / *-1 are misses).
if (response->get_top_array_len() < 0) {
// Top-level reply isn't an array (+OK, -ERR, a single bulk,
// or any non-array misshape). One miss bucket, matching the
// previous get_mbulk_value()==NULL guard.
per_key_hit.assign(1, false);
num_keys = 1;
misses = 1;
} else {
const std::vector<uint8_t> &eh = response->get_elem_hits();
size_t n = eh.size();
per_key_hit.assign(n, false);
num_keys = (unsigned int) n;
for (size_t i = 0; i < n; ++i) {
if (eh[i]) {
per_key_hit[i] = true;
hits++;
}
}
misses = (num_keys > hits) ? (num_keys - hits) : 0;
}
break;
}
case ReplyShape::EmptyCollection: {
// Heuristic: empty array == missing key. EmptyCollection
// commands (SMEMBERS, LRANGE, HGETALL, ...) virtually always
// carry exactly 1 key.
//
// We only need the top-level element count, not the element
// values, so we avoid set_keep_value() materialization (see the
// keep_value gate in setup_client) and read the declared
// aggregate length the parser captured from the reply header.
// get_top_array_len() is:
// >0 for a populated array/map/set -> hit (regardless of
// whether the elements are zero-length: the count comes
// from the *N/%N/~N header, not a per-value walk),
// 0 for an empty (*0) or null (*-1) collection -> miss,
// -1 when the reply was not a top-level aggregate at all
// (a scalar/bulk misshape) -> miss, matching the previous
// get_mbulk_value()==NULL guard.
// This reproduces the old structural check exactly while
// staying alloc-free, and is independent of keep_value (it is
// captured whether or not an ArrayPerElementNulls command on
// the same connection forced materialization on).
bool empty = (response->get_top_array_len() <= 0);
per_key_hit.assign(num_keys, !empty);
hits = empty ? 0 : num_keys;
misses = empty ? num_keys : 0;
break;
}
case ReplyShape::IntegerMembership: {
// Reply is ":N\r\n" where N is the count of present keys.
// Per-position attribution is impossible from this reply, so
// we mark the first N buckets as hits and the rest as misses;
// the aggregate is correct, the per-position is conventional.
const char *status = response->get_status();
unsigned int n = 0;
if (status != NULL && status[0] == ':') {
long v = strtol(status + 1, NULL, 10);
if (v > 0) n = (unsigned int) v;
}
if (n > num_keys) n = num_keys;
hits = n;
misses = num_keys - n;
per_key_hit.assign(num_keys, false);
for (unsigned int i = 0; i < hits; ++i)
per_key_hit[i] = true;
break;
}
default:
// Unreachable today: miss_tracking_enabled is only set for the
// four miss-bearing shapes above. Skip the stats call entirely
// here so a future shape addition doesn't silently record
// zero-valued hits/misses with an empty per_key_hit; the build
// will fail to compile (missing case label) only if -Wswitch
// catches it, so the guard makes the intent explicit.
break;
}
if (!per_key_hit.empty()) {
m_stats.update_arbitrary_op_misses(ar->index, hits, misses, per_key_hit);
}
}
// Extract cursor from SCAN response for incremental iteration
if (m_config->scan_incremental_iteration && !response->is_error()) {
mbulk_size_el *top = response->get_mbulk_value();
if (top && top->mbulks_elements.size() >= 1) {
bulk_el *cursor_el = top->mbulks_elements[0]->as_bulk();
if (cursor_el && cursor_el->value && cursor_el->value_len > 0) {
m_scan_cursor.assign(cursor_el->value, cursor_el->value_len);
} else {
m_scan_cursor = "0";
}
} else {
m_scan_cursor = "0";
}
// Only count continuation SCANs (index 1), not the initial SCAN 0 (index 0)
if (ar->index == 1) {
m_scan_iteration_count++;
}
if (m_scan_cursor == "0" || (m_config->scan_incremental_max_iterations > 0 &&
m_scan_iteration_count >= m_config->scan_incremental_max_iterations)) {
m_scan_cursor = "0";
m_scan_iteration_count = 0;
}
}
break;
}
default: