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