Arnaud Gourlay
Arnaud Gourlay
`RandomContext` is encapsulating a `scala.util.Random` which in turn contains `java.util.Random`. Every time the `RandomContext` is used, its internal are mutated under the cover. This programming style does not fit at...
Matchers are currently not supported by the ```JsonArrayStepBuilder```
currently the matchers are only working on the whole field, check how to support the partial json value matchers e.g: ```json { "key" : "product-**any-uuid**" } ```
Had a case where the last element of an ```Attach``` block would not be turned into an ```effectStep``` throught an implicit conversion. This caused the aforementioned element to be ignored...
Debugging failed assertion can become cumbersome in big scenario. To remedy this issue, we could point the user to the exact failing assertion. When an assert fails, generate a stacktrace...
This PR targets the issue #1040. The issue arises from the error reporting for the collection update in a sharding context. The outcome of the investigation is that there are...
When the replication factor changes through consensus, the replica sets must react accordingly. - If the replication factor increases, new replicas must be introduced by transferring a copy of the...
The test `test_struct_payload_index` is flaky https://github.com/qdrant/qdrant/runs/6253977758?check_suite_focus=true ## Current Behavior ``` ---- tests::test_struct_payload_index stdout ---- thread 'tests::test_struct_payload_index' panicked at 'assertion failed: `(left == right)` left: `NumId(863)`, right: `NumId(1396)`', lib/segment/tests/payload_index_test.rs:207:21 note: run...
Since we have migrated to Scala 2.12, we are effectively only targetting Java 8. Java 8 introduced with the JSR 310 a new `java.time` API which has been built on...
The raft library [raft.rs](https://github.com/tikv/raft-rs) supports the batching of `MsgAppend` which could have a positive impact on large clusters. The feature is not explicitly documented, see https://github.com/tikv/raft-rs/issues/18 ``` When a proposal...