mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix: Reduce variability in benchmarks (no-changelog) (#10606)
This commit is contained in:
parent
6c1f237775
commit
eb074c04c9
|
@ -21,8 +21,8 @@ variable "ssh_public_key" {
|
||||||
|
|
||||||
variable "vm_size" {
|
variable "vm_size" {
|
||||||
description = "VM Size"
|
description = "VM Size"
|
||||||
# 4 vCPUs, 16 GiB memory
|
# 8 vCPUs, 32 GiB memory
|
||||||
default = "Standard_DC4s_v2"
|
default = "Standard_DC8_v2"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "tags" {
|
variable "tags" {
|
||||||
|
|
|
@ -45,7 +45,7 @@ export function handleSummary(data) {
|
||||||
const augmentedTestScriptPath = this.augmentSummaryScript(scenario, scenarioRunName);
|
const augmentedTestScriptPath = this.augmentSummaryScript(scenario, scenarioRunName);
|
||||||
const runDirPath = path.dirname(augmentedTestScriptPath);
|
const runDirPath = path.dirname(augmentedTestScriptPath);
|
||||||
|
|
||||||
const flags: K6CliFlag[] = [['--quiet'], ['--duration', '1m'], ['--vus', '5']];
|
const flags: K6CliFlag[] = [['--quiet'], ['--duration', '3m'], ['--vus', '5']];
|
||||||
|
|
||||||
if (this.opts.k6ApiToken) {
|
if (this.opts.k6ApiToken) {
|
||||||
flags.push(['--out', 'cloud']);
|
flags.push(['--out', 'cloud']);
|
||||||
|
|
Loading…
Reference in a new issue