Skip to content

Commit 7a3d61f

Browse files
[load testing] adjust ES heap size (#101906)
* [load testing] increase es heap to 2g * update default simulation * [heap size] 4g * [heap size] 6g * [load testing] es heap size 8g Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
1 parent d44f9fe commit 7a3d61f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

x-pack/test/load/config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
3030
esTestCluster: {
3131
...xpackFunctionalTestsConfig.get('esTestCluster'),
3232
serverArgs: [...xpackFunctionalTestsConfig.get('esTestCluster.serverArgs')],
33+
esJavaOpts: '-Xms8g -Xmx8g',
3334
},
3435

3536
kbnTestServer: {

x-pack/test/load/runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const simulationPackage = 'org.kibanaLoadTest.simulation';
1818
const simulationFIleExtension = '.scala';
1919
const gatlingProjectRootPath: string =
2020
process.env.GATLING_PROJECT_PATH || resolve(REPO_ROOT, '../kibana-load-testing');
21-
const simulationEntry: string = process.env.GATLING_SIMULATIONS || 'DemoJourney';
21+
const simulationEntry: string = process.env.GATLING_SIMULATIONS || 'branch.DemoJourney';
2222

2323
if (!Fs.existsSync(gatlingProjectRootPath)) {
2424
throw createFlagError(

0 commit comments

Comments
 (0)