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 8787e27afa [core] Default value of 'cache.deletion-vectors.max-num' to
100_000
8787e27afa is described below
commit 8787e27afa07982482eff8514b098f1f0244bd96
Author: JingsongLi <[email protected]>
AuthorDate: Tue Oct 28 23:37:31 2025 +0800
[core] Default value of 'cache.deletion-vectors.max-num' to 100_000
---
docs/layouts/shortcodes/generated/catalog_configuration.html | 2 +-
paimon-api/src/main/java/org/apache/paimon/options/CatalogOptions.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/layouts/shortcodes/generated/catalog_configuration.html
b/docs/layouts/shortcodes/generated/catalog_configuration.html
index 49641d340e..fe5d4d41ab 100644
--- a/docs/layouts/shortcodes/generated/catalog_configuration.html
+++ b/docs/layouts/shortcodes/generated/catalog_configuration.html
@@ -34,7 +34,7 @@ under the License.
</tr>
<tr>
<td><h5>cache.deletion-vectors.max-num</h5></td>
- <td style="word-wrap: break-word;">500000</td>
+ <td style="word-wrap: break-word;">100000</td>
<td>Integer</td>
<td>Controls the maximum number of deletion vector meta that can
be cached.</td>
</tr>
diff --git
a/paimon-api/src/main/java/org/apache/paimon/options/CatalogOptions.java
b/paimon-api/src/main/java/org/apache/paimon/options/CatalogOptions.java
index 8cd80106a8..b729283fc3 100644
--- a/paimon-api/src/main/java/org/apache/paimon/options/CatalogOptions.java
+++ b/paimon-api/src/main/java/org/apache/paimon/options/CatalogOptions.java
@@ -139,7 +139,7 @@ public class CatalogOptions {
public static final ConfigOption<Integer> CACHE_DV_MAX_NUM =
key("cache.deletion-vectors.max-num")
.intType()
- .defaultValue(500_000)
+ .defaultValue(100_000)
.withDescription(
"Controls the maximum number of deletion vector
meta that can be cached.");