mirror of
https://github.com/valitydev/yandex-tank.git
synced 2024-11-06 10:25:17 +00:00
621 lines
17 KiB
ReStructuredText
621 lines
17 KiB
ReStructuredText
Usage
|
||
-----
|
||
|
||
So, you've installed Yandex.Tank to a proper machine, it is close to target,
|
||
access is permitted and server is tuned. How to make a test?
|
||
|
||
This guide is for ``phantom`` load generator.
|
||
|
||
First Steps
|
||
~~~~~~~~~~~
|
||
|
||
Create a file on a server with Yandex.Tank: **load.ini**
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port
|
||
rps_schedule=line(1, 100, 10m) ;load scheme
|
||
|
||
Yandex.Tank have 3 primitives for describing load scheme:
|
||
|
||
1. ``step (a,b,step,dur)`` makes stepped load, where a,b are start/end load
|
||
values, step - increment value, dur - step duration.
|
||
|
||
2. ``line (a,b,dur)`` makes linear load, where ``a,b`` are start/end load, ``dur``
|
||
- the time for linear load increase from a to b.
|
||
|
||
3. ``const (load,dur)`` makes constant load. ``load`` - rps amount, ``dur``
|
||
- load duration. You can set fractional load like this: ``line(1.1, 2.5, 10)``
|
||
-- from 1.1rps to 2.5 for 10 seconds. Note: ``const(0, 10)`` - 0 rps for 10 seconds,
|
||
in fact 10s pause in a test.
|
||
|
||
``step`` and ``line`` could be used with increasing and decreasing
|
||
intensity:
|
||
|
||
* ``step(25, 5, 5, 60)`` - stepped load from 25 to 5 rps, with 5 rps steps,
|
||
step duration 60s. ``step(5, 25, 5, 60)`` - stepped load from 5 to 25 rps,
|
||
with 5 rps steps, step duration 60s
|
||
|
||
* ``line(100, 1, 10m)`` - linear load from 100 to 1 rps, duration - 10
|
||
minutes ``line(1, 100, 10m)`` - linear load from 1 to 100 rps, duration
|
||
- 10 minutes
|
||
|
||
You can specify complex load schemes using those primitives,
|
||
for example: ``rps_schedule=line(1,10,10m) const(10,10m)``
|
||
- linear load from 1 to 10, duration 10 mins and then 10 mins of 10 RPS constant load.
|
||
|
||
Time duration could be defined in seconds, minutes (m) and hours (h).
|
||
For example: ``27h103m645``
|
||
|
||
For a test with constant load at 10rps for 10 minutes, ``load.ini`` should
|
||
have next lines:
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port.
|
||
rps_schedule=const(10, 10m) ;load scheme
|
||
|
||
Voilà, Yandex.Tank setup is done.
|
||
|
||
|
||
Preparing requests
|
||
~~~~~~~~~~~~~~~~~~
|
||
|
||
There are several ways to set up requests: Access mode, URI-style, URI+POST and request-style.
|
||
Regardless of the chosen format, resulted file with requests could be gzipped - tank supports
|
||
archived ammo files.
|
||
|
||
To specify external ammo file use ``ammofile`` option. You can specify URL to ammofile, http(s).
|
||
Small ammofiles (~<100MB) will be downloaded as is, to directory ``/tmp/<hash>``,
|
||
large files will be readed from stream.
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ; Target's address
|
||
ammofile=https://yourhost.tld/path/to/ammofile.txt
|
||
|
||
If ammo type is uri-style or request-style, tank will try to guess it.
|
||
|
||
Use ``ammo_type`` option to explicitly specify ammo format. Don't forget to change ``ammo_type`` option
|
||
if you switch format of your ammo, otherwise you might get errors.
|
||
|
||
Access mode
|
||
''''''''''''
|
||
You can use access.log file from your webserver as a source of requests.
|
||
Just add to load.ini options ``ammo_type=access`` and ``ammofile=/tmp/access.log``
|
||
where /tmp/access.log is a path to access.log file.
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port
|
||
rps_schedule=const(10, 10m) ;load scheme
|
||
header_http = 1.1
|
||
headers = [Host: www.target.example.com]
|
||
[Connection: close]
|
||
ammofile=/tmp/access.log
|
||
ammo_type=access
|
||
|
||
Parameter ``headers`` defines headers values (if it nessessary).
|
||
|
||
URI-style, URIs in load.ini
|
||
''''''''''''''''''''''''''''
|
||
|
||
Update configuration file with HTTP headers and URIs:
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port
|
||
rps_schedule=const(10, 10m) ;load scheme
|
||
; Headers and URIs for GET requests
|
||
header_http = 1.1
|
||
headers = [Host: www.target.example.com]
|
||
[Connection: close]
|
||
uris = /
|
||
/buy
|
||
/sdfg?sdf=rwerf
|
||
/sdfbv/swdfvs/ssfsf
|
||
|
||
Parameter ``uris`` contains uri, which should be used for requests generation.
|
||
Pay attention to sample above, because whitespaces in ``uris`` and ``headers`` options are important.
|
||
|
||
URI-style, URIs in file
|
||
'''''''''''''''''''''''
|
||
|
||
Create a file with declared requests: **ammo.txt**
|
||
|
||
::
|
||
|
||
[Connection: close]
|
||
[Host: target.example.com]
|
||
[Cookies: None]
|
||
/?drg tag1
|
||
/
|
||
/buy tag2
|
||
[Cookies: test]
|
||
/buy/?rt=0&station_to=7&station_from=9
|
||
|
||
File consist of list of URIs and headers to be added to every request defined below.
|
||
Every URI must begin from a new line, with leading ``/``.
|
||
Each line that begins from ``[`` is considered as a header.
|
||
Headers could be (re)defined in the middle of URIs, as in sample above.
|
||
I.e request ``/buy/?rt=0&station_to=7&station_from=9`` will be sent
|
||
with ``Cookies: test``, not ``Cookies: None``. Request may be marked by tag,
|
||
you can specify it with whitespace following URI.
|
||
|
||
URI+POST-style
|
||
''''''''''''''
|
||
|
||
Create a file with declared requests: **ammo.txt**
|
||
|
||
::
|
||
|
||
[Host: example.org]
|
||
[Connection: close]
|
||
[User-Agent: Tank]
|
||
5 /route/?rll=50.262025%2C53.276083~50.056015%2C53.495561&origin=1&simplify=1
|
||
class
|
||
10 /route/?rll=50.262025%2C53.276083~50.056015%2C53.495561&origin=1&simplify=1
|
||
hello!clas
|
||
7 /route/?rll=37.565147%2C55.695758~37.412796%2C55.691454&origin=1&simplify=1
|
||
uripost
|
||
|
||
File begins with optional lines [...], that contain headers which will
|
||
be added to every request. After that section there is a list of URIs and POST bodies.
|
||
Each URI line begins with a number which is the size of the following POST body.
|
||
Set up ammo type in load.ini:
|
||
|
||
::
|
||
|
||
ammo_type=uripost
|
||
|
||
Request-style
|
||
'''''''''''''
|
||
|
||
Full requests listed in a separate file. For more complex
|
||
requests, like POST, you'll have to create a special file. File format
|
||
is:
|
||
|
||
::
|
||
|
||
[size_of_request] [tag]\n
|
||
[request_headers]
|
||
[body_of_request]\r\n
|
||
[size_of_request2] [tag2]\n
|
||
[request2_headers]
|
||
[body_of_request2]\r\n
|
||
|
||
|
||
where ``size_of_request`` – request size in bytes. '\r\n' symbols after
|
||
``body`` are ignored and not sent anywhere, but it is required to
|
||
include them in a file after each request. Pay attention to the sample above
|
||
because '\r' symbols are strictly required.
|
||
|
||
Parameter ``ammo_type`` is unnecessary, request-style is default ammo type.
|
||
|
||
**sample GET requests (null body)**
|
||
|
||
::
|
||
|
||
73 good
|
||
GET / HTTP/1.0
|
||
Host: xxx.tanks.example.com
|
||
User-Agent: xxx (shell 1)
|
||
|
||
77 bad
|
||
GET /abra HTTP/1.0
|
||
Host: xxx.tanks.example.com
|
||
User-Agent: xxx (shell 1)
|
||
|
||
78 unknown
|
||
GET /ab ra HTTP/1.0
|
||
Host: xxx.tanks.example.com
|
||
User-Agent: xxx (shell 1)
|
||
|
||
**sample POST requests (binary data)**
|
||
|
||
::
|
||
|
||
904
|
||
POST /upload/2 HTTP/1.0
|
||
Content-Length: 801
|
||
Host: xxxxxxxxx.dev.example.com
|
||
User-Agent: xxx (shell 1)
|
||
|
||
^.^........W.j^1^.^.^.²..^^.i.^B.P..-!(.l/Y..V^. ...L?...S'NR.^^vm...3Gg@s...d'.\^.5N.$NF^,.Z^.aTE^.
|
||
._.[..k#L^ƨ`\RE.J.<.!,.q5.F^՚iΔĬq..^6..P..тH.`..i2
|
||
.".uuzs^^F2...Rh.&.U.^^..J.P@.A......x..lǝy^?.u.p{4..g...m.,..R^.^.^......].^^.^J...p.ifTF0<.s.9V.o5<..%!6ļS.ƐǢ..㱋....C^&.....^.^y...v]^YT.1.#K.ibc...^.26... ..7.
|
||
b.$...j6.٨f...W.R7.^1.3....K`%.&^..d..{{ l0..^\..^X.g.^.r.(!.^^...4.1.$\ .%.8$(.n&..^^q.,.Q..^.D^.].^.R9.kE.^.$^.I..<..B^..^.h^^C.^E.|....3o^.@..Z.^.s.$[v.
|
||
527
|
||
POST /upload/3 HTTP/1.0
|
||
Content-Length: 424
|
||
Host: xxxxxxxxx.dev.example.com
|
||
User-Agent: xxx (shell 1)
|
||
|
||
^.^........QMO.0^.++^zJw.ر^$^.^Ѣ.^V.J....vM.8r&.T+...{@pk%~C.G../z顲^.7....l...-.^W"cR..... .&^?u.U^^.^.....{^.^..8.^.^.I.EĂ.p...'^.3.Tq..@R8....RAiBU..1.Bd*".7+.
|
||
.Ol.j=^.3..n....wp..,Wg.y^.T..~^..
|
||
|
||
**sample POST multipart:**
|
||
|
||
::
|
||
|
||
533
|
||
POST /updateShopStatus? HTTP/1.0
|
||
User-Agent: xxx/1.2.3
|
||
Host: xxxxxxxxx.dev.example.com
|
||
Keep-Alive: 300
|
||
Content-Type: multipart/form-data; boundary=AGHTUNG
|
||
Content-Length:334
|
||
Connection: Close
|
||
|
||
--AGHTUNG
|
||
Content-Disposition: form-data; name="host"
|
||
|
||
load-test-shop-updatestatus.ru
|
||
--AGHTUNG
|
||
Content-Disposition: form-data; name="user_id"
|
||
|
||
1
|
||
--AGHTUNG
|
||
Content-Disposition: form-data; name="wsw-fields"
|
||
|
||
<wsw-fields><wsw-field name="moderate-code"><wsw-value>disable</wsw-value></wsw-field></wsw-fields>
|
||
--AGHTUNG--
|
||
|
||
**sample req-style ammo generator (python):**
|
||
|
||
``usage: cat data | python make_ammo.py``
|
||
For each line of 'data' file this script will generate phantom ammo.
|
||
Line format: ``GET||/url||case_tag||body(optional)``
|
||
|
||
.. code-block:: python
|
||
|
||
#!/usr/bin/python
|
||
# -*- coding: utf-8 -*-
|
||
|
||
import sys
|
||
|
||
def make_ammo(method, url, headers, case, body):
|
||
""" makes phantom ammo """
|
||
#http request w/o entity body template
|
||
req_template = (
|
||
"%s %s HTTP/1.1\r\n"
|
||
"%s\r\n"
|
||
"\r\n"
|
||
)
|
||
|
||
#http request with entity body template
|
||
req_template_w_entity_body = (
|
||
"%s %s HTTP/1.1\r\n"
|
||
"%s\r\n"
|
||
"Content-Length: %d\r\n"
|
||
"\r\n"
|
||
"%s\r\n"
|
||
)
|
||
|
||
if not body:
|
||
req = req_template % (method, url, headers)
|
||
else:
|
||
req = req_template_w_entity_body % (method, url, headers, len(body), body)
|
||
|
||
#phantom ammo template
|
||
ammo_template = (
|
||
"%d %s\n"
|
||
"%s"
|
||
)
|
||
|
||
return ammo_template % (len(req), case, req)
|
||
|
||
def main():
|
||
for stdin_line in sys.stdin:
|
||
try:
|
||
method, url, case, body = stdin_line.split("||")
|
||
body = body.strip()
|
||
except:
|
||
method, url, case = stdin_line.split("||")
|
||
body = None
|
||
|
||
method, url, case = method.strip(), url.strip(), case.strip()
|
||
|
||
headers = "Host: hostname.com\r\n" + \
|
||
"User-Agent: tank\r\n" + \
|
||
"Accept: */*\r\n" + \
|
||
"Connection: Close"
|
||
|
||
sys.stdout.write(make_ammo(method, url, headers, case, body))
|
||
|
||
if __name__ == "__main__":
|
||
main()
|
||
|
||
Run Test!
|
||
~~~~~~~~~
|
||
|
||
1. Request specs in load.ini -- just run as ``yandex-tank``
|
||
|
||
2. Request specs in ammo.txt -- run as ``yandex-tank ammo.txt``
|
||
|
||
Yandex.Tank detects requests format and generates ultimate requests
|
||
versions.
|
||
|
||
``yandex-tank`` here is an executable file name of Yandex.Tank.
|
||
|
||
If Yandex.Tank has been installed properly and configuration file is
|
||
correct, the load will be given in next few seconds.
|
||
|
||
Results
|
||
~~~~~~~
|
||
|
||
During test execution you'll see HTTP and net errors, answer times
|
||
distribution, progressbar and other interesting data. At the same time
|
||
file ``phout.txt`` is being written, which could be analyzed later.
|
||
|
||
If you need more human-readable report, you can try Report plugin,
|
||
You can found it `here <https://github.com/yandex-load/yatank-online>`_
|
||
|
||
Tags
|
||
~~~~
|
||
|
||
Requests could be grouped and marked by some tag. Example of file with
|
||
requests and tags:
|
||
|
||
::
|
||
|
||
73 good
|
||
GET / HTTP/1.0
|
||
Host: xxx.tanks.example.com
|
||
User-Agent: xxx (shell 1)
|
||
|
||
77 bad
|
||
GET /abra HTTP/1.0
|
||
Host: xxx.tanks.example.com
|
||
User-Agent: xxx (shell 1)
|
||
|
||
75 unknown
|
||
GET /ab HTTP/1.0
|
||
Host: xxx.tanks.example.com
|
||
User-Agent: xxx (shell 1)
|
||
|
||
``good``, ``bad`` and ``unknown`` here are the tags.
|
||
|
||
**RESTRICTION: utf-8 symbols only**
|
||
|
||
SSL
|
||
~~~
|
||
|
||
To activate SSL add ``ssl = 1`` to ``load.ini``. Don't forget to change port
|
||
number to appropriate value. Now, our basic config looks like that:
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80; target's port
|
||
rps_schedule=const (10,10m) ;Load scheme
|
||
ssl=1
|
||
|
||
Autostop
|
||
~~~~~~~~
|
||
|
||
Autostop is an ability to automatically halt test execution
|
||
if some conditions are reached.
|
||
|
||
HTTP and Net codes conditions
|
||
'''''''''''''''''''''''''''''
|
||
|
||
There is an option to define specific codes (404,503,100) as well as code
|
||
groups (3xx, 5xx, xx). Also you can define relative threshold (percent
|
||
from the whole amount of answer per second) or absolute (amount of
|
||
answers with specified code per second). Examples:
|
||
|
||
* ``autostop = http(4xx,25%,10)`` – stop test, if amount of 4xx http codes
|
||
in every second of last 10s period exceeds 25% of answers (relative
|
||
threshold)
|
||
|
||
* ``autostop = net(101,25,10)`` – stop test, if amount of 101
|
||
net-codes in every second of last 10s period is more than 25 (absolute
|
||
threshold)
|
||
|
||
* ``autostop = net(xx,25,10)`` – stop test, if amount of
|
||
non-zero net-codes in every second of last 10s period is more than 25
|
||
(absolute threshold)
|
||
|
||
Average time conditions
|
||
^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
||
Example: ``autostop = time(1500,15)`` – stop test, if average answer
|
||
time exceeds 1500ms
|
||
|
||
So, if we want to stop test when all answers in 1 second period are 5xx
|
||
plus some network and timing factors - add autostop line to load.ini:
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port
|
||
rps_schedule=const(10, 10m) ;load scheme
|
||
[autostop]
|
||
autostop=time(1,10)
|
||
http(5xx,100%,1s)
|
||
net(xx,1,30)
|
||
|
||
Logging
|
||
~~~~~~~
|
||
|
||
Looking into target's answers is quite useful in debugging. For doing
|
||
that add ``writelog = 1`` to ``load.ini``.
|
||
|
||
**ATTENTION: Writing answers on high load leads to intensive disk i/o
|
||
usage and can affect test accuracy.**
|
||
|
||
Log format:
|
||
|
||
::
|
||
|
||
<metrics>
|
||
<body_request>
|
||
<body_answer>
|
||
|
||
Where metrics are:
|
||
|
||
``size_in size_out response_time(interval_real) interval_event net_code``
|
||
(request size, answer size, response time, time to wait for response
|
||
from the server, answer network code)
|
||
|
||
Example:
|
||
|
||
::
|
||
|
||
user@tank:~$ head answ_*.txt
|
||
553 572 8056 8043 0
|
||
GET /create-issue HTTP/1.1
|
||
Host: target.yandex.net
|
||
User-Agent: tank
|
||
Accept: */*
|
||
Connection: close
|
||
|
||
|
||
HTTP/1.1 200 OK
|
||
Content-Type: application/javascript;charset=UTF-8
|
||
|
||
For ``load.ini`` like this:
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port
|
||
rps_schedule=const(10, 10m) ;load scheme
|
||
writelog=1
|
||
[autostop]
|
||
autostop=time(1,10)
|
||
http(5xx,100%,1s)
|
||
net(xx,1,30)
|
||
|
||
Results in phout
|
||
~~~~~~~~~~~~~~~~
|
||
|
||
phout.txt - is a per-request log. It could be used for service behaviour
|
||
analysis (Excel/gnuplot/etc) It has following fields:
|
||
``time, tag, interval_real, connect_time, send_time, latency, receive_time, interval_event, size_out, size_in, net_code proto_code``
|
||
|
||
Phout example:
|
||
|
||
::
|
||
|
||
1326453006.582 1510 934 52 384 140 1249 37 478 0 404
|
||
1326453006.582 others 1301 674 58 499 70 1116 37 478 0 404
|
||
1326453006.587 heavy 377 76 33 178 90 180 37 478 0 404
|
||
1326453006.587 294 47 27 146 74 147 37 478 0 404
|
||
1326453006.588 345 75 29 166 75 169 37 478 0 404
|
||
1326453006.590 276 72 28 119 57 121 53 476 0 404
|
||
1326453006.593 255 62 27 131 35 134 37 478 0 404
|
||
1326453006.594 304 50 30 147 77 149 37 478 0 404
|
||
1326453006.596 317 53 33 158 73 161 37 478 0 404
|
||
1326453006.598 257 58 32 106 61 110 37 478 0 404
|
||
1326453006.602 315 59 27 160 69 161 37 478 0 404
|
||
1326453006.603 256 59 33 107 57 110 53 476 0 404
|
||
1326453006.605 241 53 26 130 32 131 37 478 0 404
|
||
|
||
**NOTE:** as Yandex.Tank uses phantom as an http load engine and this
|
||
file is written by phantom, it contents depends on phantom version
|
||
installed on your Yandex.Tank system.
|
||
|
||
Graph and statistics
|
||
~~~~~~~~~~~~~~~~~~~~
|
||
|
||
Use `Report plugin <https://github.com/yandex-load/yatank-online>`_
|
||
OR
|
||
use your favorite stats packet, R, for example.
|
||
|
||
Custom timings
|
||
~~~~~~~~~~~~~~
|
||
|
||
You can set custom timings in ``load.ini`` with ``time_periods``
|
||
parameter like this:
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port
|
||
rps_schedule=const(10, 10m) ;load scheme
|
||
[aggregator]
|
||
time_periods = 10 45 50 100 150 300 500 1s 1500 2s 3s 10s ; the last value - 10s is considered as connect timeout.
|
||
|
||
According to this "buckets", tanks' aggregator will aggregate test results.
|
||
|
||
Thread limit
|
||
~~~~~~~~~~~~
|
||
|
||
``instances=N`` in ``load.ini`` limits number of simultanious
|
||
connections (threads). Test with 10 threads:
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port
|
||
rps_schedule=const(10, 10m) ;load scheme
|
||
instances=10
|
||
|
||
Dynamic thread limit
|
||
~~~~~~~~~~~~~~~~~~~~
|
||
|
||
``instances_schedule = <instances increasing scheme>`` -- test with
|
||
active instances schedule will be performed if load scheme is not
|
||
defined. Bear in mind that active instances number cannot be decreased
|
||
and final number of them must be equal to ``instances`` parameter value.
|
||
load.ini example:
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port
|
||
instances_schedule = line(1,10,10m)
|
||
;load = const (10,10m) ;Load scheme is excluded from this load.ini as we used instances_schedule parameter
|
||
|
||
Custom stateless protocol
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
In necessity of testing stateless HTTP-like protocol, Yandex.Tank's HTTP
|
||
parser could be switched off, providing ability to generate load with
|
||
any data, receiving any answer in return. To do that add
|
||
``tank_type = 2`` to ``load.ini``.
|
||
|
||
**Indispensable condition: Connection close must be initiated by remote side**
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port
|
||
rps_schedule=const(10, 10m) ;load scheme
|
||
instances=10
|
||
tank_type=2
|
||
|
||
Gatling
|
||
~~~~~~~
|
||
|
||
If server with Yandex.Tank have several IPs, they may be
|
||
used to avoid outcome port shortage. Use ``gatling_ip`` parameter for
|
||
that. Load.ini:
|
||
|
||
::
|
||
|
||
[phantom]
|
||
address=203.0.113.1 ;Target's address
|
||
port=80 ;target's port
|
||
rps_schedule=const(10, 10m) ;load scheme
|
||
instances=10
|
||
gatling_ip = IP1 IP2
|