This is an automated email from the ASF dual-hosted git repository. shenlin pushed a commit to branch benchmark in repository https://gitbox.apache.org/repos/asf/rocketmq-eventbridge.git
commit 5259e644aa1797c3b7e3d5003c0573383eb9775b Author: lkm <[email protected]> AuthorDate: Sun Jul 2 15:55:28 2023 +0800 添加基准测试 --- .../runtime/src/main/resources/runtime.properties | 4 ++- pom.xml | 40 +++++++++++----------- start/src/main/resources/application.properties | 4 ++- 3 files changed, 26 insertions(+), 22 deletions(-) diff --git a/adapter/runtime/src/main/resources/runtime.properties b/adapter/runtime/src/main/resources/runtime.properties index b99c83d..7730094 100644 --- a/adapter/runtime/src/main/resources/runtime.properties +++ b/adapter/runtime/src/main/resources/runtime.properties @@ -24,4 +24,6 @@ runtimer.pluginpath=/Users/Local/eventbridge/plugin runtimer.storePathRootDir=/Users/Local/eventbridge/store ## listener listener.eventQueue.threshold=50000 -listener.targetQueue.threshold=50000 \ No newline at end of file +listener.targetQueue.threshold=50000 + +rumtimer.benchmark.enable=true \ No newline at end of file diff --git a/pom.xml b/pom.xml index f711003..6eaac50 100644 --- a/pom.xml +++ b/pom.xml @@ -376,26 +376,26 @@ </execution> </executions> </plugin> -<!-- <plugin>--> -<!-- <artifactId>maven-checkstyle-plugin</artifactId>--> -<!-- <version>2.17</version>--> -<!-- <executions>--> -<!-- <execution>--> -<!-- <id>verify</id>--> -<!-- <phase>verify</phase>--> -<!-- <configuration>--> -<!-- <configLocation>style/rmq_checkstyle.xml</configLocation>--> -<!-- <encoding>UTF-8</encoding>--> -<!-- <consoleOutput>true</consoleOutput>--> -<!-- <failsOnError>true</failsOnError>--> -<!-- <includeTestSourceDirectory>false</includeTestSourceDirectory>--> -<!-- </configuration>--> -<!-- <goals>--> -<!-- <goal>check</goal>--> -<!-- </goals>--> -<!-- </execution>--> -<!-- </executions>--> -<!-- </plugin>--> + <plugin> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>2.17</version> + <executions> + <execution> + <id>verify</id> + <phase>verify</phase> + <configuration> + <configLocation>style/rmq_checkstyle.xml</configLocation> + <encoding>UTF-8</encoding> + <consoleOutput>true</consoleOutput> + <failsOnError>true</failsOnError> + <includeTestSourceDirectory>false</includeTestSourceDirectory> + </configuration> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> diff --git a/start/src/main/resources/application.properties b/start/src/main/resources/application.properties index 5911b30..27d270c 100644 --- a/start/src/main/resources/application.properties +++ b/start/src/main/resources/application.properties @@ -38,4 +38,6 @@ runtime.pluginpath=~/eventbridge/plugin ## log app.name=rocketmqeventbridge log.level=INFO -log.path=~/logs \ No newline at end of file +log.path=~/logs + +rumtimer.benchmark.enable=true \ No newline at end of file
