Skip to content

Commit

Permalink
revertig unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nsivabalan committed Oct 12, 2022
1 parent 2aa4bab commit 010d8d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
10 changes: 4 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ parameters:
default:
- 'hudi-common'
- 'hudi-flink-datasource/hudi-flink'
- 'hudi-flink-datasource/hudi-flink1.13.x'
- 'hudi-flink-datasource/hudi-flink1.14.x'
- name: job2Modules
type: object
default:
Expand Down Expand Up @@ -71,7 +73,7 @@ parameters:

variables:
BUILD_PROFILES: '-Dscala-2.11 -Dspark2.4 -Dflink1.14'
PLUGIN_OPTS: '-Dcheckstyle.skip=true -Drat.skip=true -Djacoco.skip=true -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn -DreuseForks=false'
PLUGIN_OPTS: '-Dcheckstyle.skip=true -Drat.skip=true -Djacoco.skip=true -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn'
MVN_OPTS_INSTALL: '-DskipTests $(BUILD_PROFILES) $(PLUGIN_OPTS)'
MVN_OPTS_TEST: '-fae -Pwarn-log $(BUILD_PROFILES) $(PLUGIN_OPTS)'
SPARK_VERSION: '2.4.4'
Expand Down Expand Up @@ -102,7 +104,7 @@ stages:
inputs:
mavenPomFile: 'pom.xml'
goals: 'test'
options: $(MVN_OPTS_TEST) -Punit-tests -pl $(JOB1_MODULES)
options: $(MVN_OPTS_TEST) -Punit-tests -pl $(JOB1_MODULES),hudi-client/hudi-spark-client
publishJUnitResults: false
jdkVersionOption: '1.8'
mavenOptions: '-Xmx4g'
Expand All @@ -119,7 +121,6 @@ stages:
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
displayName: Top 100 long-running testcases
- job: UT_FT_2
condition: false
displayName: FT client/spark-client
timeoutInMinutes: '150'
steps:
Expand All @@ -144,7 +145,6 @@ stages:
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
displayName: Top 100 long-running testcases
- job: UT_FT_3
condition: false
displayName: UT FT clients & cli & utilities & sync
timeoutInMinutes: '150'
steps:
Expand Down Expand Up @@ -178,7 +178,6 @@ stages:
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
displayName: Top 100 long-running testcases
- job: UT_FT_4
condition: false
displayName: UT FT other modules
timeoutInMinutes: '150'
steps:
Expand Down Expand Up @@ -212,7 +211,6 @@ stages:
grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100
displayName: Top 100 long-running testcases
- job: IT
condition: false
displayName: IT modules
timeoutInMinutes: '150'
steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,12 @@
import org.apache.hudi.common.table.HoodieTableMetaClient;
import org.apache.hudi.common.table.timeline.HoodieTimeline;

import org.junit.jupiter.api.Disabled;

import java.io.IOException;
import java.nio.file.Files;

/**
* Tests rocks db based incremental file system view sync {@link RocksDbBasedFileSystemView}.
*/
@Disabled
public class TestRocksDBBasedIncrementalFSViewSync extends TestIncrementalFSViewSync {

@Override
Expand Down

0 comments on commit 010d8d2

Please sign in to comment.