Skip to content

Commit

Permalink
cache.manifest.small-file-threshold to 1 mb
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Aug 1, 2024
1 parent cc33525 commit 2c168a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</tr>
<tr>
<td><h5>cache.manifest.small-file-threshold</h5></td>
<td style="word-wrap: break-word;">512 kb</td>
<td style="word-wrap: break-word;">1 mb</td>
<td>MemorySize</td>
<td>Controls the threshold of small manifest file.</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public class CatalogOptions {
public static final ConfigOption<MemorySize> CACHE_MANIFEST_SMALL_FILE_THRESHOLD =
key("cache.manifest.small-file-threshold")
.memoryType()
.defaultValue(MemorySize.ofKibiBytes(512))
.defaultValue(MemorySize.ofMebiBytes(1))
.withDescription("Controls the threshold of small manifest file.");

public static final ConfigOption<MemorySize> CACHE_MANIFEST_MAX_MEMORY =
Expand Down

0 comments on commit 2c168a7

Please sign in to comment.