1
0

[HUDI-3091] Making SIMPLE index as the default index type (#4659)

* [HUDI-3091] Making SIMPLE index as the default index type

* Fixing tests

* Traiging timeouts

* disable SIMPLE index for bootstrap tests

* removing test run start and end log statements

* Fixing simple index parallellism for some tests

* Disabling failing test for now

* reverting previous disable

* Reverting all changes

* fixing azure pipeline script
This commit is contained in:
Sivabalan Narayanan
2022-02-08 04:32:18 -05:00
committed by GitHub
parent ab73047958
commit 6a32cfe020
3 changed files with 4 additions and 4 deletions

View File

@@ -82,7 +82,7 @@ public class TestHoodieWriteConfig {
public void testDefaultIndexAccordingToEngineType() {
testEngineSpecificConfig(HoodieWriteConfig::getIndexType,
constructConfigMap(
EngineType.SPARK, HoodieIndex.IndexType.BLOOM,
EngineType.SPARK, HoodieIndex.IndexType.SIMPLE,
EngineType.FLINK, HoodieIndex.IndexType.INMEMORY,
EngineType.JAVA, HoodieIndex.IndexType.INMEMORY));
}