yihua commented on code in PR #19003:
URL: https://github.com/apache/hudi/pull/19003#discussion_r3410821455
##########
hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/action/clean/TestCleanerInsertAndCleanByVersions.java:
##########
@@ -133,6 +133,10 @@ private void testInsertAndCleanByVersions(
.withBulkInsertParallelism(PARALLELISM)
.withFinalizeWriteParallelism(PARALLELISM)
.withDeleteParallelism(PARALLELISM)
+ // #17714: enabling the consistency check makes this test slow on
macOS local file://. The cleaner's
+ // getFileStatus calls the guard's waitTillFileAppears, which misses
the translated path and burns the
+ // full ~25.2s backoff per deleted file. Does NOT reproduce on CI
(Linux), where the path resolves and
Review Comment:
Could we turn off this feature in tests, i.e. ,
`withConsistencyCheckEnabled(false)`, as the cloud storage already supports
strong consistency and this feature is no longer needed to be enabled by
deafult?
--
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]