Paul Horn
Paul Horn
The `failIfMissing` options has been added to [2.10.1](https://github.com/neo4j/graph-data-science/releases/tag/2.10.1) and the latest GDS is 2.15.0, I'll be closing this as released.
I agree with the license change
> One option I can think of to bring this code in is having a separate crate for single threaded algos that sits on top of `graph_builder`, but that could...
Hi @nixxholas, how are you connecting to the database, that is, which protocol? Do you use `neo4j`/`neo4j+s` or `bolt`/`bolt+s`?
Is it an Aura db or something self hosted? We haven't implemented client-side routing yet and it looks like the server is not doing server-side routing properly (which would only...
What neo4rs version are you using?
I could reproduce the issue and I believe I have a fix in #183. I also backported this to the 0.7 branch and will do a 0.7.3 shortly. If you...
No, there should not not be a change in usage. My testing against an AuraDB 5 instance seemed to have fixed it 🤔 Do you mind sharing some more details...
[0.7.3](https://github.com/neo4j-labs/neo4rs/releases/tag/v0.7.3) added an empty routing table, indicating servers to use server-side routing and [0.8.0](https://github.com/neo4j-labs/neo4rs/releases/tag/v0.8.0) added an automatic retry on certain errors (including NotALeader). The retry only works for [`Graph::run`](https://docs.rs/neo4rs/0.8.0/neo4rs/struct.Graph.html#method.run) or...
@nixxholas There is https://neo4j.com/docs/operations-manual/current/clustering/setup/routing/#clustering-client-side-routing and https://neo4j.com/docs/bolt/current/driver-api/#client-side-routing and https://neo4j.com/docs/bolt/current/bolt/message/#messages-route The ROUTE message requires Bolt protocol 4.3 and there is a bigger refactor in progress before we can move to newer protocol...