Skip to content

Commit 77c4014

Browse files
committed
fix benchmarks
1 parent db47396 commit 77c4014

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

test/benchmarks/mongoBench/suites/parallelBench.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ async function gridfsMultiFileDownload() {
115115
*/
116116
function makeCSOTParallelBenchmarks(suite) {
117117
return suite
118-
.benchmark('ldjsonMultiFileUpload', benchmark =>
118+
.benchmark('ldjsonMultiFileUpload_timeoutMS_0', benchmark =>
119119
// https://github.com/mongodb/specifications/blob/master/source/benchmarking/benchmarking.rst#ldjson-multi-file-import
120120
benchmark
121121
.taskSize(565)
@@ -130,7 +130,7 @@ function makeCSOTParallelBenchmarks(suite) {
130130
.teardown(dropDb)
131131
.teardown(disconnectClient)
132132
)
133-
.benchmark('ldjsonMultiFileExport', benchmark =>
133+
.benchmark('ldjsonMultiFileExport_timeoutMS_0', benchmark =>
134134
// https://github.com/mongodb/specifications/blob/master/source/benchmarking/benchmarking.rst#ldjson-multi-file-export
135135
benchmark
136136
.taskSize(565)
@@ -151,7 +151,7 @@ function makeCSOTParallelBenchmarks(suite) {
151151
})
152152
.teardown(disconnectClient)
153153
)
154-
.benchmark('gridfsMultiFileUpload', benchmark =>
154+
.benchmark('gridfsMultiFileUpload_timeoutMS_0', benchmark =>
155155
// https://github.com/mongodb/specifications/blob/master/source/benchmarking/benchmarking.rst#gridfs-multi-file-upload
156156
benchmark
157157
.taskSize(262.144)
@@ -172,7 +172,7 @@ function makeCSOTParallelBenchmarks(suite) {
172172
.teardown(dropDb)
173173
.teardown(disconnectClient)
174174
)
175-
.benchmark('gridfsMultiFileDownload', benchmark =>
175+
.benchmark('gridfsMultiFileDownload_timeoutMS_0', benchmark =>
176176
// https://github.com/mongodb/specifications/blob/master/source/benchmarking/benchmarking.rst#gridfs-multi-file-download
177177
benchmark
178178
.taskSize(262.144)
@@ -199,7 +199,7 @@ function makeCSOTParallelBenchmarks(suite) {
199199

200200
function makeParallelBenchmarks(suite) {
201201
return suite
202-
.benchmark('ldjsonMultiFileUpload_timeoutMS_0', benchmark =>
202+
.benchmark('ldjsonMultiFileUpload', benchmark =>
203203
// https://github.com/mongodb/specifications/blob/master/source/benchmarking/benchmarking.rst#ldjson-multi-file-import
204204
benchmark
205205
.taskSize(565)
@@ -214,7 +214,7 @@ function makeParallelBenchmarks(suite) {
214214
.teardown(dropDb)
215215
.teardown(disconnectClient)
216216
)
217-
.benchmark('ldjsonMultiFileExport_timeoutMS_0', benchmark =>
217+
.benchmark('ldjsonMultiFileExport', benchmark =>
218218
// https://github.com/mongodb/specifications/blob/master/source/benchmarking/benchmarking.rst#ldjson-multi-file-export
219219
benchmark
220220
.taskSize(565)
@@ -235,7 +235,7 @@ function makeParallelBenchmarks(suite) {
235235
})
236236
.teardown(disconnectClient)
237237
)
238-
.benchmark('gridfsMultiFileUpload_timeoutMS_0', benchmark =>
238+
.benchmark('gridfsMultiFileUpload', benchmark =>
239239
// https://github.com/mongodb/specifications/blob/master/source/benchmarking/benchmarking.rst#gridfs-multi-file-upload
240240
benchmark
241241
.taskSize(262.144)
@@ -256,7 +256,7 @@ function makeParallelBenchmarks(suite) {
256256
.teardown(dropDb)
257257
.teardown(disconnectClient)
258258
)
259-
.benchmark('gridfsMultiFileDownload_timeoutMS_0', benchmark =>
259+
.benchmark('gridfsMultiFileDownload', benchmark =>
260260
// https://github.com/mongodb/specifications/blob/master/source/benchmarking/benchmarking.rst#gridfs-multi-file-download
261261
benchmark
262262
.taskSize(262.144)

0 commit comments

Comments
 (0)