You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/program-api/file-cache.md
+34-2Lines changed: 34 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,9 @@
1
1
---
2
2
title: "Local Disk Cache"
3
-
weight: 7
3
+
weight: 8
4
4
type: docs
5
5
aliases:
6
+
- /program-api/file-cache.html
6
7
- /pypaimon/file-cache.html
7
8
---
8
9
<!--
@@ -26,7 +27,7 @@ under the License.
26
27
27
28
# Local Disk Cache
28
29
29
-
When reading files from remote storage (S3, OSS, HDFS, etc.), each seek+read goes over the network. PyPaimon provides a block-level local disk cache that transparently caches file reads on local disk, significantly reducing remote I/O for repeated access patterns.
30
+
When reading files from remote storage (S3, OSS, HDFS, etc.), each seek+read goes over the network. Paimon provides a block-level local disk cache that transparently caches file reads on local disk, significantly reducing remote I/O for repeated access patterns.
30
31
31
32
## Cached File Types
32
33
@@ -46,6 +47,33 @@ All file types can be added to the whitelist. The default whitelist is `meta,glo
46
47
47
48
Use `table.copy()` to pass cache options as dynamic parameters:
0 commit comments