From b50e023b04a472ca2d109ee30cb9884c9eb957de Mon Sep 17 00:00:00 2001 From: Paula Date: Mon, 18 Dec 2023 15:16:48 +1100 Subject: [PATCH 1/2] arangorestore override writeConcern --- .../3.12/release-notes/version-3.12/whats-new-in-3-12.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/site/content/3.12/release-notes/version-3.12/whats-new-in-3-12.md b/site/content/3.12/release-notes/version-3.12/whats-new-in-3-12.md index 9258bbae15..8ba238c575 100644 --- a/site/content/3.12/release-notes/version-3.12/whats-new-in-3-12.md +++ b/site/content/3.12/release-notes/version-3.12/whats-new-in-3-12.md @@ -512,5 +512,13 @@ _arangodump_ operations on the server: dump thread was blocked because it honored the server-side memory limit for dumps. +### arangorestore + +The following option has been added that allows _arangorestore_ to override +the `writeConcern` value specified in a database dump when creating new +collections: +- `writeConcern`: Override the `writeConcern` value. Can be specified multiple + times. + ## Internal changes From b99c3b2857b98335872ca8001842ebc480a48dae Mon Sep 17 00:00:00 2001 From: Simran Date: Mon, 18 Dec 2023 18:32:26 +0100 Subject: [PATCH 2/2] Review --- .../3.12/release-notes/version-3.12/whats-new-in-3-12.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/site/content/3.12/release-notes/version-3.12/whats-new-in-3-12.md b/site/content/3.12/release-notes/version-3.12/whats-new-in-3-12.md index b195e102ee..eaa3fe6d0e 100644 --- a/site/content/3.12/release-notes/version-3.12/whats-new-in-3-12.md +++ b/site/content/3.12/release-notes/version-3.12/whats-new-in-3-12.md @@ -522,11 +522,14 @@ _arangodump_ operations on the server: ### arangorestore -The following option has been added that allows _arangorestore_ to override +The following startup option has been added that allows _arangorestore_ to override the `writeConcern` value specified in a database dump when creating new collections: -- `writeConcern`: Override the `writeConcern` value. Can be specified multiple - times. + +- `--write-concern`: Override the `writeConcern` value for collections. + Can be specified multiple times, e.g. `--write-concern 2 --write-concern myCollection=3` + to set the write concern for the collection called `myCollection` to 3 and + for all other collections to 2. ### arangoimport