Skip to content

[Hudi 8470] Investigate test failure 1 #13325

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Prev Previous commit
Next Next commit
debug logs
  • Loading branch information
nsivabalan committed May 21, 2025
commit ac08f3ea3e167547667d77fed20087e003408305
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,7 @@ public HoodieWriteConfig.Builder getConfigBuilder(String schemaStr, HoodieIndex.
.withIndexConfig(HoodieIndexConfig.newBuilder().withIndexType(indexType).build())
.withEmbeddedTimelineServerEnabled(true).withFileSystemViewConfig(FileSystemViewStorageConfig.newBuilder()
.withEnableBackupForRemoteFileSystemView(false) // Fail test if problem connecting to timeline-server
.withRemoteServerPort(timelineServicePort).build())
.withEmbeddedTimelineServerPort(timelineServicePort);
.withRemoteServerPort(timelineServicePort).build());
if (StringUtils.nonEmpty(schemaStr)) {
builder.withSchema(schemaStr);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,15 @@ protected HoodieTableType getTableType() {

public static List<Arguments> tableTypeMetadataFSVTypeArgs() {
List<Arguments> testCases = new ArrayList<>();
for (HoodieTableType tableType : HoodieTableType.values()) {
for (boolean enableMdt : Arrays.asList(true, false)) {
for (FileSystemViewStorageType viewStorageType : Arrays.asList(FileSystemViewStorageType.MEMORY, FileSystemViewStorageType.SPILLABLE_DISK)) {
for (int writerVersion : Arrays.asList(6, 8)) {
testCases.add(Arguments.of(tableType, enableMdt, viewStorageType, writerVersion));
}
//for (HoodieTableType tableType : HoodieTableType.values()) {
for (boolean enableMdt : Arrays.asList(true)) {
for (FileSystemViewStorageType viewStorageType : Arrays.asList(FileSystemViewStorageType.MEMORY)) {
for (int writerVersion : Arrays.asList(6, 8)) {
testCases.add(Arguments.of(HoodieTableType.MERGE_ON_READ, enableMdt, viewStorageType, writerVersion));
}
}
}
//}
return testCases;
}

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,7 @@ rootLogger.level = warn
# Root logger referring to console appender
rootLogger.appenderRef.stdout.ref = CONSOLE

logger.hudi.name = org.apache.hudi
logger.hudi.level = debug
logger.hbase.name = org.apache.hadoop.hbase
logger.hbase.level = error
Loading