"camunda-qa-performance-tests-engine" module will work for v7.11 to generate performance results?

I was using camunda spring boot starters(rest api) and try to do performance tests using the below module.

<artifactId>camunda-qa-performance-tests-engine</artifactId>

I found the module requires >7.11 camunda dependencies, how can i run this module with camunda 7.11 stable version? Also i want to use own bpmn to provide performance benchmark between MySQL and Postgres database.

<parent>
    <groupId>org.camunda.bpm.qa</groupId>
    <artifactId>camunda-qa</artifactId>
    <version>7.12.0-SNAPSHOT</version>
</parent>

@Ingo_Richtsmeier when i dig into the code, i found you have built features in this module. Can you help how to use own bpmn to provide performance benchmark between MySQL and Postgres database?

Also, I was getting below error:

Failure to transfer org.codehaus.plexus:plexus-archiver:pom:2.4.4 from Central Repository: was cached in the local repository, resolution will not be
reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.codehaus.plexus:plexus-archiver:pom:2.4.4 from/to
central (Central Repository:): Connection reset

Hi @aravindhrs,

that’s a long time ago. I think you should just check out the code tagged with 7.11 from the git repo and follow this readme: https://github.com/camunda/camunda-bpm-platform/tree/master/qa/performance-tests-engine

I’ve modeled a process and run the benchmark with this test class:

package com.camunda.performanceContest.camunda;

import org.camunda.bpm.engine.test.Deployment;
import org.camunda.bpm.qa.performance.engine.junit.ProcessEnginePerformanceTestCase;
import org.camunda.bpm.qa.performance.engine.steps.StartProcessInstanceStep;
import org.junit.Test;

public class ServiceTaskPerformanceTest extends ProcessEnginePerformanceTestCase {
	
	@Deployment(resources="ServiceTaskPerformanceTest.oneTask.bpmn")
	@Test
	public void oneTask() {
		performanceTest()
	      .step(new StartProcessInstanceStep(engine, "serviceProcess"))
	    .run();
	}

}

Hope this helps, Ingo

Thanks @Ingo_Richtsmeier, i will keep posted on the updates