table of contents
MEMASLAP(1) | libmemcached | MEMASLAP(1) |
NAME¶
memaslap - libmemcached DocumentationSYNOPSIS¶
memaslap [options]- --help
- MEMCACHED_SERVERS
DESCRIPTION¶
memaslap is a load generation and benchmark tool for memcached servers. It generates configurable workload such as threads, concurrencies, connections, run time, overwrite, miss rate, key size, value size, get/set proportion, expected throughput, and so on. Furthermore, it also testss data verification, expire-time verification, UDP, binary protocol, facebook test, replication test, multi-get and reconnection, etc.FEATURES¶
Memslap is developed to for the following purposes:DETAILS¶
Effective implementation of network.¶
For memaslap, both TCP and UDP use non-blocking network IO. All the network events are managed by libevent as memcached. The network module of memaslap is similar to memcached. Libevent can ensure memaslap can handle network very efficiently.Effective implementation of multi-threads and concurrency¶
Memslap has the similar implementation of multi-threads to memcached. Memslap creates one or more self-governed threads; each thread is bound with one CPU core if the system testss setting CPU core affinity.Effective implementation of generating key and value¶
In order to improve time efficiency and space efficiency, memaslap creates a random characters table with 10M characters. All the suffixes of keys and values are generated from this random characters table.Simple but useful task scheduling¶
Memslap uses libevent to schedule all the concurrencies of threads, and each concurrency schedules tasks based on the local task window. Memslap assumes that if each concurrency keeps the same key distribution, value distribution and commands distribution, from outside, memaslap keeps all the distribution as a whole. Each task window includes a lot of objects, each object stores its basic information, such as key, value, expire time, and so on. At any time, all the objects in the window keep the same and fixed key and value distribution. If an object is overwritten, the value of the object will be updated. Memslap verifies the data or expire-time according to the object information stored in the task window.Useful implementation of multi-servers , UDP, TCP, multi-get and binary protocol¶
Because each thread is self-governed, memaslap can assign different threads to handle different memcached servers. This is just one of the ways in which memaslap tests multiple servers. The only limitation is that the number of servers cannot be greater than the number of threads. The other way to test multiple servers is for replication test. Each concurrency has one socket connection to each memcached server. For the implementation, memaslap can set some objects to one memcached server, and get these objects from the other servers.USAGE¶
Below are some usage samples:Key size, value size and command distribution.¶
All the distributions are read from the configuration file specified by user with “—cfg_cmd” option. If the user does not specify a configuration file, memaslap will run with the default distribution (key size = 64, value size = 1024, get/set = 9:1). For information on how to edit the configuration file, refer to the “Configuration File” section.Multi-thread and concurrency¶
The high performance of memaslap benefits from the special schedule of thread and concurrency. It’s important to specify the proper number of them. The default number of threads is 1; the default number of concurrency is 16. The user can use “—threads” and “--concurrency” to specify these variables.- 1.
- For 8 CPU cores system
- 2.
- For 16 CPU cores system
Window size¶
Most of the time, the user does not need to specify the window size. The default window size is 10k. For Schooner Memcached, the user can specify different window sizes to get different cache miss rates based on the test case. Memslap testss cache miss rate between 0% and 100%. If you use this utility to test the performance of Schooner Memcached, you can specify a proper window size to get the expected cache miss rate. The formula for calculating window size is as follows:- 2.
- cache_size=4G
- 3.
- cache_size=16G
Verification¶
Memslap testss both data verification and expire-time verification. The user can use "--verify=" or "-v" to specify the proportion of data verification. In theory, it testss 100% data verification. The user can use "--exp_verify=" or "-e" to specify the proportion of expire-time verification. In theory, it testss 100% expire-time verification. Specify the "--verbose" options to get more detailed error information.multi-servers and multi-config¶
Memslap testss multi-servers based on self-governed thread. There is a limitation that the number of servers cannot be greater than the number of threads. Memslap assigns one thread to handle one server at least. The user can use the "--servers=" or "-s" option to specify multi-servers.Run with execute number mode or time mode¶
The default memaslap runs with time mode. The default run time is 10 minutes. If it times out, memaslap will exit. Do not specify both execute number mode and time mode at the same time; just specify one instead.Dump statistic information periodically.¶
The user can use "--stat_freq=" or "-S" to specify the frequency.Multi-get¶
The user can use "--division=" or "-d" to specify multi-get keys count. Memslap by default does single get with TCP. Memslap also testss data verification and expire-time verification for multi-get.UDP and TCP¶
Memslap testss both UDP and TCP. For TCP, memaslap does not reconnect the memcached server if socket connections are lost. If all the socket connections are lost or memcached server crashes, memaslap will exit. If the user specifies the “--reconnect” option when socket connections are lost, it will reconnect them.Facebook test¶
Set data with TCP and multi-get with UDP. Specify the following options:Replication test¶
For replication test, the user must specify at least two memcached servers. The user can use “—rep_write=” option to enable feature.Supports thousands of TCP connections¶
Start memaslap with "--conn_sock=" or "-n" to enable this feature. Make sure that your system can tests opening thousands of files and creating thousands of sockets. However, this feature does not tests reconnection if sockets disconnect.Supports binary protocol¶
Start memaslap with "--binary" or "-B" options to enable this feature. It testss all the above features except UDP, because the latest memcached 1.3.3 does not implement binary UDP protocol.CONFIGURATION FILE¶
This section describes the format of the configuration file. By default when no configuration file is specified memaslap reads the default one located at ~/.memaslap.cnf.--------------------------------------------------------------------------- #comments should start with '#' #key #start_len end_len proportion # #key length range from start_len to end_len #start_len must be equal to or greater than 16 #end_len must be equal to or less than 250 #start_len must be equal to or greater than end_len #memaslap will generate keys according to the key range #proportion: indicates keys generated from one range accounts for the total generated keys # #example1: key range 16~100 accounts for 80% # key range 101~200 accounts for 10% # key range 201~250 accounts for 10% # total should be 1 (0.8+0.1+0.1 = 1) # # 16 100 0.8 # 101 200 0.1 # 201 249 0.1 # #example2: all keys length are 128 bytes # # 128 128 1 key 128 128 1 #value #start_len end_len proportion # #value length range from start_len to end_len #start_len must be equal to or greater than 1 #end_len must be equal to or less than 1M #start_len must be equal to or greater than end_len #memaslap will generate values according to the value range #proportion: indicates values generated from one range accounts for the total generated values # #example1: value range 1~1000 accounts for 80% # value range 1001~10000 accounts for 10% # value range 10001~100000 accounts for 10% # total should be 1 (0.8+0.1+0.1 = 1) # # 1 1000 0.8 # 1001 10000 0.1 # 10001 100000 0.1 # #example2: all value length are 128 bytes # # 128 128 1 value 2048 2048 1 #cmd #cmd_type cmd_proportion # #currently memaslap only testss get and set command. # #cmd_type #set 0 #get 1 # #example: set command accounts for 50% # get command accounts for 50% # total should be 1 (0.5+0.5 = 1) # # cmd # 0 0.5 # 1 0.5 cmd 0 0.1 1.0 0.9
FORMAT OF OUTPUT¶
At the beginning, memaslap displays some configuration information as follows:Where¶
servers : "servers"The servers used by memaslap.
The number of threads memaslap runs
with.
The number of concurrencies memaslap runs
with.
How long to run memaslap.
The task window size of each
concurrency.
The proportion of set command.
The proportion of get command.
--------------------------------------------------------------------------------------------------------------------------------- Get Statistics Type Time(s) Ops TPS(ops/s) Net(M/s) Get_miss Min(us) Max(us) Avg(us) Std_dev Geo_dist Period 5 345826 69165 65.3 0 27 2198 203 95.43 177.29 Global 20 1257935 62896 71.8 0 26 3791 224 117.79 192.60 Set Statistics Type Time(s) Ops TPS(ops/s) Net(M/s) Get_miss Min(us) Max(us) Avg(us) Std_dev Geo_dist Period 5 38425 7685 7.3 0 42 628 240 88.05 220.21 Global 20 139780 6989 8.0 0 37 3790 253 117.93 224.83 Total Statistics Type Time(s) Ops TPS(ops/s) Net(M/s) Get_miss Min(us) Max(us) Avg(us) Std_dev Geo_dist Period 5 384252 76850 72.5 0 27 2198 207 94.72 181.18 Global 20 1397720 69886 79.7 0 26 3791 227 117.93 195.60 ---------------------------------------------------------------------------------------------------------------------------------
Where¶
Get StatisticsStatistics information of get command
Statistics information of set command
Statistics information of both get and set
command
Result within a period
Accumulated results
Total operations
Throughput, operations/second
The rate of network
How many objects can’t be gotten
The minimum response time
The maximum response time
The average response time
Standard deviation of response time
Geometric distribution based on natural
exponential function
--------------------------------------------------------------------------------------------------------------------------------- Get Statistics (1257956 events) Min: 26 Max: 3791 Avg: 224 Geo: 192.60 Std: 116.23 Log2 Dist: 4: 0 10 84490 215345 8: 484890 459823 12543 824 12: 31 Set Statistics (139782 events) Min: 37 Max: 3790 Avg: 253 Geo: 224.84 Std: 116.83 Log2 Dist: 4: 0 0 4200 16988 8: 50784 65574 2064 167 12: 5 Total Statistics (1397738 events) Min: 26 Max: 3791 Avg: 227 Geo: 195.60 Std: 116.60 Log2 Dist: 4: 0 10 88690 232333 8: 535674 525397 14607 991 12: 36 cmd_get: 1257969 cmd_set: 139785 get_misses: 0 verify_misses: 0 verify_failed: 0 expired_get: 0 unexpired_unget: 0 written_bytes: 242516030 read_bytes: 1003702556 object_bytes: 152086080 packet_disorder: 0 packet_drop: 0 udp_timeout: 0 Run time: 20.0s Ops: 1397754 TPS: 69817 Net_rate: 59.4M/s ---------------------------------------------------------------------------------------------------------------------------------
Where¶
Get StatisticsGet statistics of response time
Set statistics of response time
Both get and set statistics of response
time
The accumulated and minimum response
time
The accumulated and maximum response
time
The accumulated and average response
time
Standard deviation of response time
Geometric distribution based on logarithm
2
Total get commands done
Total set commands done
How many objects can’t be gotten from
server
How many objects need to verify but
can’t get them
How many objects with insistent value
How many objects are expired but we get
them
How many objects are unexpired but we
can’t get them
Total written bytes
Total read bytes
Total object bytes
How many UDP packages are disorder
How many UDP packages are lost
How many times UDP time out happen
Total run time
Total operations
Throughput, operations/second
The average rate of network
OPTIONS¶
- -s, --servers=
- List one or more servers to connect. Servers count must be less than threads count. e.g.: --servers=localhost:1234,localhost:11211
- -T, --threads=
- Number of threads to startup, better equal to CPU numbers. Default 8.
- -c, --concurrency=
- Number of concurrency to simulate with load. Default 128.
- -n, --conn_sock=
- Number of TCP socks per concurrency. Default 1.
- -x, --execute_number=
- Number of operations(get and set) to execute for the given test. Default 1000000.
- -t, --time=
- How long the test to run, suffix: s-seconds, m-minutes, h-hours, d-days e.g.: --time=2h.
- -F, --cfg_cmd=
- Load the configure file to get command,key and value distribution list.
- -w, --win_size=
- Task window size of each concurrency, suffix: K, M e.g.: --win_size=10k. Default 10k.
- -X, --fixed_size=
- Fixed length of value.
- -v, --verify=
- The proportion of date verification, e.g.: --verify=0.01
- -d, --division=
- Number of keys to multi-get once. Default 1, means single get.
- -S, --stat_freq=
- Frequency of dumping statistic information. suffix: s-seconds, m-minutes, e.g.: --resp_freq=10s.
- -e, --exp_verify=
- The proportion of objects with expire time, e.g.: --exp_verify=0.01. Default no object with expire time
- -o, --overwrite=
- The proportion of objects need overwrite, e.g.: --overwrite=0.01. Default never overwrite object.
- -R, --reconnect
- Reconnect tests, when connection is closed it will be reconnected.
- -U, --udp
- UDP tests, default memaslap uses TCP, TCP port and UDP port of server must be same.
- -a, --facebook
- Whether it enables facebook test feature, set with TCP and multi-get with UDP.
- -B, --binary
- Whether it enables binary protocol. Default with ASCII protocol.
- -P, --tps=
- Expected throughput, suffix: K, e.g.: --tps=10k.
- -p, --rep_write=
- The first nth servers can write data, e.g.: --rep_write=2.
- -b, --verbose
- Whether it outputs detailed information when verification fails.
- -h, --help
- Display this message and then exit.
- -V, --version
- Display the version of the application and then exit.
EXAMPLES¶
memaslap -s 127.0.0.1:11211 -S 5sHOME¶
To find out more information please check: http://libmemcached.org/AUTHORS¶
Mingqiang Zhuang < mingqiangzhuang@hengtiansoft.com> (Schooner Technolgy) Brian Aker, < brian@tangent.org>SEE ALSO¶
memcached(1) libmemcached(3)AUTHOR¶
Brian AkerCOPYRIGHT¶
2011, Brian Aker DataDifferential, http://datadifferential.com/May 22, 2012 | 1.0.8 |