]> git.saurik.com Git - redis.git/blame - src/redis-benchmark.c
Make the MSET benchmark *really* work with 10 keys
[redis.git] / src / redis-benchmark.c
CommitLineData
ed9b544e 1/* Redis benchmark utility.
2 *
12d090d2 3 * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
ed9b544e 4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *
9 * * Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * * Neither the name of Redis nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without
16 * specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
5f5b9840 31#include "fmacros.h"
32
ed9b544e 33#include <stdio.h>
34#include <string.h>
35#include <stdlib.h>
36#include <unistd.h>
37#include <errno.h>
38#include <sys/time.h>
39#include <signal.h>
40#include <assert.h>
41
42#include "ae.h"
ec8f0667 43#include "hiredis.h"
ed9b544e 44#include "sds.h"
45#include "adlist.h"
46#include "zmalloc.h"
47
ed9b544e 48#define CLIENT_CONNECTING 0
49#define CLIENT_SENDQUERY 1
50#define CLIENT_READREPLY 2
51
ed9b544e 52#define REDIS_NOTUSED(V) ((void) V)
53
54static struct config {
58cd7103 55 int debug;
ed9b544e 56 int numclients;
57 int requests;
58 int liveclients;
59 int donerequests;
60 int keysize;
61 int datasize;
57172ffb 62 int randomkeys;
ecfaf6da 63 int randomkeys_keyspacelen;
ed9b544e 64 aeEventLoop *el;
65 char *hostip;
66 int hostport;
c61e6925 67 char *hostsocket;
ed9b544e 68 int keepalive;
69 long long start;
70 long long totlatency;
8146e316 71 long long *latency;
ed0dd554 72 char *title;
ed9b544e 73 list *clients;
74 int quiet;
75 int loop;
266373b2 76 int idlemode;
ed9b544e 77} config;
78
79typedef struct _client {
ec8f0667 80 redisContext *context;
ed9b544e 81 int state;
ed9b544e 82 sds obuf;
1cd3c1e0 83 char *randptr;
8146e316 84 unsigned int written; /* bytes of 'obuf' already written */
8146e316
PN
85 long long start; /* start time of a request */
86 long long latency; /* request latency */
ed9b544e 87} *client;
88
89/* Prototypes */
90static void writeHandler(aeEventLoop *el, int fd, void *privdata, int mask);
91static void createMissingClients(client c);
92
93/* Implementation */
8146e316
PN
94static long long ustime(void) {
95 struct timeval tv;
96 long long ust;
97
98 gettimeofday(&tv, NULL);
99 ust = ((long)tv.tv_sec)*1000000;
100 ust += tv.tv_usec;
101 return ust;
102}
103
ed9b544e 104static long long mstime(void) {
105 struct timeval tv;
106 long long mst;
107
108 gettimeofday(&tv, NULL);
109 mst = ((long)tv.tv_sec)*1000;
110 mst += tv.tv_usec/1000;
111 return mst;
112}
113
114static void freeClient(client c) {
115 listNode *ln;
ec8f0667
PN
116 aeDeleteFileEvent(config.el,c->context->fd,AE_WRITABLE);
117 aeDeleteFileEvent(config.el,c->context->fd,AE_READABLE);
118 redisFree(c->context);
ed9b544e 119 sdsfree(c->obuf);
ed9b544e 120 zfree(c);
121 config.liveclients--;
122 ln = listSearchKey(config.clients,c);
123 assert(ln != NULL);
124 listDelNode(config.clients,ln);
125}
126
127static void freeAllClients(void) {
128 listNode *ln = config.clients->head, *next;
129
130 while(ln) {
131 next = ln->next;
132 freeClient(ln->value);
133 ln = next;
134 }
135}
136
137static void resetClient(client c) {
ec8f0667
PN
138 aeDeleteFileEvent(config.el,c->context->fd,AE_WRITABLE);
139 aeDeleteFileEvent(config.el,c->context->fd,AE_READABLE);
140 aeCreateFileEvent(config.el,c->context->fd,AE_WRITABLE,writeHandler,c);
ed9b544e 141 c->written = 0;
142 c->state = CLIENT_SENDQUERY;
8146e316
PN
143 c->start = ustime();
144 c->latency = -1;
ed9b544e 145}
146
ecfaf6da 147static void randomizeClientKey(client c) {
1cd3c1e0 148 char *p, *newline;
ecfaf6da 149 char buf[32];
150 long r;
151
1cd3c1e0
PN
152 if (c->randptr == NULL) return;
153
154 /* Check if we have to randomize (only once per connection) */
155 if (c->randptr == (void*)-1) {
156 p = strstr(c->obuf,":rand:");
157 if (!p) {
158 c->randptr = NULL;
159 return;
160 } else {
161 newline = strstr(p,"\r\n");
162 assert(newline-(p+6) == 12); /* 12 chars for randomness */
163 c->randptr = p+6;
164 }
165 }
166
167 /* Set random number in output buffer */
ecfaf6da 168 r = random() % config.randomkeys_keyspacelen;
1cd3c1e0
PN
169 snprintf(buf,sizeof(buf),"%012ld",r);
170 memcpy(c->randptr,buf,12);
ecfaf6da 171}
172
ed9b544e 173static void clientDone(client c) {
ed9b544e 174 if (config.donerequests == config.requests) {
175 freeClient(c);
176 aeStop(config.el);
177 return;
178 }
179 if (config.keepalive) {
180 resetClient(c);
ecfaf6da 181 if (config.randomkeys) randomizeClientKey(c);
ed9b544e 182 } else {
183 config.liveclients--;
184 createMissingClients(c);
185 config.liveclients++;
186 freeClient(c);
187 }
188}
189
ec8f0667 190static void readHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
ed9b544e 191 client c = privdata;
ec8f0667 192 void *reply = NULL;
ed9b544e 193 REDIS_NOTUSED(el);
194 REDIS_NOTUSED(fd);
195 REDIS_NOTUSED(mask);
196
8146e316
PN
197 /* Calculate latency only for the first read event. This means that the
198 * server already sent the reply and we need to parse it. Parsing overhead
199 * is not part of the latency, so calculate it only once, here. */
200 if (c->latency < 0) c->latency = ustime()-(c->start);
201
ec8f0667
PN
202 if (redisBufferRead(c->context) != REDIS_OK) {
203 fprintf(stderr,"Error: %s\n",c->context->errstr);
204 exit(1);
205 } else {
206 if (redisGetReply(c->context,&reply) != REDIS_OK) {
207 fprintf(stderr,"Error: %s\n",c->context->errstr);
208 exit(1);
2fd30952 209 }
8146e316 210 if (reply != NULL) {
53f1d817
PN
211 if (reply == (void*)REDIS_REPLY_ERROR) {
212 fprintf(stderr,"Unexpected error reply, exiting...\n");
213 exit(1);
214 }
215
8146e316
PN
216 if (config.donerequests < config.requests)
217 config.latency[config.donerequests++] = c->latency;
ec8f0667 218 clientDone(c);
8146e316 219 }
2fd30952 220 }
ed9b544e 221}
222
ec8f0667 223static void writeHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
ed9b544e 224 client c = privdata;
225 REDIS_NOTUSED(el);
226 REDIS_NOTUSED(fd);
227 REDIS_NOTUSED(mask);
228
229 if (c->state == CLIENT_CONNECTING) {
230 c->state = CLIENT_SENDQUERY;
8146e316
PN
231 c->start = ustime();
232 c->latency = -1;
ed9b544e 233 }
234 if (sdslen(c->obuf) > c->written) {
235 void *ptr = c->obuf+c->written;
ec8f0667 236 int nwritten = write(c->context->fd,ptr,sdslen(c->obuf)-c->written);
ed9b544e 237 if (nwritten == -1) {
61c47ecd 238 if (errno != EPIPE)
239 fprintf(stderr, "Writing to socket: %s\n", strerror(errno));
ed9b544e 240 freeClient(c);
241 return;
242 }
243 c->written += nwritten;
244 if (sdslen(c->obuf) == c->written) {
ec8f0667
PN
245 aeDeleteFileEvent(config.el,c->context->fd,AE_WRITABLE);
246 aeCreateFileEvent(config.el,c->context->fd,AE_READABLE,readHandler,c);
ed9b544e 247 c->state = CLIENT_READREPLY;
248 }
249 }
250}
251
f2f2424e 252static client createClient() {
ed9b544e 253 client c = zmalloc(sizeof(struct _client));
ec8f0667
PN
254 if (config.hostsocket == NULL) {
255 c->context = redisConnectNonBlock(config.hostip,config.hostport);
256 } else {
257 c->context = redisConnectUnixNonBlock(config.hostsocket);
ed9b544e 258 }
ec8f0667
PN
259 if (c->context->err) {
260 fprintf(stderr,"Could not connect to Redis at ");
261 if (config.hostsocket == NULL)
262 fprintf(stderr,"%s:%d: %s\n",config.hostip,config.hostport,c->context->errstr);
263 else
264 fprintf(stderr,"%s: %s\n",config.hostsocket,c->context->errstr);
265 exit(1);
266 }
ec8f0667 267 c->state = CLIENT_CONNECTING;
1cd3c1e0
PN
268 c->obuf = NULL;
269 c->randptr = (void*)-1;
ed9b544e 270 c->written = 0;
ec8f0667
PN
271 redisSetReplyObjectFunctions(c->context,NULL);
272 aeCreateFileEvent(config.el,c->context->fd,AE_WRITABLE,writeHandler,c);
ed9b544e 273 listAddNodeTail(config.clients,c);
ec8f0667 274 config.liveclients++;
ed9b544e 275 return c;
276}
277
278static void createMissingClients(client c) {
f474a5bd
DS
279 int n = 0;
280
ed9b544e 281 while(config.liveclients < config.numclients) {
f2f2424e 282 client new = createClient();
ed9b544e 283 new->obuf = sdsdup(c->obuf);
ecfaf6da 284 if (config.randomkeys) randomizeClientKey(c);
f474a5bd
DS
285
286 /* Listen backlog is quite limited on most systems */
287 if (++n > 64) {
288 usleep(50000);
289 n = 0;
290 }
ed9b544e 291 }
292}
293
8146e316
PN
294static int compareLatency(const void *a, const void *b) {
295 return (*(long long*)a)-(*(long long*)b);
296}
297
ed0dd554 298static void showLatencyReport(void) {
8146e316 299 int i, curlat = 0;
ed9b544e 300 float perc, reqpersec;
301
302 reqpersec = (float)config.donerequests/((float)config.totlatency/1000);
303 if (!config.quiet) {
ed0dd554 304 printf("====== %s ======\n", config.title);
ed9b544e 305 printf(" %d requests completed in %.2f seconds\n", config.donerequests,
306 (float)config.totlatency/1000);
307 printf(" %d parallel clients\n", config.numclients);
308 printf(" %d bytes payload\n", config.datasize);
309 printf(" keep alive: %d\n", config.keepalive);
310 printf("\n");
8146e316
PN
311
312 qsort(config.latency,config.requests,sizeof(long long),compareLatency);
313 for (i = 0; i < config.requests; i++) {
314 if (config.latency[i]/1000 != curlat || i == (config.requests-1)) {
315 curlat = config.latency[i]/1000;
316 perc = ((float)(i+1)*100)/config.requests;
317 printf("%.2f%% <= %d milliseconds\n", perc, curlat);
ed9b544e 318 }
319 }
320 printf("%.2f requests per second\n\n", reqpersec);
321 } else {
ed0dd554 322 printf("%s: %.2f requests per second\n", config.title, reqpersec);
ed9b544e 323 }
324}
325
f2f2424e
PN
326static void benchmark(char *title, char *cmd, int len) {
327 client c;
328
ed0dd554 329 config.title = title;
ed9b544e 330 config.donerequests = 0;
ed9b544e 331
f2f2424e
PN
332 c = createClient();
333 c->obuf = sdsnewlen(cmd,len);
334 createMissingClients(c);
335
336 config.start = mstime();
337 aeMain(config.el);
ed9b544e 338 config.totlatency = mstime()-config.start;
f2f2424e 339
ed0dd554 340 showLatencyReport();
ed9b544e 341 freeAllClients();
342}
343
344void parseOptions(int argc, char **argv) {
345 int i;
346
347 for (i = 1; i < argc; i++) {
348 int lastarg = i==argc-1;
349
350 if (!strcmp(argv[i],"-c") && !lastarg) {
351 config.numclients = atoi(argv[i+1]);
352 i++;
353 } else if (!strcmp(argv[i],"-n") && !lastarg) {
354 config.requests = atoi(argv[i+1]);
355 i++;
356 } else if (!strcmp(argv[i],"-k") && !lastarg) {
357 config.keepalive = atoi(argv[i+1]);
358 i++;
359 } else if (!strcmp(argv[i],"-h") && !lastarg) {
ec8f0667 360 config.hostip = argv[i+1];
ed9b544e 361 i++;
362 } else if (!strcmp(argv[i],"-p") && !lastarg) {
363 config.hostport = atoi(argv[i+1]);
364 i++;
c61e6925
PN
365 } else if (!strcmp(argv[i],"-s") && !lastarg) {
366 config.hostsocket = argv[i+1];
367 i++;
ed9b544e 368 } else if (!strcmp(argv[i],"-d") && !lastarg) {
369 config.datasize = atoi(argv[i+1]);
370 i++;
371 if (config.datasize < 1) config.datasize=1;
372 if (config.datasize > 1024*1024) config.datasize = 1024*1024;
ecfaf6da 373 } else if (!strcmp(argv[i],"-r") && !lastarg) {
57172ffb 374 config.randomkeys = 1;
ecfaf6da 375 config.randomkeys_keyspacelen = atoi(argv[i+1]);
376 if (config.randomkeys_keyspacelen < 0)
377 config.randomkeys_keyspacelen = 0;
378 i++;
ed9b544e 379 } else if (!strcmp(argv[i],"-q")) {
380 config.quiet = 1;
381 } else if (!strcmp(argv[i],"-l")) {
382 config.loop = 1;
58cd7103 383 } else if (!strcmp(argv[i],"-D")) {
384 config.debug = 1;
266373b2 385 } else if (!strcmp(argv[i],"-I")) {
386 config.idlemode = 1;
ed9b544e 387 } else {
388 printf("Wrong option '%s' or option argument missing\n\n",argv[i]);
389 printf("Usage: redis-benchmark [-h <host>] [-p <port>] [-c <clients>] [-n <requests]> [-k <boolean>]\n\n");
390 printf(" -h <hostname> Server hostname (default 127.0.0.1)\n");
c61e6925
PN
391 printf(" -p <port> Server port (default 6379)\n");
392 printf(" -s <socket> Server socket (overrides host and port)\n");
ed9b544e 393 printf(" -c <clients> Number of parallel connections (default 50)\n");
394 printf(" -n <requests> Total number of requests (default 10000)\n");
395 printf(" -d <size> Data size of SET/GET value in bytes (default 2)\n");
396 printf(" -k <boolean> 1=keep alive 0=reconnect (default 1)\n");
b1ad58ed 397 printf(" -r <keyspacelen> Use random keys for SET/GET/INCR, random values for SADD\n");
ecfaf6da 398 printf(" Using this option the benchmark will get/set keys\n");
399 printf(" in the form mykey_rand000000012456 instead of constant\n");
400 printf(" keys, the <keyspacelen> argument determines the max\n");
401 printf(" number of values for the random number. For instance\n");
402 printf(" if set to 10 only rand000000000000 - rand000000000009\n");
403 printf(" range will be allowed.\n");
ed9b544e 404 printf(" -q Quiet. Just show query/sec values\n");
405 printf(" -l Loop. Run the tests forever\n");
266373b2 406 printf(" -I Idle mode. Just open N idle connections and wait.\n");
58cd7103 407 printf(" -D Debug mode. more verbose.\n");
ed9b544e 408 exit(1);
409 }
410 }
411}
412
ed0dd554
PN
413int showThroughput(struct aeEventLoop *eventLoop, long long id, void *clientData) {
414 REDIS_NOTUSED(eventLoop);
415 REDIS_NOTUSED(id);
416 REDIS_NOTUSED(clientData);
417
418 float dt = (float)(mstime()-config.start)/1000.0;
419 float rps = (float)config.donerequests/dt;
420 printf("%s: %.2f\r", config.title, rps);
421 fflush(stdout);
422 return 250; /* every 250ms */
423}
424
ed9b544e 425int main(int argc, char **argv) {
174df6fe 426 int i;
ed9b544e 427 client c;
428
429 signal(SIGHUP, SIG_IGN);
430 signal(SIGPIPE, SIG_IGN);
431
58cd7103 432 config.debug = 0;
ed9b544e 433 config.numclients = 50;
434 config.requests = 10000;
435 config.liveclients = 0;
436 config.el = aeCreateEventLoop();
ed0dd554 437 aeCreateTimeEvent(config.el,1,showThroughput,NULL,NULL);
ed9b544e 438 config.keepalive = 1;
439 config.donerequests = 0;
440 config.datasize = 3;
57172ffb 441 config.randomkeys = 0;
ecfaf6da 442 config.randomkeys_keyspacelen = 0;
ed9b544e 443 config.quiet = 0;
444 config.loop = 0;
266373b2 445 config.idlemode = 0;
ed9b544e 446 config.latency = NULL;
447 config.clients = listCreate();
ed9b544e 448 config.hostip = "127.0.0.1";
449 config.hostport = 6379;
c61e6925 450 config.hostsocket = NULL;
ed9b544e 451
452 parseOptions(argc,argv);
8146e316 453 config.latency = zmalloc(sizeof(long long)*config.requests);
ed9b544e 454
455 if (config.keepalive == 0) {
c3251497 456 printf("WARNING: keepalive disabled, you probably need 'echo 1 > /proc/sys/net/ipv4/tcp_tw_reuse' for Linux and 'sudo sysctl -w net.inet.tcp.msl=1000' for Mac OS X in order to use a lot of clients/requests\n");
ed9b544e 457 }
458
266373b2 459 if (config.idlemode) {
460 printf("Creating %d idle connections and waiting forever (Ctrl+C when done)\n", config.numclients);
ec8f0667 461 c = createClient(0); /* will never receive a reply */
266373b2 462 c->obuf = sdsempty();
266373b2 463 createMissingClients(c);
464 aeMain(config.el);
465 /* and will wait for every */
466 }
467
ed9b544e 468 do {
1cd3c1e0
PN
469 char *data, *cmd;
470 int len;
471
472 data = zmalloc(config.datasize+1);
174df6fe
PN
473 memset(data,'x',config.datasize);
474 data[config.datasize] = '\0';
475
f2f2424e 476 benchmark("PING (inline)","PING\r\n",6);
6766f45e 477
1cd3c1e0 478 len = redisFormatCommand(&cmd,"PING");
f2f2424e
PN
479 benchmark("PING",cmd,len);
480 free(cmd);
481
d69a4835 482 const char *argv[21];
f2f2424e 483 argv[0] = "MSET";
d69a4835
PN
484 for (i = 1; i < 21; i += 2) {
485 argv[i] = "foo:rand:000000000000";
486 argv[i+1] = data;
487 }
488 len = redisFormatCommandArgv(&cmd,21,argv,NULL);
f2f2424e 489 benchmark("MSET (10 keys)",cmd,len);
1cd3c1e0 490 free(cmd);
ea5b7092 491
1cd3c1e0 492 len = redisFormatCommand(&cmd,"SET foo:rand:000000000000 %s",data);
f2f2424e 493 benchmark("SET",cmd,len);
1cd3c1e0 494 free(cmd);
ed9b544e 495
1cd3c1e0 496 len = redisFormatCommand(&cmd,"GET foo:rand:000000000000");
f2f2424e 497 benchmark("GET",cmd,len);
1cd3c1e0 498 free(cmd);
ed9b544e 499
1cd3c1e0 500 len = redisFormatCommand(&cmd,"INCR counter:rand:000000000000");
f2f2424e 501 benchmark("INCR",cmd,len);
1cd3c1e0 502 free(cmd);
ed9b544e 503
1cd3c1e0 504 len = redisFormatCommand(&cmd,"LPUSH mylist %s",data);
f2f2424e 505 benchmark("LPUSH",cmd,len);
1cd3c1e0 506 free(cmd);
ed9b544e 507
1cd3c1e0 508 len = redisFormatCommand(&cmd,"LPOP mylist");
f2f2424e 509 benchmark("LPOP",cmd,len);
1cd3c1e0 510 free(cmd);
ed9b544e 511
1cd3c1e0 512 len = redisFormatCommand(&cmd,"SADD myset counter:rand:000000000000");
f2f2424e 513 benchmark("SADD",cmd,len);
1cd3c1e0 514 free(cmd);
b1ad58ed 515
1cd3c1e0 516 len = redisFormatCommand(&cmd,"SPOP myset");
f2f2424e 517 benchmark("SPOP",cmd,len);
1cd3c1e0 518 free(cmd);
b1ad58ed 519
1cd3c1e0 520 len = redisFormatCommand(&cmd,"LPUSH mylist %s",data);
f2f2424e 521 benchmark("LPUSH (again, in order to bench LRANGE)",cmd,len);
1cd3c1e0 522 free(cmd);
2fd30952 523
1cd3c1e0 524 len = redisFormatCommand(&cmd,"LRANGE mylist 0 99");
f2f2424e 525 benchmark("LRANGE (first 100 elements)",cmd,len);
1cd3c1e0 526 free(cmd);
2fd30952 527
1cd3c1e0 528 len = redisFormatCommand(&cmd,"LRANGE mylist 0 299");
f2f2424e 529 benchmark("LRANGE (first 300 elements)",cmd,len);
1cd3c1e0 530 free(cmd);
ccb5332c 531
1cd3c1e0 532 len = redisFormatCommand(&cmd,"LRANGE mylist 0 449");
f2f2424e 533 benchmark("LRANGE (first 450 elements)",cmd,len);
1cd3c1e0 534 free(cmd);
cc30e368 535
1cd3c1e0 536 len = redisFormatCommand(&cmd,"LRANGE mylist 0 599");
f2f2424e 537 benchmark("LRANGE (first 600 elements)",cmd,len);
1cd3c1e0 538 free(cmd);
cc30e368 539
ed9b544e 540 printf("\n");
541 } while(config.loop);
542
543 return 0;
544}