Fix Trond's email address.
[awesomized/libmemcached] / docs / memslap.pod
1 =head1 NAME
2
3 memslap - Load testing and benchmarking tool for memcached
4
5 =head1 SYNOPSIS
6
7 memslap [options]
8
9 =head1 DESCRIPTION
10
11 B<memslap> is a load generation and benchmark tool for memcached(1)
12 servers. It generates configurable workload such as threads, concurrencies, connections,
13 run time, overwrite, miss rate, key size, value size, get/set proportion,
14 expected throughput, and so on. Furthermore, it also supports data
15 verification, expire-time verification, UDP, binary protocol, facebook test,
16 replication test, multi-get and reconnection, etc.
17
18 Memslap manages network connections like memcached with
19 libevent. Each thread of memslap is bound with a CPU core, all
20 the threads don't communicate with each other, and there are several socket
21 connections in each thread. Each connection keeps key size distribution,
22 value size distribution, and command distribution by itself.
23
24 You can specify servers via the B<--servers> option or via the
25 environment variable C<MEMCACHED_SERVERS>.
26
27
28 =head1 FEATURES
29
30 Memslap is developed to for the following purposes:
31
32 =over
33
34 =item Manages network connections with libevent asynchronously.
35
36 =item Set both TCP and UDP up to use non-blocking IO.
37
38 =item Improves parallelism: higher performance in multi-threads environments.
39
40 =item Improves time efficiency: faster processing speed.
41
42 =item Generates key and value more efficiently; key size distribution and value size distribution are configurable.
43
44 =item Supports get, multi-get, and set commands; command distribution is configurable.
45
46 =item Supports controllable miss rate and overwrite rate.
47
48 =item Supports data and expire-time verification.
49
50 =item Supports dumping statistic information periodically.
51
52 =item Supports thousands of TCP connections.
53
54 =item Supports binary protocol.
55
56 =item Supports facebook test (set with TCP and multi-get with UDP) and replication test.
57
58 =back
59
60 =head1 DETAILS
61
62 =head2 Effective implementation of network.
63
64 For memslap, both TCP and UDP use non-blocking network IO. All
65 the network events are managed by libevent as memcached. The network module
66 of memslap is similar to memcached. Libevent can ensure
67 memslap can handle network very efficiently.
68
69 =head2 Effective implementation of multi-threads and concurrency
70
71 Memslap has the similar implementation of multi-threads to
72 memcached. Memslap creates one or more self-governed threads;
73 each thread is bound with one CPU core if the system supports setting CPU
74 core affinity.
75
76 In addition, each thread has a libevent to manage the events of the network;
77 each thread has one or more self-governed concurrencies; and each
78 concurrency has one or more socket connections. All the concurrencies don’t
79 communicate with each other even though they are in the same thread.
80
81 Memslap can create thousands of socket connections, and each
82 concurrency has tens of socket connections. Each concurrency randomly or
83 sequentially selects one socket connection from its socket connection pool
84 to run, so memslap can ensure each concurrency handles one
85 socket connection at any given time. Users can specify the number of
86 concurrency and socket connections of each concurrency according to their
87 expected workload.
88
89 =head2 Effective implementation of generating key and value
90
91 In order to improve time efficiency and space efficiency, asynchronous
92 memslap creates a random characters table with 10M characters. All the
93 suffixes of keys and values are generated from this random characters table.
94
95 Memslap uses the offset in the character table and the length
96 of the string to identify a string. It can save much memory.
97 Each key contains two parts, a prefix and a suffix. The prefix is an
98 uint64_t, 8 bytes. In order to verify the data set before, asynchronous
99 memslap need to ensure each key is unique, so it uses the prefix to identify
100 a key. The prefix cannot include illegal characters, such as ‘\r’, ‘\n’,
101 ‘\0’ and ‘ ‘. And memslap has an algorithm to ensure that.
102
103 Memslap doesn’t generate all the objects (key-value pairs) at
104 the beginning. It only generates enough objects to fill the task window
105 (default 10K objects) of each concurrency. Each object has the following
106 basic information, key prefix, key suffix offset in the character table, key
107 length, value offset in the character table, and value length.
108
109 In the work process, each concurrency sequentially or randomly selects an
110 object from the window to do set operation or get operation. At the same
111 time, each concurrency kicks objects out of its window and adds new object
112 into it.
113
114 =head2 Simple but useful task scheduling
115
116 Memslap uses libevent to schedule all the concurrencies of
117 threads, and each concurrency schedules tasks based on the local task
118 window. Memslap assumes that if each concurrency keeps the same
119 key distribution, value distribution and commands distribution, from
120 outside, memslap keeps all the distribution as a whole.
121 Each task window includes a lot of objects, each object stores its basic
122 information, such as key, value, expire time, and so on. At any time, all
123 the objects in the window keep the same and fixed key and value
124 distribution. If an object is overwritten, the value of the object will be
125 updated. Memslap verifies the data or expire-time according to
126 the object information stored in the task window.
127
128 Libevent selects which concurrency to handle based on a specific network
129 event. Then the concurrency selects which command (get or set) to operate
130 based on the command distribution. If it needs to kick out an old object and
131 add a new object, in order to keep the same key and value distribution, the
132 new object must have the same key length and value length.
133
134 If memcached server has two cache layers (memory and SSD), running
135 memslap with different window sizes can get different cache
136 miss rates. If memslap adds enough objects into the windows at
137 the beginning, and the cache of memcached cannot store all the objects
138 initialized, then memslap will get some objects from the second
139 cache layer. It causes the first cache layer to miss. So the user can
140 specify the window size to get the expected miss rate of the first cache
141 layer.
142
143 =head2 Useful implementation of multi-servers , UDP, TCP, multi-get and binary protocol
144
145 Because each thread is self-governed, memslap can assign
146 different threads to handle different memcached servers. This is just one of
147 the ways in which memslap supports multiple servers. The only
148 limitation is that the number of servers cannot be greater than the number
149 of threads. The other way to support multiple servers is for replication
150 test. Each concurrency has one socket connection to each memcached server.
151 For the implementation, memslap can set some objects to one
152 memcached server, and get these objects from the other servers.
153
154 By default, Memslap does single get. If the user specifies
155 multi-get option, memslap will collect enough get commands and
156 pack and send the commands together.
157
158 Memslap supports both the ASCII protocol and binary protocol,
159 but it runs on the ASCII protocol by default.
160 Memslap by default runs on the TCP protocol, but it also
161 supports UDP. Because UDP is unreliable, dropped packages and out-of-order
162 packages may occur. Memslap creates a memory buffer to handle
163 these problems. Memslap tries to read all the response data of
164 one command from the server and reorders the response data. If some packages
165 get lost, the waiting timeout mechanism can ensure half-baked packages will
166 be discarded and the next command will be sent.
167
168
169 =head1 USAGE
170
171 Below are some usage samples:
172
173 =over 4
174
175 =item memslap -s 127.0.0.1:11211 -S 5s
176
177 =item memslap -s 127.0.0.1:11211 -t 2m -v 0.2 -e 0.05 -b
178
179 =item memslap -s 127.0.0.1:11211 -F config -t 2m -w 40k -S 20s -o 0.2
180
181 =item memslap -s 127.0.0.1:11211 -F config -t 2m -T 4 -c 128 -d 20 -P 40k
182
183 =item memslap -s 127.0.0.1:11211 -F config -t 2m -d 50 -a -n 40
184
185 =item memslap -s 127.0.0.1:11211,127.0.0.1:11212 -F config -t 2m
186
187 =item memslap -s 127.0.0.1:11211,127.0.0.1:11212 -F config -t 2m -p 2
188
189 =back
190
191 The user must specify one server at least to run asynchronous memslap. The
192 rest of the parameters have default values, as shown below:
193
194 Thread number = 1 Concurrency = 16
195
196 Run time = 600 seconds Configuration file = NULL
197
198 Key size = 64 Value size = 1024
199
200 Get/set = 9:1 Window size = 10k
201
202 Execute number = 0 Single get = true
203
204 Multi-get = false Number of sockets of each concurrency = 1
205
206 Reconnect = false Data verification = false
207
208 Expire-time verification = false ASCII protocol = true
209
210 Binary protocol = false Dumping statistic information
211
212 periodically = false
213
214 Overwrite proportion = 0% UDP = false
215
216 TCP = true Limit throughput = false
217
218 Facebook test = false Replication test = false
219
220 =head2 Key size, value size and command distribution.
221
222 All the distributions are read from the configuration file specified by user
223 with “—cfg_cmd” option. If the user does not specify a configuration file,
224 asynchronous memslap will run with the default distribution (key size = 64,
225 value size = 1024, get/set = 9:1). For information on how to edit the
226 configuration file, refer to the “Configuration File” section.
227
228 The minimum key size is 16 bytes; the maximum key size is 250 bytes. The
229 precision of proportion is 0.001. The proportion of distribution will be
230 rounded to 3 decimal places.
231
232 The minimum value size is 1 bytes; the maximum value size is 1M bytes. The
233 precision of proportion is 0.001. The proportion of distribution will be
234 rounded to 3 decimal places.
235 Currently, asynchronous memslap only supports set and get commands. And it
236 supports 100% set and 100% get. For 100% get, it will preset some objects to
237 the server.
238
239 =head2 Multi-thread and concurrency
240
241 The high performance of asynchronous memslap benefits from the special
242 schedule of thread and concurrency. It’s important to specify the proper
243 number of them. The default number of threads is 1; the default number of
244 concurrency is 16. The user can use “—threads” and “--concurrency” to
245 specify these variables.
246
247 If the system supports setting CPU affinity and the number of threads
248 specified by the user is greater than 1, asynchronous memslap will try to
249 bind each thread to a different CPU core. So if you want to get the best
250 performance asynchronous memslap, it is better to specify the number of
251 thread equal to the number of CPU cores. The number of threads specified by
252 the user can also be less or greater than the number of CPU cores. Because
253 of the limitation of implementation, the number of concurrencies could be
254 the multiple of the number of threads.
255
256 1. For 8 CPU cores system
257
258 For example:
259
260 --threads=2 --concurrency=128
261
262 --threads=8 --concurrency=128
263
264 --threads=8 --concurrency=256
265
266 --threads=12 --concurrency=144
267
268 2. For 16 CPU cores system
269
270 For example:
271
272 --threads=8 --concurrency=128
273
274 --threads=16 --concurrency=256
275
276 --threads=16 --concurrency=512
277
278 --threads=24 --concurrency=288
279
280 The asynchronous memslap performs very well, when
281 used to test the performance of memcached servers.
282 Most of the time, the bottleneck is the network or
283 the server. If for some reason the user wants to
284 limit the performance of asynchronous memslap, there
285 are two ways to do this:
286
287 Decrease the number of threads and concurrencies.
288 Use the option “--tps” that Asynchronous memslap
289 provides to limit the throughput. This option allows
290 the user to get the expected throughput. For
291 example, assume that the maximum throughput is 50
292 kops/s for a specific configuration, you can specify
293 the throughput equal to or less than the maximum
294 throughput using “--tps” option.
295
296 =head2 Window size
297
298 Most of the time, the user does not need to specify the window size. The
299 default window size is 10k. For Schooner Memcached, the user can specify
300 different window sizes to get different cache miss rates based on the test
301 case. Asynchronous memslap supports cache miss rate between 0% and 100%.
302 If you use this utility to test the performance of Schooner Memcached, you
303 can specify a proper window size to get the expected cache miss rate. The
304 formula for calculating window size is as follows:
305
306 Assume that the key size is 128 bytes, and the value size is 2048 bytes, and
307 concurrency=128.
308
309 1. Small cache cache_size=1M, 100% cache miss (all data get from SSD).
310 win_size=10k
311
312 2. cache_size=4G
313
314 (1). cache miss rate 0%
315
316 win_size=8k
317
318 (2). cache miss rate 5%
319
320 win_size=11k
321
322 3. cache_size=16G
323
324 (1). cache miss rate 0%
325
326 win_size=32k
327
328 (2). cache miss
329
330 rate 5%
331
332 win_size=46k
333
334 The formula for calculating window size for cache miss rate 0%:
335
336 cache_size / concurrency / (key_size + value_size) * 0.5
337
338 The formula for calculating window size for cache miss rate 5%:
339
340 cache_size / concurrency / (key_size + value_size) * 0.7
341
342 =head2 Verification
343
344 Asynchronous memslap supports both data verification and expire-time
345 verification. The user can use "--verify=" or "-v" to specify the proportion
346 of data verification. In theory, it supports 100% data verification. The
347 user can use "--exp_verify=" or "-e" to specify the proportion of
348 expire-time verification. In theory, it supports 100% expire-time
349 verification. Specify the "--verbose" options to get more detailed error
350 information.
351
352 For example: --exp_verify=0.01 –verify=0.1 , it means that 1% of the objects
353 set with expire-time, 10% of the objects gotten will be verified. If the
354 objects are gotten, asynchronous memslap will verify the expire-time and
355 value.
356
357 =head2 multi-servers and multi-clients
358
359 Asynchronous memslap supports multi-servers based on self-governed thread.
360 There is a limitation that the number of servers cannot be greater than the
361 number of threads. Asynchronous memslap assigns one thread to handle one
362 server at least. The user can use the "--servers=" or "-s" option to specify
363 multi-servers.
364
365 For example:
366
367 --servers=10.1.1.1:11211,10.1.1.2:11212,10.1.1.3:11213 --threads=6 --concurrency=36
368
369 The above command means that there are 6 threads, with each thread having 6
370 concurrencies and that threads 0 and 3 handle server 0 (10.1.1.1); threads 1
371 and 4 handle server 1 (10.1.1.2); and thread 2 and 5 handle server 2
372 (10.1.1.3).
373
374 All the threads and concurrencies in asynchronous memslap are self-governed.
375
376 So is asynchronous memslap. The user can start up several asynchronous
377 memslap instances. The user can run asynchronous memslap on different client
378 machines to communicate with the same memcached server at the same. It is
379 recommended that the user start different asynchronous memslap on different
380 machines using the same configuration.
381
382 =head2 Run with execute number mode or time mode
383
384 The default asynchronous memslap runs with time mode. The default run time
385 is 10 minutes. If it times out, asynchronous memslap will exit. Do not
386 specify both execute number mode and time mode at the same time; just
387 specify one instead.
388
389 For example:
390
391 --time=30s (It means the test will run 30 seconds.)
392
393 --execute_number=100000 (It means that after running 100000 commands, the test will exit.)
394
395 =head2 Dump statistic information periodically.
396
397 The user can use "--stat_freq=" or "-S" to specify the frequency.
398
399 For example:
400
401 --stat_freq=20s
402
403 asynchronous memslap will dump the statistics of the commands (get and set) at the frequency of every 20
404 seconds.
405
406 For more information on the format of dumping statistic information, refer to “Format of Output” section.
407
408 =head2 Multi-get
409
410 The user can use "--division=" or "-d" to specify multi-get keys count.
411 Asynchronous memslap by default does single get with TCP. Asynchronous
412 memslap also supports data verification and expire-time verification for
413 multi-get.
414
415 Asynchronous memslap supports multi-get with both TCP and UDP. Because of
416 the different implementation of the ASCII protocol and binary protocol,
417 there are some differences between the two. For the ASCII protocol,
418 asynchronous memslap sends one “multi-get” to the server once. For the
419 binary protocol, asynchronous memslap sends several single get commands
420 together as “multi-get” to the server.
421
422 =head2 UDP and TCP
423
424 Asynchronous memslap supports both UDP and TCP. For TCP, asynchronous
425 memslap does not reconnect the memcached server if socket connections are
426 lost. If all the socket connections are lost or memcached server crashes,
427 asynchronous memslap will exit. If the user specifies the “--reconnect”
428 option when socket connections are lost, it will reconnect them.
429
430 User can use “--udp” to enable the UDP feature, but UDP comes with some
431 limitations:
432
433 UDP cannot set data more than 1400 bytes.
434
435 UDP is not supported by the binary protocol because the binary protocol of
436 memcached does not support that.
437
438 UDP doesn’t support reconnection.
439
440 =head2 Facebook test
441
442 Set data with TCP and multi-get with UDP. Specify the following options:
443
444 "--facebook --division=50"
445
446 If you want to create thousands of TCP connections, specify the
447
448 "--conn_sock=" option.
449
450 For example: --facebook --division=50 --conn_sock=200
451
452 The above command means that asynchronous memslap will do facebook test,
453 each concurrency has 200 socket TCP connections and one UDP socket.
454
455 Asynchronous memslap sets objects with the TCP socket, and multi-gets 50
456 objects once with the UDP socket.
457
458 If you specify "--division=50", the key size must be less that 25 bytes
459 because the UDP packet size is 1400 bytes.
460
461 =head2 Replication test
462
463 For replication test, the user must specify at least two memcached servers.
464 The user can use “—rep_write=” option to enable feature.
465
466 For example:
467
468 --servers=10.1.1.1:11211,10.1.1.2:11212 –rep_write=2
469
470 The above command means that there are 2 replication memcached servers,
471 asynchronous memslap will set objects to both server 0 and server 1, get
472 objects which are set to server 0 before from server 1, and also get objects
473 which are set to server 1 before from server 0. If server 0 crashes,
474 asynchronous memslap will only get objects from server 1. If server 0 comes
475 back to life again, asynchronous memslap will reconnect server 0. If both
476 server 0 and server 1 crash, asynchronous memslap will exit.
477
478 =head2 Supports thousands of TCP connections
479
480 Start asynchronous memslap with "--conn_sock=" or "-n" to enable this
481 feature. Make sure that your system can support opening thousands of files
482 and creating thousands of sockets. However, this feature does not support
483 reconnection if sockets disconnect.
484
485 For example:
486
487 --threads=8 --concurrency=128 --conn_sock=128
488
489 The above command means that asynchronous memslap starts up 8 threads, each
490 thread has 16 concurrencies, each concurrency has 128 TCP socket
491 connections, and the total number of TCP socket connections is 128 * 128 =
492 16384.
493
494 =head2 Supports binary protocol
495
496 Start asynchronous memslap with "--binary" or "-B" options to enable this
497 feature. It supports all the above features except UDP, because the latest
498 memcached 1.3.3 does not implement binary UDP protocol.
499
500 For example:
501
502 --binary
503
504 Since memcached 1.3.3 doesn't implement binary UDP protocol, asynchronous
505 memslap does not support UDP. In addition, memcached 1.3.3 does not support
506 multi-get. If you specify "--division=50" option, it just sends 50 get
507 commands together as “mulit-get” to the server.
508
509 =head1 Configuration file
510
511 This section describes the format of the configuration file. Below is a
512 sample configuration file:
513
514 ***************************************************************************
515 #comments should start with '#'
516 #key
517 #start_len end_len proportion
518 #
519 #key length range from start_len to end_len
520 #start_len must be equal to or greater than 16
521 #end_len must be equal to or less than 250
522 #start_len must be equal to or greater than end_len
523 #asynchronous memslap will generate keys according to the key range
524 #proportion: indicates keys generated from one range accounts for the total
525 generated keys
526 #
527 #example1: key range 16~100 accounts for 80%
528 # key range 101~200 accounts for 10%
529 # key range 201~250 accounts for 10%
530 # total should be 1 (0.8+0.1+0.1 = 1)
531 #
532 # 16 100 0.8
533 # 101 200 0.1
534 # 201 249 0.1
535 #
536 #example2: all keys length are 128 bytes
537 #
538 # 128 128 1
539 key
540 128 128 1
541 #value
542 #start_len end_len proportion
543 #
544 #value length range from start_len to end_len
545 #start_len must be equal to or greater than 1
546 #end_len must be equal to or less than 1M
547 #start_len must be equal to or greater than end_len
548 #asynchronous memslap will generate values according to the value range
549 #proportion: indicates values generated from one range accounts for the
550 total generated values
551 #
552 #example1: value range 1~1000 accounts for 80%
553 # value range 1001~10000 accounts for 10%
554 # value range 10001~100000 accounts for 10%
555 # total should be 1 (0.8+0.1+0.1 = 1)
556 #
557 # 1 1000 0.8
558 # 1001 10000 0.1
559 # 10001 100000 0.1
560 #
561 #example2: all value length are 128 bytes
562 #
563 # 128 128 1
564 value
565 2048 2048 1
566 #cmd
567 #cmd_type cmd_proportion
568 #
569 #currently asynchronous memslap only supports get and set command.
570 #
571 #cmd_type
572 #set 0
573 #get 1
574 #
575 #example: set command accounts for 50%
576 # get command accounts for 50%
577 # total should be 1 (0.5+0.5 = 1)
578 #
579 # cmd
580 # 0 0.5
581 # 1 0.5
582 cmd
583 0 0.1
584 1.0 0.9
585
586
587
588 =head1 Format of output
589
590 At the beginning, asynchronous memslap displays some configuration information as follows:
591
592 =over 4
593
594 =item threads count: 1
595
596 =item concurrency: 16
597
598 =item run time: 20s
599
600 =item windows size: 10k
601
602 =item set proportion: set_prop=0.10
603
604 =item get proportion: get_prop=0.90
605
606 =back
607
608 =head2 Where
609
610 =over 4
611
612 =item threads count
613
614 The number of threads asynchronous memslap runs with.
615
616 =item concurrency
617
618 The number of concurrencies asynchronous memslap runs with.
619
620 =item run time
621
622 How long to run asynchronous memslap.
623
624 =item windows size
625
626 The task window size of each concurrency.
627
628 =item set proportion
629
630 The proportion of set command.
631
632 =item get proportion
633
634 The proportion of get command.
635
636 =back
637
638 The output of dynamic statistics is something like this:
639
640 ---------------------------------------------------------------------------------------------------------------------------------
641 Get Statistics
642 Type Time(s) Ops TPS(ops/s) Net(M/s) Get_miss Min(us) Max(us)
643 Avg(us) Std_dev Geo_dist
644 Period 5 345826 69165 65.3 0 27 2198 203
645 95.43 177.29
646 Global 20 1257935 62896 71.8 0 26 3791 224
647 117.79 192.60
648
649
650 Set Statistics
651 Type Time(s) Ops TPS(ops/s) Net(M/s) Get_miss Min(us) Max(us)
652 Avg(us) Std_dev Geo_dist
653 Period 5 38425 7685 7.3 0 42 628 240
654 88.05 220.21
655 Global 20 139780 6989 8.0 0 37 3790 253
656 117.93 224.83
657
658
659 Total Statistics
660 Type Time(s) Ops TPS(ops/s) Net(M/s) Get_miss Min(us) Max(us)
661 Avg(us) Std_dev Geo_dist
662 Period 5 384252 76850 72.5 0 27 2198 207
663 94.72 181.18
664 Global 20 1397720 69886 79.7 0 26 3791 227
665 117.93 195.60
666 ---------------------------------------------------------------------------------------------------------------------------------
667
668 =head2 Where
669
670 =over 4
671
672 =item Get Statistics
673
674 Statistics information of get command
675
676 =item Set Statistics
677
678 Statistics information of set command
679
680 =item Total Statistics
681
682 Statistics information of both get and set command
683
684 =item Period
685
686 Result within a period
687
688 =item Global
689
690 Accumulated results
691
692 =item Ops
693
694 Total operations
695
696 =item TPS
697
698 Throughput, operations/second
699
700 =item Net
701
702 The rate of network
703
704 =item Get_miss
705
706 How many objects can’t be gotten
707
708 =item Min
709
710 The minimum response time
711
712 =item Max
713
714 The maximum response time
715
716 =item Avg:
717
718 The average response time
719
720 =item Std_dev
721
722 Standard deviation of response time
723
724 =item Geo_dist
725
726 Geometric distribution based on natural exponential function
727
728 =back
729
730 At the end, asynchronous memslap will output something like this:
731
732 ---------------------------------------------------------------------------------------------------------------------------------
733 Get Statistics (1257956 events)
734 Min: 26
735 Max: 3791
736 Avg: 224
737 Geo: 192.60
738 Std: 116.23
739 Log2 Dist:
740 4: 0 10 84490 215345
741 8: 484890 459823 12543 824
742 12: 31
743
744 Set Statistics (139782 events)
745 Min: 37
746 Max: 3790
747 Avg: 253
748 Geo: 224.84
749 Std: 116.83
750 Log2 Dist:
751 4: 0 0 4200 16988
752 8: 50784 65574 2064 167
753 12: 5
754
755 Total Statistics (1397738 events)
756 Min: 26
757 Max: 3791
758 Avg: 227
759 Geo: 195.60
760 Std: 116.60
761 Log2 Dist:
762 4: 0 10 88690 232333
763 8: 535674 525397 14607 991
764 12: 36
765
766 cmd_get: 1257969
767 cmd_set: 139785
768 get_misses: 0
769 verify_misses: 0
770 verify_failed: 0
771 expired_get: 0
772 unexpired_unget: 0
773 written_bytes: 242516030
774 read_bytes: 1003702556
775 object_bytes: 152086080
776 packet_disorder: 0
777 packet_drop: 0
778 udp_timeout: 0
779
780 Run time: 20.0s Ops: 1397754 TPS: 69817 Net_rate: 59.4M/s
781 ---------------------------------------------------------------------------------------------------------------------------------
782
783 =head2 Where
784
785 =over 4
786
787 =item Get Statistics
788
789 Get statistics of response time
790
791 =item Set Statistics
792
793 Set statistics of response time
794
795 =item Total Statistics
796
797 Both get and set statistics of response time
798
799 =item Min
800
801 The accumulated and minimum response time
802
803 =item Max
804
805 The accumulated and maximum response time
806
807 =item Avg
808
809 The accumulated and average response time
810
811 =item Std
812
813 Standard deviation of response time
814
815 =item Log2 Dist
816
817 Geometric distribution based on logarithm 2
818
819 =item cmd_get
820
821 Total get commands done
822
823 =item cmd_set
824
825 Total set commands done
826
827 =item get_misses
828
829 How many objects can’t be gotten from server
830
831 =item verify_misses
832
833 How many objects need to verify but can’t get them
834
835 =item verify_failed
836
837 How many objects with insistent value
838
839 =item expired_get
840
841 How many objects are expired but we get them
842
843 =item unexpired_unget
844
845 How many objects are unexpired but we can’t get them
846
847 =item written_bytes
848
849 Total written bytes
850
851 =item read_bytes
852
853 Total read bytes
854
855 =item object_bytes
856
857 Total object bytes
858
859 =item packet_disorder
860
861 How many UDP packages are disorder
862
863 =item packet_drop
864
865 How many UDP packages are lost
866
867 =item udp_timeout
868
869 How many times UDP time out happen
870
871 =item Run time
872
873 Total run time
874
875 =item Ops
876
877 Total operations
878
879 =item TPS
880
881 Throughput, operations/second
882
883 =item Net_rate
884
885 The average rate of network
886
887 =back
888
889 =head1 OPTIONS
890
891 -s, --servers=
892 List one or more servers to connect. Servers count must be less than
893 threads count. e.g.: --servers=localhost:1234,localhost:11211
894
895 -T, --threads=
896 Number of threads to startup, better equal to CPU numbers. Default 8.
897
898 -c, --concurrency=
899 Number of concurrency to simulate with load. Default 128.
900
901 -n, --conn_sock=
902 Number of TCP socks per concurrency. Default 1.
903
904 -x, --execute_number=
905 Number of operations(get and set) to execute for the
906 given test. Default 1000000.
907
908 -t, --time=
909 How long the test to run, suffix: s-seconds, m-minutes, h-hours,
910 d-days e.g.: --time=2h.
911
912 -F, --cfg_cmd=
913 Load the configure file to get command,key and value distribution list.
914
915 -w, --win_size=
916 Task window size of each concurrency, suffix: K, M e.g.: --win_size=10k.
917 Default 10k.
918
919 -X, --fixed_size=
920 Fixed length of value.
921
922 -v, --verify=
923 The proportion of date verification, e.g.: --verify=0.01
924
925 -d, --division=
926 Number of keys to multi-get once. Default 1, means single get.
927
928 -S, --stat_freq=
929 Frequency of dumping statistic information. suffix: s-seconds,
930 m-minutes, e.g.: --resp_freq=10s.
931
932 -e, --exp_verify=
933 The proportion of objects with expire time, e.g.: --exp_verify=0.01.
934 Default no object with expire time
935
936 -o, --overwrite=
937 The proportion of objects need overwrite, e.g.: --overwrite=0.01.
938 Default never overwrite object.
939
940 -R, --reconnect
941 Reconnect support, when connection is closed it will be reconnected.
942
943 -U, --udp
944 UDP support, default memslap uses TCP, TCP port and UDP port of
945 server must be same.
946
947 -a, --facebook
948 Whether it enables facebook test feature, set with TCP and multi-get with UDP.
949
950 -B, --binary
951 Whether it enables binary protocol. Default with ASCII protocol.
952
953 -P, --tps=
954 Expected throughput, suffix: K, e.g.: --tps=10k.
955
956 -p, --rep_write=
957 The first nth servers can write data, e.g.: --rep_write=2.
958
959 -b, --verbose
960 Whether it outputs detailed information when verification fails.
961
962 -h, --help
963 Display this message and then exit.
964
965 -V, --version
966 Display the version of the application and then exit.
967
968 =head1 EXAMPLES
969
970 memslap -s 127.0.0.1:11211 -S 5s
971
972 memslap -s 127.0.0.1:11211 -t 2m -v 0.2 -e 0.05 -b
973
974 memslap -s 127.0.0.1:11211 -F config -t 2m -w 40k -S 20s -o 0.2
975
976 memslap -s 127.0.0.1:11211 -F config -t 2m -T 4 -c 128 -d 20 -P 40k
977
978 memslap -s 127.0.0.1:11211 -F config -t 2m -d 50 -a -n 40
979
980 memslap -s 127.0.0.1:11211,127.0.0.1:11212 -F config -t 2m
981
982 memslap -s 127.0.0.1:11211,127.0.0.1:11212 -F config -t 2m -p 2
983
984 =head1 HOME
985
986 To find out more information please check:
987 L<http://launchpad.org/libmemcached>
988
989 =head1 AUTHORS
990
991 Mingqiang Zhuang E<lt>mingqiangzhuang@hengtiansoft.comE<gt> (Schooner Technolgy)
992 Brian Aker, E<lt>brian@tangent.orgE<gt>
993
994 =head1 SEE ALSO
995
996 memcached(1) libmemcached(3)
997
998 =cut
999