1
1
devel
2
2
-----
3
3
4
+ * Speed up collection creation process in cluster, if not all agency callbacks are
5
+ delivered successfully.
6
+
4
7
* increased performance of document inserts, by reducing the number of checks in unique / primary indexes
5
8
6
9
* fixed a callback function in the web UI where the variable `this` was out of scope.
34
37
35
38
v3.5.0-rc.3 (2019-05-31)
36
39
------------------------
37
-
40
+
38
41
* fix issue #9106: Sparse Skiplist Index on multiple fields not used for FILTER + SORT query
39
42
40
43
Allow AQL query optimizer to use sparse indexes in more cases, specifically when
@@ -52,7 +55,7 @@ v3.5.0-rc.3 (2019-05-31)
52
55
* Bugfix for smart graph traversals with uniqueVertices: path, which could
53
56
sometimes lead to erroneous traversal results
54
57
55
- * Pregel algorithms can be run with the option "useMemoryMaps: true" to be
58
+ * Pregel algorithms can be run with the option "useMemoryMaps: true" to be
56
59
able to run algorithms on data that is bigger than the available RAM.
57
60
58
61
* fix a race in TTL thread deactivation/shutdown
@@ -80,15 +83,15 @@ v3.5.0-rc.2 (2019-05-23)
80
83
and uncompressed data blocks not fitting into the block cache
81
84
82
85
The error can only occur for collection or index scans with the RocksDB storage engine
83
- when the RocksDB block cache is used and set to a very small size, plus its maximum size is
86
+ when the RocksDB block cache is used and set to a very small size, plus its maximum size is
84
87
enforced by setting the `--rocksdb.enforce-block-cache-size-limit` option to `true`.
85
88
86
89
Previously these incomplete reads could have been ignored silently, making collection or
87
90
index scans return less documents than there were actually present.
88
91
89
92
* fixed internal issue #3918: added optional second parameter "withId" to AQL
90
93
function PREGEL_RESULT
91
-
94
+
92
95
this parameter defaults to `false`. When set to `true` the results of the Pregel
93
96
computation run will also contain the `_id` attribute for each vertex and not
94
97
just `_key`. This allows distinguishing vertices from different vertex collections.
@@ -99,9 +102,9 @@ v3.5.0-rc.2 (2019-05-23)
99
102
100
103
* internally switch unit tests framework from catch to gtest
101
104
102
- * disable selection of index types "hash" and "skiplist" in the web interface when
103
- using the RocksDB engine. The index types "hash", "skiplist" and "persistent" are
104
- just aliases of each other with the RocksDB engine, so there is no need to offer all
105
+ * disable selection of index types "hash" and "skiplist" in the web interface when
106
+ using the RocksDB engine. The index types "hash", "skiplist" and "persistent" are
107
+ just aliases of each other with the RocksDB engine, so there is no need to offer all
105
108
of them. After initially only offering "hash" indexes, we decided to only offer
106
109
indexes of type "persistent", as it is technically the most
107
110
appropriate description.
@@ -619,15 +622,15 @@ v3.4.6 (2019-05-21)
619
622
and uncompressed data blocks not fitting into the block cache
620
623
621
624
The
8000
error can only occur for collection or index scans with the RocksDB storage engine
622
- when the RocksDB block cache is used and set to a very small size, plus its maximum size is
625
+ when the RocksDB block cache is used and set to a very small size, plus its maximum size is
623
626
enforced by setting the `--rocksdb.enforce-block-cache-size-limit` option to `true`.
624
627
625
628
Previously these incomplete reads could have been ignored silently, making collection or
626
629
index scans return less documents than there were actually present.
627
630
628
631
* fixed internal issue #3918: added optional second parameter "withId" to AQL
629
632
function PREGEL_RESULT
630
-
633
+
631
634
this parameter defaults to `false`. When set to `true` the results of the Pregel
632
635
computation run will also contain the `_id` attribute for each vertex and not
633
636
just `_key`. This allows distinguishing vertices from different vertex collections.
0 commit comments