Sometimes you have different ways to do an aggregation and you would like to compare the performance of the pipelines you came up with.
The script pipeCompare.js
allows you to do this: it will run each pipeline several times and print out some statistical information.
- download the script
pipeCompare.js
below - In the Mongo Shell, enable profiling and load the script:
use <db> // make sure you're on the correct database
db.setProfilingLevel(2) // enable profiling
load("[<path-to>/]pipeCompare.js")
This loads the config
object and the comparePipes()
and addPipe()
functions.
config = {
title: "", // you may set a title here
nbRuns: 10, // number of times each pipeline will be run
defaultColl: "", // default collection to run aggregate() on
printPipes: false, // include the pipelines in the output
pipes: [], // the pipelines, see below
}
Set config.title
, .nbRuns
, .defaultColl
to suit your needs
pipe1 = [ // unique name for each pipeline
... // the pipeline stages
]
addPipe(pipe1, "collection", "description")
where collection
is the name of the collection the aggregate() will act upon (if different from config.defaultColl
)
The description
is facultative (String)
Repeat this for each pipeline you want to include in the comparison.
comparePipes()
If you want to save the output in a file, put all the above steps (including the load()
) in a <script>.js
file and run it from the command line:
mongo <db> <script>.js > comparePipes.out
(For a nicely colored visualization in your editor, use > comparePipes.out.js
)