forked from RedisLabs/memtier_benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.cpp
executable file
·1440 lines (1215 loc) · 43.3 KB
/
client.cpp
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-2013 Garantia Data 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 "client.h"
#include "obj_gen.h"
#include "memtier_benchmark.h"
float get_2_meaningful_digits(float val)
{
float log = floor(log10(val));
float factor = pow(10, log-1); // to save 2 digits
float new_val = round( val / factor);
new_val *= factor;
return new_val;
}
void client_event_handler(evutil_socket_t sfd, short evtype, void *opaque)
{
client *c = (client *) opaque;
assert(c != NULL);
assert(c->get_sockfd() == sfd);
c->handle_event(evtype);
}
inline long long int ts_diff(struct timeval a, struct timeval b)
{
unsigned long long aval = a.tv_sec * 1000000 + a.tv_usec;
unsigned long long bval = b.tv_sec * 1000000 + b.tv_usec;
return bval - aval;
}
inline unsigned long int ts_diff_now(struct timeval a)
{
struct timeval b;
gettimeofday(&b, NULL);
unsigned long long aval = a.tv_sec * 1000000 + a.tv_usec;
unsigned long long bval = b.tv_sec * 1000000 + b.tv_usec;
return bval - aval;
}
inline timeval timeval_factorial_avarge( timeval a, timeval b, unsigned int weight)
{
timeval tv;
double factor = ((double)weight - 1) / weight;
tv.tv_sec = factor * a.tv_sec + (double)b.tv_sec / weight ;
tv.tv_usec = factor * a.tv_usec + (double)b.tv_usec / weight ;
return (tv);
}
client::request::request(request_type type, unsigned int size, struct timeval* sent_time, unsigned int keys)
: m_type(type), m_size(size), m_keys(keys)
{
if (sent_time != NULL)
m_sent_time = *sent_time;
else {
gettimeofday(&m_sent_time, NULL);
}
}
bool client::setup_client(benchmark_config *config, abstract_protocol *protocol, object_generator *objgen)
{
m_config = config;
assert(m_config != NULL);
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_read_buf = evbuffer_new();
assert(m_read_buf != NULL);
m_write_buf = evbuffer_new();
assert(m_write_buf != NULL);
m_protocol = protocol->clone();
assert(m_protocol != NULL);
m_protocol->set_buffers(m_read_buf, m_write_buf);
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);
if (config->key_pattern[0]=='P') {
int range = (config->key_maximum - config->key_minimum)/(config->clients*config->threads) + 1;
int min = config->key_minimum + range*config->next_client_idx;
int max = min+range;
if(config->next_client_idx==(int)(config->clients*config->threads)-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_sockfd(-1), m_unix_sockaddr(NULL), m_event(NULL), m_event_base(NULL),
m_read_buf(NULL), m_write_buf(NULL), m_initialized(false), m_connected(false),
m_authentication(auth_none), m_db_selection(select_none),
m_config(NULL), m_protocol(NULL), m_obj_gen(NULL),
m_reqs_processed(0),
m_set_ratio_count(0),
m_get_ratio_count(0)
{
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_sockfd(-1), m_unix_sockaddr(NULL), m_event(NULL), m_event_base(NULL),
m_read_buf(NULL), m_write_buf(NULL), m_initialized(false), m_connected(false),
m_authentication(auth_none), m_db_selection(select_none),
m_config(NULL), m_protocol(NULL), m_obj_gen(NULL),
m_reqs_processed(0),
m_set_ratio_count(0),
m_get_ratio_count(0)
{
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()
{
if (m_event != NULL) {
event_free(m_event);
m_event = NULL;
}
if (m_unix_sockaddr != NULL) {
free(m_unix_sockaddr);
m_unix_sockaddr = NULL;
}
if (m_read_buf != NULL) {
evbuffer_free(m_read_buf);
m_read_buf = NULL;
}
if (m_write_buf != NULL) {
evbuffer_free(m_write_buf);
m_write_buf = NULL;
}
if (m_sockfd != -1) {
close(m_sockfd);
m_sockfd = -1;
}
if (m_protocol != NULL) {
delete m_protocol;
m_protocol = NULL;
}
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)
{
if (m_sockfd != -1) {
close(m_sockfd);
m_sockfd = -1;
}
evbuffer_drain(m_read_buf, evbuffer_get_length(m_read_buf));
evbuffer_drain(m_write_buf, evbuffer_get_length(m_write_buf));
int ret = event_del(m_event);
assert(ret == 0);
m_connected = false;
m_authentication = auth_none;
m_db_selection = select_none;
}
int client::connect(void)
{
struct connect_info addr;
// clean up existing socket/buffers
if (m_sockfd != -1)
close(m_sockfd);
evbuffer_drain(m_read_buf, evbuffer_get_length(m_read_buf));
evbuffer_drain(m_write_buf, evbuffer_get_length(m_write_buf));
if (m_unix_sockaddr != NULL) {
m_sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
if (m_sockfd < 0) {
return -errno;
}
} else {
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;
}
// initialize socket
m_sockfd = socket(addr.ci_family, addr.ci_socktype, addr.ci_protocol);
if (m_sockfd < 0) {
return -errno;
}
// configure socket behavior
struct linger ling = {0, 0};
int flags = 1;
int error = setsockopt(m_sockfd, SOL_SOCKET, SO_KEEPALIVE, (void *)&flags, sizeof(flags));
assert(error == 0);
error = setsockopt(m_sockfd, SOL_SOCKET, SO_LINGER, (void *)&ling, sizeof(ling));
assert(error == 0);
error = setsockopt(m_sockfd, IPPROTO_TCP, TCP_NODELAY, (void *)&flags, sizeof(flags));
assert(error == 0);
}
// set non-blcoking behavior
int flags = 1;
if ((flags = fcntl(m_sockfd, F_GETFL, 0)) < 0 ||
fcntl(m_sockfd, F_SETFL, flags | O_NONBLOCK) < 0) {
benchmark_error_log("connect: failed to set non-blocking flag.\n");
close(m_sockfd);
m_sockfd = -1;
return -1;
}
// set up event
if (!m_event) {
m_event = event_new(m_event_base,
m_sockfd, EV_WRITE, client_event_handler, (void *)this);
assert(m_event != NULL);
} else {
int ret = event_del(m_event);
assert(ret == 0);
ret = event_assign(m_event, m_event_base,
m_sockfd, EV_WRITE, client_event_handler, (void *)this);
assert(ret == 0);
}
int ret = event_add(m_event, NULL);
assert(ret == 0);
// call connect
if (::connect(m_sockfd,
m_unix_sockaddr ? (struct sockaddr *) m_unix_sockaddr : addr.ci_addr,
m_unix_sockaddr ? sizeof(struct sockaddr_un) : addr.ci_addrlen) == -1) {
if (errno == EINPROGRESS || errno == EWOULDBLOCK)
return 0;
benchmark_error_log("connect failed, error = %s\n", strerror(errno));
return -1;
}
return 0;
}
void client::handle_event(short evtype)
{
// connect() returning to us? normally we expect EV_WRITE, but for UNIX domain
// sockets we workaround since connect() returned immediately, but we don't want
// to do any I/O from the client::connect() call...
if (!m_connected && (evtype == EV_WRITE || m_unix_sockaddr != NULL)) {
int error = -1;
socklen_t errsz = sizeof(error);
if (getsockopt(m_sockfd, SOL_SOCKET, SO_ERROR, (void *) &error, &errsz) == -1) {
benchmark_error_log("connect: error getting connect response (getsockopt): %s\n", strerror(errno));
return;
}
if (error != 0) {
benchmark_error_log("connect: connection failed: %s\n", strerror(error));
return;
}
m_connected = true;
if (!m_reqs_processed) {
process_first_request();
} else {
benchmark_debug_log("reconnection complete, proceeding with test\n");
fill_pipeline();
}
}
assert(m_connected == true);
if ((evtype & EV_WRITE) == EV_WRITE && evbuffer_get_length(m_write_buf) > 0) {
if (evbuffer_write(m_write_buf, m_sockfd) < 0) {
if (errno != EWOULDBLOCK) {
benchmark_error_log("write error: %s\n", strerror(errno));
disconnect();
return;
}
}
}
if ((evtype & EV_READ) == EV_READ) {
int ret = 1;
while (ret > 0) {
ret = evbuffer_read(m_read_buf, m_sockfd, -1);
}
if (ret < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
benchmark_error_log("read error: %s\n", strerror(errno));
disconnect();
return;
}
if (ret == 0) {
benchmark_error_log("connection dropped.\n");
disconnect();
return;
}
if (evbuffer_get_length(m_read_buf) > 0) {
process_response();
// process_response may have disconnected, in which case
// we just abort and wait for libevent to call us back sometime
if (!m_connected) {
return;
}
}
}
// update event
short new_evtype = 0;
if (!finished()) {
new_evtype = EV_READ;
}
if (evbuffer_get_length(m_write_buf) > 0) {
assert(finished() == false);
new_evtype |= EV_WRITE;
}
if (new_evtype) {
int ret = event_assign(m_event, m_event_base,
m_sockfd, new_evtype, client_event_handler, (void *)this);
assert(ret == 0);
ret = event_add(m_event, NULL);
assert(ret == 0);
} else {
benchmark_debug_log("nothing else to do, test is finished.\n");
m_stats.set_end_time(NULL);
}
}
bool client::finished(void)
{
if (m_config->requests > 0 && m_reqs_processed >= m_config->requests)
return true;
if (m_config->test_time > 0 && m_stats.get_duration() >= m_config->test_time)
return true;
return false;
}
bool client::send_conn_setup_commands(void)
{
bool sent = false;
if (m_config->authenticate && m_authentication != auth_done) {
if (m_authentication == auth_none) {
benchmark_debug_log("sending authentication command.\n");
m_protocol->authenticate(m_config->authenticate);
m_pipeline.push(new client::request(rt_auth, 0, NULL, 0));
m_authentication = auth_sent;
sent = true;
}
}
if (m_config->select_db && m_db_selection != select_done) {
if (m_db_selection == select_none) {
benchmark_debug_log("sending db selection command.\n");
m_protocol->select_db(m_config->select_db);
m_pipeline.push(new client::request(rt_select_db, 0, NULL, 0));
m_db_selection = select_sent;
sent = true;
}
}
return sent;
}
bool client::is_conn_setup_done(void)
{
if (m_config->authenticate && m_authentication != auth_done)
return false;
if (m_config->select_db && m_db_selection != select_done)
return false;
return true;
}
void client::create_request(void)
{
// are we set or get? this depends on the ratio
if (m_set_ratio_count < m_config->ratio.a) {
// set command
int iter = OBJECT_GENERATOR_KEY_SET_ITER;
if (m_config->key_pattern[0] == 'R')
iter = OBJECT_GENERATOR_KEY_RANDOM;
else if (m_config->key_pattern[0] == 'G')
iter = OBJECT_GENERATOR_KEY_GAUSSIAN;
data_object *obj = m_obj_gen->get_object(iter);
unsigned int key_len;
const char *key = obj->get_key(&key_len);
unsigned int value_len;
const char *value = obj->get_value(&value_len);
int cmd_size = 0;
m_set_ratio_count++;
benchmark_debug_log("SET key=[%.*s] value_len=%u expiry=%u\n",
key_len, key, value_len, obj->get_expiry());
cmd_size = m_protocol->write_command_set(key, key_len, value, value_len,
obj->get_expiry(), m_config->data_offset);
m_pipeline.push(new client::request(rt_set, cmd_size, NULL, 1));
} else if (m_get_ratio_count < m_config->ratio.b) {
// get command
int cmd_size = 0;
if (m_config->multi_key_get > 0) {
unsigned int keys_count;
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();
while (m_keylist->get_keys_count() < keys_count) {
unsigned int keylen;
int iter = OBJECT_GENERATOR_KEY_GET_ITER;
if (m_config->key_pattern[2] == 'R')
iter = OBJECT_GENERATOR_KEY_RANDOM;
else if (m_config->key_pattern[2] == 'G')
iter = OBJECT_GENERATOR_KEY_GAUSSIAN;
const char *key = m_obj_gen->get_key(iter, &keylen);
assert(key != NULL);
assert(keylen > 0);
m_keylist->add_key(key, keylen);
}
const char *first_key, *last_key;
unsigned int first_key_len, last_key_len;
first_key = m_keylist->get_key(0, &first_key_len);
last_key = m_keylist->get_key(m_keylist->get_keys_count()-1, &last_key_len);
benchmark_debug_log("MGET %d keys [%.*s] .. [%.*s]\n",
m_keylist->get_keys_count(), first_key_len, first_key, last_key_len, last_key);
cmd_size = m_protocol->write_command_multi_get(m_keylist);
m_get_ratio_count += keys_count;
m_pipeline.push(new client::request(rt_get, cmd_size, NULL, m_keylist->get_keys_count()));
} else {
unsigned int keylen;
int iter = OBJECT_GENERATOR_KEY_GET_ITER;
if (m_config->key_pattern[2] == 'R')
iter = OBJECT_GENERATOR_KEY_RANDOM;
else if (m_config->key_pattern[2] == 'G')
iter = OBJECT_GENERATOR_KEY_GAUSSIAN;
const char *key = m_obj_gen->get_key(iter, &keylen);
assert(key != NULL);
assert(keylen > 0);
benchmark_debug_log("GET key=[%.*s]\n", keylen, key);
cmd_size = m_protocol->write_command_get(key, keylen, m_config->data_offset);
m_get_ratio_count++;
m_pipeline.push(new client::request(rt_get, cmd_size, NULL, 1));
}
} else {
// overlap counters
m_get_ratio_count = m_set_ratio_count = 0;
}
}
void client::fill_pipeline(void)
{
while (!finished() && m_pipeline.size() < m_config->pipeline) {
if (!is_conn_setup_done()) {
send_conn_setup_commands();
return;
}
// don't exceed requests
if (m_config->requests > 0 && m_reqs_processed + m_pipeline.size() >= m_config->requests)
break;
// 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_pipeline.size() >= m_config->reconnect_interval)
return;
}
create_request();
}
}
int client::prepare(void)
{
if (!m_unix_sockaddr && (!m_config->server_addr || !m_protocol))
return -1;
int ret = this->connect();
if (ret < 0) {
benchmark_error_log("prepare: failed to connect, test aborted.\n");
return ret;
}
return 0;
}
void client::process_first_request(void)
{
struct timeval now;
gettimeofday(&now, NULL);
m_stats.set_start_time(&now);
fill_pipeline();
}
void client::handle_response(request *request, protocol_response *response)
{
switch (request->m_type) {
case rt_get:
m_stats.update_get_op(NULL,
request->m_size + response->get_total_len(),
ts_diff_now(request->m_sent_time),
response->get_hits(),
request->m_keys - response->get_hits());
break;
case rt_set:
m_stats.update_set_op(NULL,
request->m_size + response->get_total_len(),
ts_diff_now(request->m_sent_time));
break;
default:
assert(0);
break;
}
}
void client::process_response(void)
{
int ret;
bool responses_handled = false;
while ((ret = m_protocol->parse_response()) > 0) {
bool error = false;
protocol_response *r = m_protocol->get_response();
client::request* req = m_pipeline.front();
m_pipeline.pop();
if (req->m_type == rt_auth) {
if (r->is_error()) {
benchmark_error_log("error: authentication failed [%s]\n", r->get_status());
error = true;
} else {
m_authentication = auth_done;
benchmark_debug_log("authentication successful.\n");
}
} else if (req->m_type == 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 = select_done;
}
} else {
benchmark_debug_log("handled response (first line): %s, %d hits, %d misses\n",
r->get_status(),
r->get_hits(),
req->m_keys - r->get_hits());
if (r->is_error()) {
benchmark_error_log("error response: %s\n", r->get_status());
}
handle_response(req, r);
m_reqs_processed++;
responses_handled = true;
}
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_reqs_processed % m_config->reconnect_interval) == 0) {
assert(m_pipeline.size() == 0);
benchmark_debug_log("reconnecting, m_reqs_processed = %u\n", m_reqs_processed);
disconnect();
ret = connect();
assert(ret == 0);
return;
}
}
fill_pipeline();
}
///////////////////////////////////////////////////////////////////////////
verify_client::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) :
client::request(type, size, sent_time, keys),
m_key(NULL), m_key_len(0),
m_value(NULL), m_value_len(0)
{
m_key_len = key_len;
m_key = (char *)malloc(key_len);
memcpy(m_key, key, m_key_len);
m_value_len = value_len;
m_value = (char *)malloc(value_len);
memcpy(m_value, value, m_value_len);
}
verify_client::verify_request::~verify_request(void)
{
if (m_key != NULL) {
free((void *) m_key);
m_key = NULL;
}
if (m_value != NULL) {
free((void *) m_value);
m_value = NULL;
}
}
verify_client::verify_client(struct event_base *event_base,
benchmark_config *config,
abstract_protocol *protocol,
object_generator *obj_gen) : client(event_base, config, protocol, obj_gen),
m_finished(false), m_verified_keys(0), m_errors(0)
{
m_protocol->set_keep_value(true);
}
unsigned long long int verify_client::get_verified_keys(void)
{
return m_verified_keys;
}
unsigned long long int verify_client::get_errors(void)
{
return m_errors;
}
void verify_client::create_request(void)
{
// TODO: Refactor client::create_reqeust so this can be unified.
if (m_set_ratio_count < m_config->ratio.a) {
// Prepare a GET request that will be compared against a previous
// SET request.
int iter = OBJECT_GENERATOR_KEY_SET_ITER;
if (m_config->key_pattern[0] == 'R')
iter = OBJECT_GENERATOR_KEY_RANDOM;
else if (m_config->key_pattern[0] == 'G')
iter = OBJECT_GENERATOR_KEY_GAUSSIAN;
data_object *obj = m_obj_gen->get_object(iter);
unsigned int key_len;
const char *key = obj->get_key(&key_len);
unsigned int value_len;
const char *value = obj->get_value(&value_len);
unsigned int cmd_size;
m_set_ratio_count++;
cmd_size = m_protocol->write_command_get(key, key_len, m_config->data_offset);
m_pipeline.push(new verify_client::verify_request(rt_get,
cmd_size, NULL, 1, key, key_len, value, value_len));
} else if (m_get_ratio_count < m_config->ratio.b) {
// We don't really care about GET operations, all we do here is keep
// the object generator synced.
if (m_config->multi_key_get > 0) {
unsigned int keys_count;
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();
while (m_keylist->get_keys_count() < keys_count) {
unsigned int keylen;
int iter = OBJECT_GENERATOR_KEY_GET_ITER;
if (m_config->key_pattern[2] == 'R')
iter = OBJECT_GENERATOR_KEY_RANDOM;
else if (m_config->key_pattern[2] == 'G')
iter = OBJECT_GENERATOR_KEY_GAUSSIAN;
const char *key = m_obj_gen->get_key(iter, &keylen);
assert(key != NULL);
assert(keylen > 0);
m_keylist->add_key(key, keylen);
}
m_get_ratio_count += keys_count;
} else {
unsigned int keylen;
int iter = OBJECT_GENERATOR_KEY_GET_ITER;
if (m_config->key_pattern[2] == 'R')
iter = OBJECT_GENERATOR_KEY_RANDOM;
else if (m_config->key_pattern[2] == 'G')
iter = OBJECT_GENERATOR_KEY_GAUSSIAN;
m_obj_gen->get_key(iter, &keylen);
m_get_ratio_count++;
}
// We don't really send this request, but need to count it to be in sync.
m_reqs_processed++;
} else {
m_get_ratio_count = m_set_ratio_count = 0;
}
}
void verify_client::handle_response(request *request, protocol_response *response)
{
unsigned int rvalue_len;
const char *rvalue = response->get_value(&rvalue_len);
verify_request *vr = static_cast<verify_request *>(request);
assert(vr->m_type == rt_get);
if (response->is_error()) {
benchmark_error_log("error: request for key [%.*s] failed: %s\n",
vr->m_key_len, vr->m_key, response->get_status());
m_errors++;
} else {
if (!rvalue || rvalue_len != vr->m_value_len || memcmp(rvalue, vr->m_value, rvalue_len) != 0) {
benchmark_error_log("error: key [%.*s]: expected [%.*s], got [%.*s]\n",
vr->m_key_len, vr->m_key,
vr->m_value_len, vr->m_value,
rvalue_len, rvalue);
m_errors++;
} else {
benchmark_debug_log("key: [%.*s] verified successfuly.\n",
vr->m_key_len, vr->m_key);
m_verified_keys++;
}
}
}
bool verify_client::finished(void)
{
if (m_finished)
return true;
if (m_config->requests > 0 && m_reqs_processed >= m_config->requests)
return true;
return false;
}
///////////////////////////////////////////////////////////////////////////
client_group::client_group(benchmark_config* config, abstract_protocol *protocol, object_generator* obj_gen) :
m_base(NULL), m_config(config), m_protocol(protocol), m_obj_gen(obj_gen)
{
m_base = event_base_new();
assert(m_base != NULL);
assert(protocol != NULL);
assert(obj_gen != NULL);
}
client_group::~client_group(void)
{
for (std::vector<client*>::iterator i = m_clients.begin(); i != m_clients.end(); i++) {
client* c = *i;
delete c;
}
m_clients.clear();
if (m_base != NULL)
event_base_free(m_base);
m_base = NULL;
}
int client_group::create_clients(int num)
{
for (int i = 0; i < num; i++) {
client* c = new client(this);
assert(c != NULL);
if (!c->initialized()) {
delete c;
return i;
}
m_clients.push_back(c);
}
return num;
}
int client_group::prepare(void)
{
for (std::vector<client*>::iterator i = m_clients.begin(); i != m_clients.end(); i++) {
client* c = *i;
int ret = c->prepare();
if (ret < 0) {
return ret;
}
}
return 0;
}
void client_group::run(void)
{
event_base_dispatch(m_base);
}
unsigned long int client_group::get_total_bytes(void)
{
unsigned long int total_bytes = 0;
for (std::vector<client*>::iterator i = m_clients.begin(); i != m_clients.end(); i++) {
total_bytes += (*i)->get_stats()->get_total_bytes();
}
return total_bytes;
}
unsigned long int client_group::get_total_ops(void)
{
unsigned long int total_ops = 0;
for (std::vector<client*>::iterator i = m_clients.begin(); i != m_clients.end(); i++) {
total_ops += (*i)->get_stats()->get_total_ops();
}
return total_ops;
}
unsigned long int client_group::get_total_latency(void)
{
unsigned long int total_latency = 0;
for (std::vector<client*>::iterator i = m_clients.begin(); i != m_clients.end(); i++) {
total_latency += (*i)->get_stats()->get_total_latency();
}
return total_latency;
}
unsigned long int client_group::get_duration_usec(void)
{
unsigned long int duration = 0;
unsigned int thread_counter = 1;
for (std::vector<client*>::iterator i = m_clients.begin(); i != m_clients.end(); i++, thread_counter++) {
float factor = ((float)(thread_counter - 1) / thread_counter);
duration = factor * duration + (float)(*i)->get_stats()->get_duration_usec() / thread_counter ;
}
return duration;
}
void client_group::merge_run_stats(run_stats* target)
{
assert(target != NULL);
unsigned int iteration_counter = 1;
for (std::vector<client*>::iterator i = m_clients.begin(); i != m_clients.end(); i++) {
target->merge(*(*i)->get_stats(), iteration_counter++);
}
}
void client_group::write_client_stats(const char *prefix)
{
unsigned int client_id = 0;
for (std::vector<client*>::iterator i = m_clients.begin(); i != m_clients.end(); i++) {
char filename[PATH_MAX];
snprintf(filename, sizeof(filename)-1, "%s-%u.csv", prefix, client_id++);
if (!(*i)->get_stats()->save_csv(filename)) {
fprintf(stderr, "error: %s: failed to write client stats.\n", filename);
}
}
}
///////////////////////////////////////////////////////////////////////////
run_stats::one_second_stats::one_second_stats(unsigned int second)
{
reset(second);
}
void run_stats::one_second_stats::reset(unsigned int second)
{
m_second = second;
m_bytes_get = m_bytes_set = 0;
m_ops_get = m_ops_set = 0;
m_get_hits = m_get_misses = 0;