This is an automated email from the ASF dual-hosted git repository. danny0405 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push: new baea182cfc7 [HUDI-9239] Fix the bug of Spark Cache not releasing cleanly (#13050) baea182cfc7 is described below commit baea182cfc7691fa2581051d9253125d68d8a631 Author: YueZhang <69956021+zhangyue19921...@users.noreply.github.com> AuthorDate: Fri Mar 28 16:04:13 2025 +0800 [HUDI-9239] Fix the bug of Spark Cache not releasing cleanly (#13050) --- hudi-common/src/main/java/org/apache/hudi/common/data/HoodieData.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hudi-common/src/main/java/org/apache/hudi/common/data/HoodieData.java b/hudi-common/src/main/java/org/apache/hudi/common/data/HoodieData.java index e65a8f426bd..6a00341d645 100644 --- a/hudi-common/src/main/java/org/apache/hudi/common/data/HoodieData.java +++ b/hudi-common/src/main/java/org/apache/hudi/common/data/HoodieData.java @@ -23,6 +23,7 @@ import org.apache.hudi.common.engine.HoodieEngineContext; import org.apache.hudi.common.function.SerializableFunction; import org.apache.hudi.common.function.SerializablePairFunction; import org.apache.hudi.common.util.collection.Pair; +import org.apache.hudi.storage.StoragePath; import java.io.Serializable; import java.util.Iterator; @@ -227,7 +228,7 @@ public interface HoodieData<T> extends Serializable { class HoodieDataCacheKey implements Serializable { public static HoodieDataCacheKey of(String basePath, String instantTime) { - return new HoodieDataCacheKey(basePath, instantTime); + return new HoodieDataCacheKey(new StoragePath(basePath).toString(), instantTime); } private final String basePath;