DBZ-7633 Rename module to microbenchmark engine

This commit is contained in:
Vojtech Juranek 2024-04-08 13:36:07 +02:00 committed by Vojtěch Juránek
parent daa0acbd2d
commit 3a6f1ead03
4 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@
<relativePath>../debezium-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>debezium-microbenchmark-embedded</artifactId>
<artifactId>debezium-microbenchmark-engine</artifactId>
<name>Debezium Embedded Engine Microbenchmark Tests</name>
<packaging>jar</packaging>

View File

@ -3,7 +3,7 @@
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.debezium.performance.embedded;
package io.debezium.performance.engine;
import java.io.IOException;
import java.lang.management.ManagementFactory;
@ -289,12 +289,12 @@ private static String resolveDataDir() {
@State(Scope.Thread)
public static class EmbeddedEngineEndToEndPerfTest extends DebeziumEndToEndPerfTest {
public String getBaseTableName() {
return BASE_TABLE_NAME + "_embedded";
return BASE_TABLE_NAME + "_engine";
}
public DebeziumEngine createEngine() {
Configuration config = defaultConnectorConfig()
.with(PostgresConnectorConfig.SLOT_NAME, "embedded_" + eventCount)
.with(PostgresConnectorConfig.SLOT_NAME, "engine_" + eventCount)
// .with(EmbeddedEngineConfig.WAIT_FOR_COMPLETION_BEFORE_INTERRUPT_MS, CommonConnectorConfig.EXECUTOR_SHUTDOWN_TIMEOUT_SEC)
.build();
Properties configProps = addSmtConfig(config);

View File

@ -179,7 +179,7 @@
<module>debezium-connector-mongodb</module>
<module>debezium-connector-sqlserver</module>
<module>debezium-connector-oracle</module>
<module>debezium-microbenchmark-embedded</module>
<module>debezium-microbenchmark-engine</module>
<module>debezium-microbenchmark</module>
<module>debezium-microbenchmark-oracle</module>
<module>debezium-quarkus-outbox-common</module>