This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new f680760be2 [hotfix] Adjust maximumSize to 1000 in RESTTokenFileIO
f680760be2 is described below

commit f680760be283429bc9d825943995ae8efc53a478
Author: JingsongLi <[email protected]>
AuthorDate: Sun Jun 22 15:00:39 2025 +0800

    [hotfix] Adjust maximumSize to 1000 in RESTTokenFileIO
---
 paimon-core/src/main/java/org/apache/paimon/rest/RESTTokenFileIO.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/paimon-core/src/main/java/org/apache/paimon/rest/RESTTokenFileIO.java 
b/paimon-core/src/main/java/org/apache/paimon/rest/RESTTokenFileIO.java
index 2151bd7a8a..cedd33f6ad 100644
--- a/paimon-core/src/main/java/org/apache/paimon/rest/RESTTokenFileIO.java
+++ b/paimon-core/src/main/java/org/apache/paimon/rest/RESTTokenFileIO.java
@@ -62,7 +62,7 @@ public class RESTTokenFileIO implements FileIO {
     private static final Cache<RESTToken, FileIO> FILE_IO_CACHE =
             Caffeine.newBuilder()
                     .expireAfterAccess(30, TimeUnit.MINUTES)
-                    .maximumSize(100)
+                    .maximumSize(1000)
                     .removalListener(
                             (ignored, value, cause) -> 
IOUtils.closeQuietly((FileIO) value))
                     .scheduler(

Reply via email to