example.scenario.js.system.copy_using_input_path_test.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoose-base Show documentation
Show all versions of mongoose-base Show documentation
Mongoose is a high-load storage performance testing tool
var sharedConfig = {
"storage": {
"namespace": "ns1"
}
};
PreconditionLoad
.config(sharedConfig)
.config(
{
"item": {
"output": {
"path": ITEM_SRC_PATH
}
},
"load": {
"op": {
"limit": {
"count": 100000
}
},
"step": {
"limit": {
"size": "1GB",
"time": "30s"
}
}
}
}
)
.run();
Load
.config(sharedConfig)
.config(
{
"item": {
"input": {
"path": ITEM_SRC_PATH
},
"output": {
"path": ITEM_DST_PATH
}
},
"load" : {
"step" : {
"limit" : {
"time" : "60s"
}
}
}
}
)
.run();
© 2015 - 2025 Weber Informatics LLC | Privacy Policy