We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9beb635 commit f950296Copy full SHA for f950296
1 file changed
README.md
@@ -1,3 +1,19 @@
1
# Apache Camel Performance Tests
2
3
This project provides performance tests for Apache Camel.
4
+
5
+## Running the Performance Tests
6
7
+### Camel JMH
8
9
+The performance tests located in the `camel-jmh` module can be run using the following command:
10
11
+```bash
12
+mvn -l camel-${version}-jmh-test.log -DargLine="-XX:+UseNUMA -Xmx4G -Xms4G -server" -Dcamel.version=${version} -Pjmh -Dtest=${TESTS} clean test
13
+```
14
15
+Where:
16
+* `${version}` is the Apache Camel version to use.
17
+* `${TESTS}` is a comma-separated list of tests to run (e.g., `AggregatorTest,ContentBasedRouterBodyTest`).
18
19
+After running the tests, the results are stored in JMH JSON files (i.e.: `<test name>.jmh.json`).
0 commit comments