1
0
Fork 0

updated CHANGELOG

This commit is contained in:
Jan Steemann 2015-11-06 10:47:56 +01:00
parent 89e6eb010e
commit 725529e5f8
2 changed files with 20 additions and 9 deletions

View File

@ -4,12 +4,6 @@ v2.8.0 (XXXX-XX-XX)
* added new AQL function `UNSET_RECURSIVE` to recursively unset attritutes from * added new AQL function `UNSET_RECURSIVE` to recursively unset attritutes from
objects/documents objects/documents
* fixed "no start tick" issue in replication applier
This error could occur after restarting a slave server after a shutdown
when no data was ever transferred from the master to the slave via the
continuous replication
* switched command-line editor in ArangoShell and arangod to linenoise-ng * switched command-line editor in ArangoShell and arangod to linenoise-ng
* added automatic deadlock detection for transactions * added automatic deadlock detection for transactions
@ -19,9 +13,6 @@ v2.8.0 (XXXX-XX-XX)
operations containing more than one collection should be aware of this potential operations containing more than one collection should be aware of this potential
error and handle it accordingly, either by giving up or retrying the transaction. error and handle it accordingly, either by giving up or retrying the transaction.
* fixed problem during SSL client connection abort that led to scheduler thread
staying at 100% CPU saturation
* Added C++ implementations for the AQL arithmetic operations and the following * Added C++ implementations for the AQL arithmetic operations and the following
AQL functions: AQL functions:
- ABS - ABS
@ -106,6 +97,18 @@ v2.8.0 (XXXX-XX-XX)
v2.7.1 (XXXX-XX-XX) v2.7.1 (XXXX-XX-XX)
------------------- -------------------
* exclude `_apps` collection from replication
The slave has its own `_apps` collection which it populates on server start.
When replicating data from the master to the slave, the data from the master may
clash with the slave's own data in the `_apps` collection. Excluding the `_apps`
collection from replication avoids this.
* disable replication appliers when starting in modes `--upgrade`, `--no-server`
and `--check-upgrade`
* more detailed output in arango-dfdb
* fixed "no start tick" issue in replication applier * fixed "no start tick" issue in replication applier
This error could occur after restarting a slave server after a shutdown This error could occur after restarting a slave server after a shutdown
@ -639,6 +642,13 @@ v2.7.0-rc1 (2015-09-17)
v2.6.10 (XXXX-XX-XX) v2.6.10 (XXXX-XX-XX)
-------------------- --------------------
* disable replication appliers when starting in modes `--upgrade`, `--no-server`
and `--check-upgrade`
* more detailed output in arango-dfdb
* fixed potential deadlock in collection status changing on Windows
* issue #1521: Can't dump/restore with user and password * issue #1521: Can't dump/restore with user and password

View File

@ -93,6 +93,7 @@ bool TRI_ExcludeCollectionReplication (char const* name,
if (TRI_EqualString(name, TRI_COL_NAME_REPLICATION) || if (TRI_EqualString(name, TRI_COL_NAME_REPLICATION) ||
TRI_EqualString(name, TRI_COL_NAME_TRANSACTION) || TRI_EqualString(name, TRI_COL_NAME_TRANSACTION) ||
TRI_IsPrefixString(name, TRI_COL_NAME_STATISTICS) || TRI_IsPrefixString(name, TRI_COL_NAME_STATISTICS) ||
TRI_EqualString(name, "_apps") ||
TRI_EqualString(name, "_configuration") || TRI_EqualString(name, "_configuration") ||
TRI_EqualString(name, "_cluster_kickstarter_plans") || TRI_EqualString(name, "_cluster_kickstarter_plans") ||
TRI_EqualString(name, "_jobs") || TRI_EqualString(name, "_jobs") ||