]>
git.saurik.com Git - redis.git/blob - src/redis-benchmark.c
ceeab2b91bc6bcb888a5fb94bb7ee5bcd6c002f4
1 /* Redis benchmark utility.
3 * Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
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.
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.
49 #define REPLY_RETCODE 1
53 #define CLIENT_CONNECTING 0
54 #define CLIENT_SENDQUERY 1
55 #define CLIENT_READREPLY 2
57 #define MAX_LATENCY 5000
59 #define REDIS_NOTUSED(V) ((void) V)
61 static struct config
{
70 int randomkeys_keyspacelen
;
84 typedef struct _client
{
89 int mbulk
; /* Number of elements in an mbulk reply */
90 int readlen
; /* readlen == -1 means read a single line */
92 unsigned int written
; /* bytes of 'obuf' already written */
94 long long start
; /* start time in milliseconds */
98 static void writeHandler ( aeEventLoop
* el
, int fd
, void * privdata
, int mask
);
99 static void createMissingClients ( client c
);
102 static long long mstime ( void ) {
106 gettimeofday (& tv
, NULL
);
107 mst
= (( long ) tv
. tv_sec
)* 1000 ;
108 mst
+= tv
. tv_usec
/ 1000 ;
112 static void freeClient ( client c
) {
115 aeDeleteFileEvent ( config
. el
, c
-> fd
, AE_WRITABLE
);
116 aeDeleteFileEvent ( config
. el
, c
-> fd
, AE_READABLE
);
121 config
. liveclients
--;
122 ln
= listSearchKey ( config
. clients
, c
);
124 listDelNode ( config
. clients
, ln
);
127 static void freeAllClients ( void ) {
128 listNode
* ln
= config
. clients
-> head
, * next
;
132 freeClient ( ln
-> value
);
137 static void resetClient ( client c
) {
138 aeDeleteFileEvent ( config
. el
, c
-> fd
, AE_WRITABLE
);
139 aeDeleteFileEvent ( config
. el
, c
-> fd
, AE_READABLE
);
140 aeCreateFileEvent ( config
. el
, c
-> fd
, AE_WRITABLE
, writeHandler
, c
);
142 c
-> ibuf
= sdsempty ();
143 c
-> readlen
= ( c
-> replytype
== REPLY_BULK
||
144 c
-> replytype
== REPLY_MBULK
) ? - 1 : 0 ;
148 c
-> state
= CLIENT_SENDQUERY
;
150 createMissingClients ( c
);
153 static void randomizeClientKey ( client c
) {
158 p
= strstr ( c
-> obuf
, "_rand" );
161 r
= random () % config
. randomkeys_keyspacelen
;
162 sprintf ( buf
, " %l d" , r
);
163 memcpy ( p
, buf
, strlen ( buf
));
166 static void prepareClientForReply ( client c
, int type
) {
167 if ( type
== REPLY_BULK
) {
168 c
-> replytype
= REPLY_BULK
;
170 } else if ( type
== REPLY_MBULK
) {
171 c
-> replytype
= REPLY_MBULK
;
180 static void clientDone ( client c
) {
181 static int last_tot_received
= 1 ;
184 config
. donerequests
++;
185 latency
= mstime () - c
-> start
;
186 if ( latency
> MAX_LATENCY
) latency
= MAX_LATENCY
;
187 config
. latency
[ latency
]++;
189 if ( config
. debug
&& last_tot_received
!= c
-> totreceived
) {
190 printf ( "Tot bytes received: %d \n " , c
-> totreceived
);
191 last_tot_received
= c
-> totreceived
;
193 if ( config
. donerequests
== config
. requests
) {
198 if ( config
. keepalive
) {
200 if ( config
. randomkeys
) randomizeClientKey ( c
);
202 config
. liveclients
--;
203 createMissingClients ( c
);
204 config
. liveclients
++;
209 /* Read a length from the buffer pointed to by *p, store the length in *len,
210 * and return the number of bytes that the cursor advanced. */
211 static int readLen ( char * p
, int * len
) {
212 char * tail
= strstr ( p
, " \r\n " );
220 static void readHandler ( aeEventLoop
* el
, int fd
, void * privdata
, int mask
)
223 int nread
, pos
= 0 , len
= 0 ;
229 nread
= read ( c
-> fd
, buf
, sizeof ( buf
));
231 fprintf ( stderr
, "Reading from socket: %s \n " , strerror ( errno
));
236 fprintf ( stderr
, "EOF from client \n " );
240 c
-> totreceived
+= nread
;
241 c
-> ibuf
= sdscatlen ( c
-> ibuf
, buf
, nread
);
242 len
= sdslen ( c
-> ibuf
);
244 if ( c
-> replytype
== REPLY_INT
||
245 c
-> replytype
== REPLY_RETCODE
)
247 /* Check if the first line is complete. This is everything we need
248 * when waiting for an integer or status code reply.*/
249 if (( p
= strstr ( c
-> ibuf
, " \r\n " )) != NULL
)
251 } else if ( c
-> replytype
== REPLY_BULK
) {
253 if ( c
-> readlen
< 0 ) {
254 advance
= readLen ( c
-> ibuf
+ pos
,& c
-> readlen
);
257 if ( c
-> readlen
== - 1 ) {
260 /* include the trailing \r\n */
269 if ( c
-> readlen
> 0 ) {
270 canconsume
= c
-> readlen
> ( len
- pos
) ? ( len
- pos
) : c
-> readlen
;
271 c
-> readlen
-= canconsume
;
277 } else if ( c
-> replytype
== REPLY_MBULK
) {
279 if ( c
-> mbulk
== - 1 ) {
280 advance
= readLen ( c
-> ibuf
+ pos
,& c
-> mbulk
);
291 while ( c
-> mbulk
> 0 && pos
< len
) {
292 if ( c
-> readlen
> 0 ) {
293 canconsume
= c
-> readlen
> ( len
- pos
) ? ( len
- pos
) : c
-> readlen
;
294 c
-> readlen
-= canconsume
;
299 advance
= readLen ( c
-> ibuf
+ pos
,& c
-> readlen
);
302 if ( c
-> readlen
== - 1 ) {
306 /* include the trailing \r\n */
320 c
-> ibuf
= sdsrange ( c
-> ibuf
, pos
,- 1 );
327 static void writeHandler ( aeEventLoop
* el
, int fd
, void * privdata
, int mask
)
334 if ( c
-> state
== CLIENT_CONNECTING
) {
335 c
-> state
= CLIENT_SENDQUERY
;
338 if ( sdslen ( c
-> obuf
) > c
-> written
) {
339 void * ptr
= c
-> obuf
+ c
-> written
;
340 int len
= sdslen ( c
-> obuf
) - c
-> written
;
341 int nwritten
= write ( c
-> fd
, ptr
, len
);
342 if ( nwritten
== - 1 ) {
344 fprintf ( stderr
, "Writing to socket: %s \n " , strerror ( errno
));
348 c
-> written
+= nwritten
;
349 if ( sdslen ( c
-> obuf
) == c
-> written
) {
350 aeDeleteFileEvent ( config
. el
, c
-> fd
, AE_WRITABLE
);
351 aeCreateFileEvent ( config
. el
, c
-> fd
, AE_READABLE
, readHandler
, c
);
352 c
-> state
= CLIENT_READREPLY
;
357 static client
createClient ( void ) {
358 client c
= zmalloc ( sizeof ( struct _client
));
359 char err
[ ANET_ERR_LEN
];
361 c
-> fd
= anetTcpNonBlockConnect ( err
, config
. hostip
, config
. hostport
);
362 if ( c
-> fd
== ANET_ERR
) {
364 fprintf ( stderr
, "Connect: %s \n " , err
);
367 anetTcpNoDelay ( NULL
, c
-> fd
);
368 c
-> obuf
= sdsempty ();
369 c
-> ibuf
= sdsempty ();
374 c
-> state
= CLIENT_CONNECTING
;
375 aeCreateFileEvent ( config
. el
, c
-> fd
, AE_WRITABLE
, writeHandler
, c
);
376 config
. liveclients
++;
377 listAddNodeTail ( config
. clients
, c
);
381 static void createMissingClients ( client c
) {
382 while ( config
. liveclients
< config
. numclients
) {
383 client
new = createClient ();
386 new -> obuf
= sdsdup ( c
-> obuf
);
387 if ( config
. randomkeys
) randomizeClientKey ( c
);
388 prepareClientForReply ( new , c
-> replytype
);
392 static void showLatencyReport ( char * title
) {
394 float perc
, reqpersec
;
396 reqpersec
= ( float ) config
. donerequests
/(( float ) config
. totlatency
/ 1000 );
398 printf ( "====== %s ====== \n " , title
);
399 printf ( " %d requests completed in %.2f seconds \n " , config
. donerequests
,
400 ( float ) config
. totlatency
/ 1000 );
401 printf ( " %d parallel clients \n " , config
. numclients
);
402 printf ( " %d bytes payload \n " , config
. datasize
);
403 printf ( " keep alive: %d \n " , config
. keepalive
);
405 for ( j
= 0 ; j
<= MAX_LATENCY
; j
++) {
406 if ( config
. latency
[ j
]) {
407 seen
+= config
. latency
[ j
];
408 perc
= (( float ) seen
* 100 )/ config
. donerequests
;
409 printf ( "%.2f%% <= %d milliseconds \n " , perc
, j
);
412 printf ( "%.2f requests per second \n\n " , reqpersec
);
414 printf ( " %s : %.2f requests per second \n " , title
, reqpersec
);
418 static void prepareForBenchmark ( void )
420 memset ( config
. latency
, 0 , sizeof ( int )*( MAX_LATENCY
+ 1 ));
421 config
. start
= mstime ();
422 config
. donerequests
= 0 ;
425 static void endBenchmark ( char * title
) {
426 config
. totlatency
= mstime ()- config
. start
;
427 showLatencyReport ( title
);
431 void parseOptions ( int argc
, char ** argv
) {
434 for ( i
= 1 ; i
< argc
; i
++) {
435 int lastarg
= i
== argc
- 1 ;
437 if (! strcmp ( argv
[ i
], "-c" ) && ! lastarg
) {
438 config
. numclients
= atoi ( argv
[ i
+ 1 ]);
440 } else if (! strcmp ( argv
[ i
], "-n" ) && ! lastarg
) {
441 config
. requests
= atoi ( argv
[ i
+ 1 ]);
443 } else if (! strcmp ( argv
[ i
], "-k" ) && ! lastarg
) {
444 config
. keepalive
= atoi ( argv
[ i
+ 1 ]);
446 } else if (! strcmp ( argv
[ i
], "-h" ) && ! lastarg
) {
447 char * ip
= zmalloc ( 32 );
448 if ( anetResolve ( NULL
, argv
[ i
+ 1 ], ip
) == ANET_ERR
) {
449 printf ( "Can't resolve %s \n " , argv
[ i
]);
454 } else if (! strcmp ( argv
[ i
], "-p" ) && ! lastarg
) {
455 config
. hostport
= atoi ( argv
[ i
+ 1 ]);
457 } else if (! strcmp ( argv
[ i
], "-d" ) && ! lastarg
) {
458 config
. datasize
= atoi ( argv
[ i
+ 1 ]);
460 if ( config
. datasize
< 1 ) config
. datasize
= 1 ;
461 if ( config
. datasize
> 1024 * 1024 ) config
. datasize
= 1024 * 1024 ;
462 } else if (! strcmp ( argv
[ i
], "-r" ) && ! lastarg
) {
463 config
. randomkeys
= 1 ;
464 config
. randomkeys_keyspacelen
= atoi ( argv
[ i
+ 1 ]);
465 if ( config
. randomkeys_keyspacelen
< 0 )
466 config
. randomkeys_keyspacelen
= 0 ;
468 } else if (! strcmp ( argv
[ i
], "-q" )) {
470 } else if (! strcmp ( argv
[ i
], "-l" )) {
472 } else if (! strcmp ( argv
[ i
], "-D" )) {
474 } else if (! strcmp ( argv
[ i
], "-I" )) {
477 printf ( "Wrong option ' %s ' or option argument missing \n\n " , argv
[ i
]);
478 printf ( "Usage: redis-benchmark [-h <host>] [-p <port>] [-c <clients>] [-n <requests]> [-k <boolean>] \n\n " );
479 printf ( " -h <hostname> Server hostname (default 127.0.0.1) \n " );
480 printf ( " -p <hostname> Server port (default 6379) \n " );
481 printf ( " -c <clients> Number of parallel connections (default 50) \n " );
482 printf ( " -n <requests> Total number of requests (default 10000) \n " );
483 printf ( " -d <size> Data size of SET/GET value in bytes (default 2) \n " );
484 printf ( " -k <boolean> 1=keep alive 0=reconnect (default 1) \n " );
485 printf ( " -r <keyspacelen> Use random keys for SET/GET/INCR, random values for SADD \n " );
486 printf ( " Using this option the benchmark will get/set keys \n " );
487 printf ( " in the form mykey_rand000000012456 instead of constant \n " );
488 printf ( " keys, the <keyspacelen> argument determines the max \n " );
489 printf ( " number of values for the random number. For instance \n " );
490 printf ( " if set to 10 only rand000000000000 - rand000000000009 \n " );
491 printf ( " range will be allowed. \n " );
492 printf ( " -q Quiet. Just show query/sec values \n " );
493 printf ( " -l Loop. Run the tests forever \n " );
494 printf ( " -I Idle mode. Just open N idle connections and wait. \n " );
495 printf ( " -D Debug mode. more verbose. \n " );
501 int main ( int argc
, char ** argv
) {
504 signal ( SIGHUP
, SIG_IGN
);
505 signal ( SIGPIPE
, SIG_IGN
);
508 config
. numclients
= 50 ;
509 config
. requests
= 10000 ;
510 config
. liveclients
= 0 ;
511 config
. el
= aeCreateEventLoop ();
512 config
. keepalive
= 1 ;
513 config
. donerequests
= 0 ;
515 config
. randomkeys
= 0 ;
516 config
. randomkeys_keyspacelen
= 0 ;
520 config
. latency
= NULL
;
521 config
. clients
= listCreate ();
522 config
. latency
= zmalloc ( sizeof ( int )*( MAX_LATENCY
+ 1 ));
524 config
. hostip
= "127.0.0.1" ;
525 config
. hostport
= 6379 ;
527 parseOptions ( argc
, argv
);
529 if ( config
. keepalive
== 0 ) {
530 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 " );
533 if ( config
. idlemode
) {
534 printf ( "Creating %d idle connections and waiting forever (Ctrl+C when done) \n " , config
. numclients
);
535 prepareForBenchmark ();
538 c
-> obuf
= sdsempty ();
539 prepareClientForReply ( c
, REPLY_RETCODE
); /* will never receive it */
540 createMissingClients ( c
);
542 /* and will wait for every */
546 prepareForBenchmark ();
549 c
-> obuf
= sdscat ( c
-> obuf
, "PING \r\n " );
550 prepareClientForReply ( c
, REPLY_RETCODE
);
551 createMissingClients ( c
);
553 endBenchmark ( "PING" );
555 prepareForBenchmark ();
558 c
-> obuf
= sdscat ( c
-> obuf
, "*1 \r\n $4 \r\n PING \r\n " );
559 prepareClientForReply ( c
, REPLY_RETCODE
);
560 createMissingClients ( c
);
562 endBenchmark ( "PING (multi bulk)" );
564 prepareForBenchmark ();
567 c
-> obuf
= sdscatprintf ( c
-> obuf
, "SET foo_rand000000000000 %d \r\n " , config
. datasize
);
569 char * data
= zmalloc ( config
. datasize
+ 2 );
570 memset ( data
, 'x' , config
. datasize
);
571 data
[ config
. datasize
] = ' \r ' ;
572 data
[ config
. datasize
+ 1 ] = ' \n ' ;
573 c
-> obuf
= sdscatlen ( c
-> obuf
, data
, config
. datasize
+ 2 );
575 prepareClientForReply ( c
, REPLY_RETCODE
);
576 createMissingClients ( c
);
580 prepareForBenchmark ();
583 c
-> obuf
= sdscat ( c
-> obuf
, "GET foo_rand000000000000 \r\n " );
584 prepareClientForReply ( c
, REPLY_BULK
);
585 createMissingClients ( c
);
589 prepareForBenchmark ();
592 c
-> obuf
= sdscat ( c
-> obuf
, "INCR counter_rand000000000000 \r\n " );
593 prepareClientForReply ( c
, REPLY_INT
);
594 createMissingClients ( c
);
596 endBenchmark ( "INCR" );
598 prepareForBenchmark ();
601 c
-> obuf
= sdscat ( c
-> obuf
, "LPUSH mylist 3 \r\n bar \r\n " );
602 prepareClientForReply ( c
, REPLY_INT
);
603 createMissingClients ( c
);
605 endBenchmark ( "LPUSH" );
607 prepareForBenchmark ();
610 c
-> obuf
= sdscat ( c
-> obuf
, "LPOP mylist \r\n " );
611 prepareClientForReply ( c
, REPLY_BULK
);
612 createMissingClients ( c
);
614 endBenchmark ( "LPOP" );
616 prepareForBenchmark ();
619 c
-> obuf
= sdscat ( c
-> obuf
, "SADD myset 24 \r\n counter_rand000000000000 \r\n " );
620 prepareClientForReply ( c
, REPLY_RETCODE
);
621 createMissingClients ( c
);
623 endBenchmark ( "SADD" );
625 prepareForBenchmark ();
628 c
-> obuf
= sdscat ( c
-> obuf
, "SPOP myset \r\n " );
629 prepareClientForReply ( c
, REPLY_BULK
);
630 createMissingClients ( c
);
632 endBenchmark ( "SPOP" );
634 prepareForBenchmark ();
637 c
-> obuf
= sdscat ( c
-> obuf
, "LPUSH mylist 3 \r\n bar \r\n " );
638 prepareClientForReply ( c
, REPLY_RETCODE
);
639 createMissingClients ( c
);
641 endBenchmark ( "LPUSH (again, in order to bench LRANGE)" );
643 prepareForBenchmark ();
646 c
-> obuf
= sdscat ( c
-> obuf
, "LRANGE mylist 0 99 \r\n " );
647 prepareClientForReply ( c
, REPLY_MBULK
);
648 createMissingClients ( c
);
650 endBenchmark ( "LRANGE (first 100 elements)" );
652 prepareForBenchmark ();
655 c
-> obuf
= sdscat ( c
-> obuf
, "LRANGE mylist 0 299 \r\n " );
656 prepareClientForReply ( c
, REPLY_MBULK
);
657 createMissingClients ( c
);
659 endBenchmark ( "LRANGE (first 300 elements)" );
661 prepareForBenchmark ();
664 c
-> obuf
= sdscat ( c
-> obuf
, "LRANGE mylist 0 449 \r\n " );
665 prepareClientForReply ( c
, REPLY_MBULK
);
666 createMissingClients ( c
);
668 endBenchmark ( "LRANGE (first 450 elements)" );
670 prepareForBenchmark ();
673 c
-> obuf
= sdscat ( c
-> obuf
, "LRANGE mylist 0 599 \r\n " );
674 prepareClientForReply ( c
, REPLY_MBULK
);
675 createMissingClients ( c
);
677 endBenchmark ( "LRANGE (first 600 elements)" );
680 } while ( config
. loop
);