Skip to content

Commit 4b1ff31

Browse files
committed
lint
1 parent 669d024 commit 4b1ff31

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

mkdocs/docs/configuration.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -215,13 +215,10 @@ PyIceberg uses [S3FileSystem](https://arrow.apache.org/docs/python/generated/pya
215215

216216
#### PyArrow Specific Properties
217217

218-
<!-- markdown-link-check-disable -->
219-
220218
| Key | Example | Description |
221219
| ------------------------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
222220
| pyarrow.use-large-types-on-read | True | Use large PyArrow types i.e. [large_string](https://arrow.apache.org/docs/python/generated/pyarrow.large_string.html), [large_binary](https://arrow.apache.org/docs/python/generated/pyarrow.large_binary.html) and [large_list](https://arrow.apache.org/docs/python/generated/pyarrow.large_list.html) field types on table scans. The default value is True. |
223221

224-
<!-- markdown-link-check-enable-->
225222
#### Advanced FileSystem Configuration
226223

227224
When using `PyArrowFileIO`, you can **pass additional configuration properties directly to the underlying PyArrow filesystem implementations**. This feature enables you to use any PyArrow filesystem option without requiring explicit PyIceberg support.
@@ -248,8 +245,6 @@ Where:
248245

249246
##### Supported Prefixes and FileSystems
250247

251-
<!-- markdown-link-check-disable -->
252-
253248
| Property Prefix | FileSystem | Example | Description |
254249
|-----------------|------------------------------------------------------------------------------------------------------|-----------------------------|-----------------------------------------------------|
255250
| `s3.` | [S3FileSystem](https://arrow.apache.org/docs/python/generated/pyarrow.fs.S3FileSystem.html) | `s3.load_frequency=900` | Passed as `load_frequency=900` to S3FileSystem |
@@ -259,8 +254,6 @@ Where:
259254
| `oss.` | [S3FileSystem](https://arrow.apache.org/docs/python/generated/pyarrow.fs.S3FileSystem.html) | `oss.connect_timeout=30.0` | Passed as `connect_timeout=30.0` to S3FileSystem |
260255
| `file.` | [LocalFileSystem](https://arrow.apache.org/docs/python/generated/pyarrow.fs.LocalFileSystem.html) | `file.use_mmap=true` | Passed as `use_mmap=True` to LocalFileSystem |
261256

262-
<!-- markdown-link-check-enable -->
263-
264257
**Note:** Refer to the PyArrow documentation for each filesystem to understand the available parameters and their expected types. Property values are passed directly to PyArrow, so they must match the exact parameter names and types expected by the filesystem constructors.
265258

266259
## Location Providers

0 commit comments

Comments
 (0)