1
0

TestMergeOnReadTable must use embedded timeline server

This commit is contained in:
Balaji Varadarajan
2019-06-12 18:28:49 -07:00
committed by vinoth chandar
parent 04fc86b43d
commit 136f8478a3
2 changed files with 2 additions and 56 deletions

View File

@@ -733,6 +733,7 @@ public class TestMergeOnReadTable {
.withAutoCommit(false).withAssumeDatePartitioning(true).withCompactionConfig(HoodieCompactionConfig.newBuilder()
.compactionSmallFileSize(1 * 1024).withInlineCompaction(false)
.withMaxNumDeltaCommitsBeforeCompaction(1).build())
.withEmbeddedTimelineServerEnabled(true)
.withStorageConfig(HoodieStorageConfig.newBuilder().limitFileSize(1 * 1024).build())
.forTable("test-trip-table").build();
}
@@ -1310,6 +1311,7 @@ public class TestMergeOnReadTable {
HoodieCompactionConfig.newBuilder().compactionSmallFileSize(1024 * 1024 * 1024).withInlineCompaction(false)
.withMaxNumDeltaCommitsBeforeCompaction(1).build())
.withStorageConfig(HoodieStorageConfig.newBuilder().limitFileSize(1024 * 1024 * 1024).build())
.withEmbeddedTimelineServerEnabled(true)
.forTable("test-trip-table")
.withIndexConfig(HoodieIndexConfig.newBuilder().withIndexType(indexType).build());
}