From 0d9887e5aded7c9d4f923ee14a0c38b51e556535 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Gra=CC=88tzer?= Date: Mon, 30 Jul 2018 15:55:28 +0200 Subject: [PATCH] adding changelog --- CHANGELOG | 2 ++ .../Books/Manual/ReleaseNotes/UpgradingChanges34.md | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 18fb7d6712..801e35cea4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,8 @@ devel ----- +* Intermediate commits in the rocksdb engine are now only enabled in standalone AQL queries + (not within a JS transaction), standalone truncate as well as for the "import" API * The AQL Editor in the Web UI now supports GeoJSON types and is able to render them. diff --git a/Documentation/Books/Manual/ReleaseNotes/UpgradingChanges34.md b/Documentation/Books/Manual/ReleaseNotes/UpgradingChanges34.md index fe22cf72d8..5c824c4cee 100644 --- a/Documentation/Books/Manual/ReleaseNotes/UpgradingChanges34.md +++ b/Documentation/Books/Manual/ReleaseNotes/UpgradingChanges34.md @@ -132,6 +132,16 @@ that replicates the original data; once the replication has reached completion, you can switch the instances. +RocksDB intermediate commits +----------------------------- + +Intermediate commits in the rocksdb engine are now only enabled in standalone AQL queries +(not within a JS transaction), standalone truncate as well as for the "import" API. + +The options `intermediateCommitCount` and `intermediateCommitSize` will have no affect +anymore on transactions started via `/_api/transaction`, or `db._executeTransaction()`. + + Threading and request handling ------------------------------