ArangoDB v3.3.21 Release Notes
-
🛠 fixed TypeError being thrown instead of validation errors when Foxx manifest validation fails
🛠 fixed issue #7586: a running query within the user interface was not shown if the active view was
Running Queries
orSlow Query History
.👌 improve Windows installer error messages, fix Windows installer backup routine and exit code handling
🚚 make AQL REMOVE operations use less memory with the RocksDB storage engine
the previous implementation of batch removals read everything to remove into memory first before carrying out the first remove operation. The new version will only read in about 1000 documents each time and then remove these. Queries such as
FOR doc IN collection FILTER ... REMOVE doc IN collection
will benefit from this change in terms of memory usage.