Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)
61–70 of 117 posts
Re: Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)
#62Re: Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)
#63Could you share any information on the pricing model?
Re: Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)
#64How scalable is your DB in your tests? Could it be performent on graphs with 1B/10B/100B connections?
Re: Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)
#65Re: Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)
#66"faster than Neo4j" How does it compare to Dgraph?
That is just heresy though, am interested myself now and will run some proper benchmarks
Re: Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)
#67I notice that in your core vector type (`HVector`), you choose to store the vector data as a `Vec`. Given what I have seen from most embedding endpoints, they return `f32`s. Is there a particular reason for picking `f64` vs `f32` here? Is the additional precision a way to avoid headaches down the line or is it something I am missing context for?
Really cool project, gonna keep reading the code.
Re: Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)
#68Graph DB OOMing 101. Can it do Erdős/Bacon numbers? Graph DBs have been plagued with exploding complexity of queries as doing things like allowing recursion or counting paths isn't as trivial as it may sound. Do you have benchmarks and comparisons against other engines and query languages?
Re: Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)
#69The fact that it's "backed by NVIDIA" and licensed under AGPL-3.0 makes me wonder about the cost(s) of using it in production. Could you share any information on the pricing model?
We chose AGPL to make sure someone can't make a cloud hosted version of our product, think MongoDB on AWS a few years back.
Re: Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)
#70Excellent work. Very exited to test this out. What are the limits or gotchas we should be aware of, or how do you want it pushed? What other papers did you get inspiration from?