hgudladona commented on issue #13356:
URL: https://github.com/apache/hudi/issues/13356#issuecomment-2960793667
We are starting to test this and will get back what we find. My suspicion is
that we are hitting this condition more often. If the remote client view is
always behind, and the view in the timeline server is ahed, this condition will
cause unnecessary trashing without any meaningful outcome. If this is the case
need to figure if there is a peek operation we can do that can ensure the
in-memory timeline matches the file system for subsequent calls without a full
reload
```
// refresh if timeline hash mismatches
if (!localTimelineHash.equals(timelineHashFromClient)) {
return true;
}
```
--
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]