Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,6 @@ limitations under the License.
<groupId>org.apache.flink</groupId>
<artifactId>flink-metrics-dropwizard</artifactId>
<version>${flink.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,15 +238,13 @@ public void testSyncWholeDatabase() throws Exception {
Path hudiCdcConnector = TestUtils.getResource("hudi-cdc-pipeline-connector.jar");
Path hadoopJar = TestUtils.getResource("flink-shade-hadoop.jar");
Path hadoopCompatibilityJar = TestUtils.getResource("flink-hadoop-compatibility.jar");
Path dropMetricsJar = TestUtils.getResource("flink-metrics-dropwizard.jar");
Path flinkParquet = TestUtils.getResource("flink-parquet.jar");
JobID pipelineJobID =
submitPipelineJob(
pipelineJob,
hudiCdcConnector,
hadoopJar,
hadoopCompatibilityJar,
dropMetricsJar,
flinkParquet);
waitUntilJobRunning(pipelineJobID, Duration.ofSeconds(60));
LOG.info("Pipeline job is running");
Expand Down Expand Up @@ -572,7 +570,6 @@ public void testStopAndRestartFromSavepoint() throws Exception {
Path hudiHadoopCommonJar = TestUtils.getResource("hudi-hadoop-common.jar");
Path hadoopJar = TestUtils.getResource("flink-shade-hadoop.jar");
Path hadoopCompatibilityJar = TestUtils.getResource("flink-hadoop-compatibility.jar");
Path dropMetricsJar = TestUtils.getResource("flink-metrics-dropwizard.jar");
Path flinkParquet = TestUtils.getResource("flink-parquet.jar");

// Start the pipeline job
Expand All @@ -584,7 +581,6 @@ public void testStopAndRestartFromSavepoint() throws Exception {
hudiHadoopCommonJar,
hadoopJar,
hadoopCompatibilityJar,
dropMetricsJar,
flinkParquet);
waitUntilJobRunning(pipelineJobID1, Duration.ofSeconds(60));

Expand Down Expand Up @@ -662,7 +658,6 @@ public void testStopAndRestartFromSavepoint() throws Exception {
hudiHadoopCommonJar,
hadoopJar,
hadoopCompatibilityJar,
dropMetricsJar,
flinkParquet);
waitUntilJobRunning(pipelineJobID2, Duration.ofSeconds(60));
LOG.info("Job restarted from savepoint");
Expand Down
Loading