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: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,8 +97,9 @@ the config parameter is optional and do have default values
97
97
* `rootdir` : defaults to current working directory. The path where to find the a `content` directory.
98
98
* `outdir` : defaults to `.structure`. Relative output directory is the location where all output data will be generated, which is relative to the root directory.
99
99
* `folder_single_doc` : defaults to `false`. When `true`, each folder is treated as a single document and the first YAML/YML file contributes overrides plus `meta_data` fields.
100
-
* `blob_external_threshold_bytes` : defaults to `1_048_576` (1 MB). Blobs larger than this size are written to disk under `blobs/<YYYY>/<MM>/<prefix>/<hash>`.
101
-
* `blob_inline_compression_min_bytes` : defaults to `4_096`. Inline blobs bigger than or equal to this size are gzip-compressed before being stored inside the `blob_store` table.
100
+
* `external_storage_kb` : defaults to `512`. Blobs larger than this size (in KB) are written to disk under `blobs/<YYYY>/<MM>/<prefix>/<hash>`.
101
+
* `inline_compression_kb` : defaults to `32`. Inline blobs bigger than or equal to this size are eligible for gzip compression before being stored inside the `blob_store` table.
102
+
* `file_compress_ext` : defaults to `["txt","md","json","csv","tsv","yaml","yml"]`. Inline blobs are compressed only if their source extension (when known) appears in this list.
0 commit comments