-
Notifications
You must be signed in to change notification settings - Fork 244
/
Copy pathdatabase.benchmarks.yml
331 lines (308 loc) · 7.26 KB
/
database.benchmarks.yml
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
# Examples:
# --config plaintext.benchmarks.yml --scenario plaintext --profile aspnet-physical
# --config benchmarks.compose.yml --scenario fortunes --profile aspnet-physical
imports:
- https://raw.githubusercontent.com/dotnet/crank/master/src/Microsoft.Crank.Jobs.Wrk/wrk.yml
jobs:
aspnetbenchmarks:
source:
repository: https://github.com/aspnet/benchmarks.git
branchOrCommit: master
project: src/Benchmarks/Benchmarks.csproj
readyStateText: Application started.
variables:
server: Kestrel
transport: Sockets
serverScheme: http
arguments: "--nonInteractive true --scenarios {{scenario}} --urls {{serverScheme}}://{{serverAddress}}:{{serverPort}} --server {{server}} --kestrelTransport {{transport}} --protocol {{protocol}}"
environmentVariables:
database: PostgresQL
connectionString: Server={{databaseServer}};Database=hello_world;User Id=benchmarkdbuser;Password=benchmarkdbpass;Maximum Pool Size=256;NoResetOnClose=true;Enlist=false;Max Auto Prepare=4
postgresql:
source:
repository: https://github.com/TechEmpower/FrameworkBenchmarks.git
branchOrCommit: master
dockerFile: toolset/databases/postgres/postgres.dockerfile
dockerImageName: postgres_te
dockerContextDirectory: toolset/databases/postgres
readyStateText: ready to accept connections
noClean: true
scenarios:
fortunes:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbFortunesRaw
load:
job: wrk
variables:
presetHeaders: html
path: /fortunes/raw
fortunes_ef:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbFortunesEf
load:
job: wrk
variables:
presetHeaders: html
path: /fortunes/ef
fortunes_ef_mvc_https:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: MvcDbFortunesEf
protocol: https
serverScheme: https
load:
job: wrk
variables:
presetHeaders: html
path: /mvc/fortunes/ef
serverScheme: https
fortunes_dapper:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbFortunesDapper
load:
job: wrk
variables:
presetHeaders: html
path: /fortunes/dapper
single_query:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbSingleQueryRaw
load:
job: wrk
variables:
presetHeaders: json
path: /db/raw
single_query_ef:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbSingleQueryRaw
load:
job: wrk
variables:
presetHeaders: json
path: /db/ef
single_query_dapper:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbSingleQueryDapper
load:
job: wrk
variables:
presetHeaders: json
path: /db/dapper
multiple_queries:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbMultiQueryRaw
load:
job: wrk
variables:
presetHeaders: json
path: /queries/raw?queries=20
multiple_queries_ef:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbMultiQueryEf
load:
job: wrk
variables:
presetHeaders: json
path: /queries/ef?queries=20
multiple_queries_dapper:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbMultiQueryDapper
load:
job: wrk
variables:
presetHeaders: json
path: /queries/dapper?queries=20
updates:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbMultiUpdateRaw
load:
job: wrk
variables:
presetHeaders: json
path: /updates/raw?queries=20
updates_ef:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbMultiUpdateEf
load:
job: wrk
variables:
presetHeaders: json
path: /updates/ef?queries=20
updates_dapper:
db:
job: postgresql
application:
job: aspnetbenchmarks
variables:
scenario: DbMultiUpdateDapper
load:
job: wrk
variables:
presetHeaders: json
path: /updates/dapper?queries=20
profiles:
local:
variables:
serverPort: 5000
serverAddress: localhost
jobs:
db:
endpoints:
- http://localhost:5010
application:
endpoints:
- http://localhost:5010
variables:
databaseServer: localhost
load:
endpoints:
- http://localhost:5010
aspnet-citrine-lin:
variables:
serverPort: 5000
serverAddress: 10.0.0.102
cores: 28
jobs:
db:
endpoints:
- http://asp-citrine-db:5001
application:
endpoints:
- http://asp-citrine-lin:5001
variables:
databaseServer: 10.0.0.103
load:
endpoints:
- http://asp-citrine-load:5001
aspnet-citrine-win:
variables:
serverPort: 5000
serverAddress: 10.0.0.104
cores: 28
jobs:
db:
endpoints:
- http://asp-citrine-load:5001
application:
endpoints:
- http://asp-citrine-win:5001
variables:
databaseServer: 10.0.0.105
load:
endpoints:
- http://asp-citrine-db:5001
aspnet-citrine-arm:
variables:
serverPort: 5000
serverAddress: 10.0.0.107
cores: 32
jobs:
db:
endpoints:
- http://asp-citrine-db:5001
application:
endpoints:
- http://asp-citrine-arm:5001
variables:
databaseServer: 10.0.0.103
load:
endpoints:
- http://asp-citrine-load:5001
aspnet-citrine-amd:
variables:
serverPort: 5000
serverAddress: 10.0.0.106
cores: 48
jobs:
db:
endpoints:
- http://asp-citrine-load:5001
application:
endpoints:
- http://asp-citrine-amd:5001
variables:
databaseServer: 10.0.0.105
load:
endpoints:
- http://asp-citrine-db:5001
aspnet-perf-lin:
variables:
serverPort: 5000
serverAddress: 10.0.0.102
cores: 12
jobs:
db:
endpoints:
- http://asp-perf-db:5001
application:
endpoints:
- http://asp-perf-lin:5001
variables:
databaseServer: 10.0.0.103
load:
endpoints:
- http://asp-perf-load:5001
aspnet-perf-win:
variables:
serverPort: 5000
serverAddress: 10.0.0.110
cores: 12
jobs:
db:
endpoints:
- http://asp-perf-load:5001
application:
endpoints:
- http://asp-perf-win:5001
variables:
databaseServer: 10.0.0.104
load:
endpoints:
- http://asp-perf-db:5001