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: mkdocs/docs/configuration.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -239,7 +239,7 @@ Use this format for additional properties:
239
239
240
240
Where:
241
241
242
-
-`{fs_scheme}` is the filesystem scheme (e.g., `s3`, `hdfs`, `gcs`, `adls`, `oss`, `file`)
242
+
-`{fs_scheme}` is the filesystem scheme (e.g., `s3`, `hdfs`, `gcs`, `adls`, `file`)
243
243
-`{parameter_name}` must match the exact parameter name expected by the PyArrow filesystem constructor
244
244
-`{value}` must be the correct type expected by the underlying filesystem (string, integer, boolean, etc.)
245
245
@@ -251,7 +251,6 @@ Where:
251
251
|`hdfs.`|[HadoopFileSystem](https://arrow.apache.org/docs/python/generated/pyarrow.fs.HadoopFileSystem.html)|`hdfs.replication=3`| Passed as `replication=3` to HadoopFileSystem |
252
252
|`gcs.`|[GcsFileSystem](https://arrow.apache.org/docs/python/generated/pyarrow.fs.GcsFileSystem.html)|`gcs.project_id=test`| Passed as `project_id='test'` to GcsFileSystem |
253
253
|`adls.`|[AzureFileSystem](https://arrow.apache.org/docs/python/generated/pyarrow.fs.AzureFileSystem.html)|`adls.account_name=foo`| Passed as `account_name=foo` to AzureFileSystem |
254
-
|`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 |
255
254
|`file.`|[LocalFileSystem](https://arrow.apache.org/docs/python/generated/pyarrow.fs.LocalFileSystem.html)|`file.use_mmap=true`| Passed as `use_mmap=True` to LocalFileSystem |
256
255
257
256
**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.
0 commit comments