From b40b9de95a967dee6f3c9ce125c8e9cda0999413 Mon Sep 17 00:00:00 2001 From: Yi Lin Date: Sun, 18 Feb 2024 17:06:28 +0800 Subject: [PATCH] Update doc --- docs/usage/writing/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/usage/writing/index.md b/docs/usage/writing/index.md index dc8bb62389..816e874993 100644 --- a/docs/usage/writing/index.md +++ b/docs/usage/writing/index.md @@ -67,4 +67,8 @@ In this case, you can use a `predicate` to overwrite only the relevant records o Data written must conform to the same predicate, i.e. not contain any records that don't match the `predicate` condition, otherwise the operation will fail -{{ code_example('operations', 'replace_where', ['replaceWhere'])}} \ No newline at end of file +{{ code_example('operations', 'replace_where', ['replaceWhere'])}} + +## Enable unsafe writes in local file system (opt-in) + +If the local file system does not support hard links, such as blobfuse, s3fs-fuse, you can choose to set the `FILE_ALLOW_UNSAFE_RENAME` variable to ``true`` in order to enable unsafe writes.