Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# Apache Camel Performance Tests

This project provides performance tests for Apache Camel.

## Running the Performance Tests

### Camel JMH

The performance tests located in the `camel-jmh` module can be run using the following command:

```bash
mvn -l camel-${version}-jmh-test.log -DargLine="-XX:+UseNUMA -Xmx4G -Xms4G -server" -Dcamel.version=${version} -Pjmh -Dtest=${TESTS} clean test
```

Where:
* `${version}` is the Apache Camel version to use.
* `${TESTS}` is a comma-separated list of tests to run (e.g., `AggregatorTest,ContentBasedRouterBodyTest`).

After running the tests, the results are stored in JMH JSON files (i.e.: `<test name>.jmh.json`).