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
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ Iceberg tables support table properties to configure table behavior.
64
64
|`write.parquet.dict-size-bytes`| Size in bytes | 2MB | Set the dictionary page size limit per row group |
65
65
|`write.metadata.previous-versions-max`| Integer | 100 | The max number of previous version metadata files to keep before deleting after commit. |
66
66
|`write.metadata.delete-after-commit.enabled`| Boolean | False | Whether to automatically delete old *tracked* metadata files after each table commit. It will retain a number of the most recent metadata files, which can be set using property `write.metadata.previous-versions-max`. |
67
-
|`write.object-storage.enabled`| Boolean |True| Enables the [`ObjectStoreLocationProvider`](configuration.md#object-store-location-provider) that adds a hash component to file paths. Note: the default value of `True` differs from Iceberg's Java implementation|
67
+
|`write.object-storage.enabled`| Boolean |False| Enables the [`ObjectStoreLocationProvider`](configuration.md#object-store-location-provider) that adds a hash component to file paths. |
68
68
|`write.object-storage.partitioned-paths`| Boolean | True | Controls whether [partition values are included in file paths](configuration.md#partition-exclusion) when object storage is enabled |
69
69
|`write.py-location-provider.impl`| String of form `module.ClassName`| null | Optional, [custom `LocationProvider`](configuration.md#loading-a-custom-location-provider) implementation |
70
70
|`write.data.path`| String pointing to location |`{metadata.location}/data`| Sets the location under which data is written. |
@@ -213,8 +213,7 @@ Both data file and metadata file locations can be customized by configuring the
213
213
214
214
For more granular control, you can override the `LocationProvider`'s `new_data_location` and `new_metadata_location` methods to define custom logic for generating file paths. See [`Loading a Custom Location Provider`](configuration.md#loading-a-custom-location-provider).
215
215
216
-
PyIceberg defaults to the [`ObjectStoreLocationProvider`](configuration.md#object-store-location-provider), which generates file paths for
217
-
data files that are optimized for object storage.
216
+
PyIceberg defaults to the [`SimpleLocationProvider`](configuration.md#simple-location-provider) for managing file paths.
218
217
219
218
### Simple Location Provider
220
219
@@ -234,9 +233,6 @@ partitioned over a string column `category` might have a data file with location
0 commit comments