ehurheap commented on issue #6194:
URL: https://github.com/apache/hudi/issues/6194#issuecomment-1204294204
Confirm that the list of files is empty:
`List of files under partition: () => `
I did some debugging and this list seems to be empty because the `timeline`
in each of the relevant HoodieFileGroups is empty:
From HoodieFileGroup.java:
```
public Stream<FileSlice> getAllFileSlices() {
if (!timeline.empty()) {
return fileSlices.values().stream().filter(this::isFileSliceCommitted);
}
return Stream.empty();
}
```
Is there some assumption or rule that `repair deduplicate `can only be run
for certain conditions? For example, before compaction has happened?
--
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]