-
Notifications
You must be signed in to change notification settings - Fork 13
/
README.md.tpl
148 lines (116 loc) · 2.76 KB
/
README.md.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
[![Build Status](https://travis-ci.org/dave/blast.svg?branch=master)](https://travis-ci.org/dave/blast) [![Go Report Card](https://goreportcard.com/badge/github.com/dave/blast)](https://goreportcard.com/report/github.com/dave/blast) [![codecov](https://codecov.io/gh/dave/blast/branch/master/graph/badge.svg)](https://codecov.io/gh/dave/blast)
{{ "doc_go[1:]" | doc }}
Workers
=======
{{ "Worker" | doc }}
{{ "Starter" | doc }}
Examples
========
For load testing:
```yaml
rate: 20000
workers: 1000
worker-type: "dummy"
payload-template:
method: "POST"
path: "/foo/?id={{"{{"}} rand_int 1 10000000 {{"}}"}}"
worker-template:
print: false
base: "https://{{"{{"}} .region {{"}}"}}.my-api.com"
min: 10
max: 20
worker-variants:
- region: "europe-west1"
- region: "us-east1"
```
For bulk API tasks:
```yaml
# data would usually be the filename of a local CSV file, or an object in a GCS bucket. However,
# for the purposes of this example, a CSV fragment is also accepted.
data: |
user_name,action
dave,subscribe
john,subscribe
pete,unsubscribe
jimmy,unsubscribe
resume: true
log: "out.log"
rate: 100
workers: 20
worker-type: "dummy"
payload-template:
method: "POST"
path: "/{{"{{"}} .user_name {{"}}"}}/{{"{{"}} .action {{"}}"}}/{{"{{"}} .type {{"}}"}}/"
worker-template:
print: true
base: "https://{{"{{"}} .region {{"}}"}}.my-api.com"
min: 250
max: 500
payload-variants:
- type: "email"
- type: "phone"
worker-variants:
- region: "europe-west1"
- region: "us-east1"
log-data:
- "user_name"
- "action"
log-output:
- "status"
```
Configuration options
=====================
data
----
{{ "Config.Data" | doc }}
log
---
{{ "Config.Log" | doc }}
resume
------
{{ "Config.Resume" | doc }}
rate
----
{{ "Config.Rate" | doc }}
workers
-------
{{ "Config.Workers" | doc }}
worker-type
-----------
{{ "Config.WorkerType" | doc }}
payload-template
----------------
{{ "Config.PayloadTemplate" | doc }}
Advanced configuration options
==============================
timeout
-------
{{ "Config.Timeout" | doc }}
headers
-------
{{ "Config.Headers" | doc }}
log-data
--------
{{ "Config.LogData" | doc }}
log-output
----------
{{ "Config.LogOutput" | doc }}
worker-template
---------------
{{ "Config.WorkerTemplate" | doc }}
worker-variants
---------------
{{ "Config.WorkerVariants" | doc }}
payload-variants
----------------
{{ "Config.PayloadVariants" | doc }}
Control by code
===============
The blaster package may be used to start blast from code without using the command. Here's a some
examples of usage:
{{ "ExampleBlaster_Start_batchJob" | example }}
{{ "ExampleBlaster_Start_loadTest" | example }}
To do
=====
- [ ] Adjust rate automatically in response to latency? PID controller?
- [ ] Only use part of file: part i of j parts