@@ -6,6 +6,27 @@ description: >-
6
6
Check the following list of potential breaking changes **before** upgrading to
7
7
this ArangoDB version and adjust any client applications if necessary
8
8
---
9
+ ## Incompatibilities due to switch to glibc
10
+
11
+ From version 3.11.10 onward, ArangoDB uses the glibc C standard library
12
+ implementation instead of libmusl. Even though glibc is statically linked into
13
+ the ArangoDB server and client tool executables, it may load additional modules
14
+ at runtime that are installed on your system. Under rare circumstances, it is
15
+ possible that ArangoDB crashes when performing host name or address lookups.
16
+ This is only the case if all of the following conditions are true:
17
+
18
+ - You use an ArangoDB package on bare metal (not a Docker container)
19
+ - Your operating system uses glibc (like Ubuntu, Debian, RedHat, Centos, or
20
+ most other Linux distributions, but not Alpine for instance)
21
+ - The glibc version of your system is different than the one used by ArangoDB,
22
+ in particular if the system glibc is older than version 2.35
23
+ - The ` libnss-* ` dynamic libraries are installed
24
+ - The ` /etc/nsswitch.conf ` configuration file contains settings other than for
25
+ ` files ` and ` dns ` in the ` hosts: ` line
26
+
27
+ If you are affected, consider using Docker containers, ` chroot ` , or change
28
+ ` nsswitch.conf ` .
29
+
9
30
## Active Failover deployment mode deprecation
10
31
11
32
Running a single server with asynchronous replication to one or more passive
@@ -59,7 +80,7 @@ Also see:
59
80
- [ View names] ( ../../concepts/data-structure/views.md#view-names )
60
81
- Index names have the same character restrictions as collection names
61
82
62
- ## AQL user-defined functions (UDF)
83
+ ## No AQL user-defined functions (UDF) in ` PRUNE `
63
84
64
85
AQL user-defined functions (UDFs) cannot be used inside traversal PRUNE conditions
65
86
nor inside FILTER conditions that can be moved into the traversal execution on DB-Servers.
0 commit comments