kavya685 commented on issue #16448: URL: https://github.com/apache/hudi/issues/16448#issuecomment-4504819552
Hi @danny0405! Here's my progress: **Fixed and verified passing:** - TestTableCommand ✅ (6 tests) - TestRollbacksCommand ✅ (2 tests) - TestSavepointsCommand ✅ (2 tests) - TestStatsCommand ✅ (2 tests) - TestDiffCommand ✅ (1 test) - TestHoodieLogFileCommand ✅ (3 tests) - TestUpgradeDowngradeCommand ✅ (19 tests) Root cause for fixed tests: tables were being created with version 1 but Hudi 1.x requires version 6+. Fixed by using HoodieTableVersion.current().versionCode() consistently. **Still failing (needs guidance):** - TestRestoresCommand — HoodieRestore Failed to restore to 105 - TestRepairsCommand — partition file count mismatches - TestCommitsCommand — testInflightCommand (V1 instant file format issue) - TestCompactionCommand — IOException reading archived compaction metadata - TestCleansCommand — partition ordering mismatch - TestArchivedCommitsCommand — archived commits returning empty - TestArchiveCommand — trigger archival command returning false - TestFileSystemViewCommand — testShowLatestFileSlices returning false Before: Tests run: 100, Failures: 14, Errors: 24 After: Tests run: 100, Failures: 14, Errors: 2 Could you guide me on the remaining failures? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
