Unicorn: a simple and flexible abstraction of BigTable-like databases
1–10 of 24 posts
Re: Unicorn: a simple and flexible abstraction of BigTable-like databases
#2The N-Triples and DOT formats would be examples of graph data that's structured like this: you just list the edges as the pairs of nodes that they connect. The nodes don't necessarily have any properties, they're just implicitly created by edges. I could describe
a -- b
b -- c
b -- d
and nodes "a", "b", "c", and "d" would implicitly exist.I ask this because the documentation involves programmatically creating nodes, storing them in local variables, and referring to them when building edges:
gods.addEdge(jupiter, "father", saturn)
gods.addEdge(jupiter, "lives", sky, json"""{"reason": "loves fresh breezes"}""")
If "jupiter", "saturn", and "sky" weren't previously declared and stored in local variables, how would you do this?The documentation on the GitHub page is reasonably extensive, but it doesn't even say how to get an existing node without creating it, and certainly doesn't say how to create an edge in an efficient way that is independent of whether its nodes have already been created.
I've also run into a similar problem trying out the new version of OrientDB. They have a fast importer called ETL, but all the documentation for it assumes that you're mostly concerned with importing nodes and you're only using edges to represent SQL-esque relational data. I'm not trying to shove relational data into NoSQL for the sake of NoSQL, I actually have a large graph. Importing serialized graphs into a graph database seems to be a pretty neglected use case.
Re: Unicorn: a simple and flexible abstraction of BigTable-like databases
#3How would I use this if I have graph data that's described in terms of its edges, not its nodes? The N-Triples and DOT formats would be examples of graph data that's structured like this: you just list the edges as the pairs of nodes that they connect. The nodes don't necessarily have any properties, they're just implicitly created by edges. I could describe a -- b b -- c b -- d and nodes "a", "b", "c", and "d" would…
Re: Unicorn: a simple and flexible abstraction of BigTable-like databases
#4How would I use this if I have graph data that's described in terms of its edges, not its nodes? The N-Triples and DOT formats would be examples of graph data that's structured like this: you just list the edges as the pairs of nodes that they connect. The nodes don't necessarily have any properties, they're just implicitly created by edges. I could describe a -- b b -- c b -- d and nodes "a", "b", "c", and "d" would…
I guess what you want is some large scale graph analytics, which I suggest Spark GrpahX or other distributed graph computing engine.
Unicorn is designed for property directed multi-graphs.
Re: Unicorn: a simple and flexible abstraction of BigTable-like databases
#5Re: Unicorn: a simple and flexible abstraction of BigTable-like databases
#6https://people.csail.mit.edu/matei/courses/2015/6.S897/readi...
This appears to be unrelated, which is somewhat unfortunate.
Re: Unicorn: a simple and flexible abstraction of BigTable-like databases
#7Not to be a stickler about name collisions, but Facebook wrote a research paper about a graph database called Unicorn back in 2013: https://people.csail.mit.edu/matei/courses/2015/6.S897/readi... This appears to be unrelated, which is somewhat unfortunate.
Re: Unicorn: a simple and flexible abstraction of BigTable-like databases
#8given the context of today, find the name rather unfortunate
Re: Unicorn: a simple and flexible abstraction of BigTable-like databases
#9Not to be a stickler about name collisions, but Facebook wrote a research paper about a graph database called Unicorn back in 2013: https://people.csail.mit.edu/matei/courses/2015/6.S897/readi... This appears to be unrelated, which is somewhat unfortunate.
We're overloading the english language so much. In 100 years it's going to be impossible to search for anything, as every word and phrase will have a million products and projects attached.
Didn't the original MIT hackers take pride in coming up with clever and unique names? what happened to that? I'd even settle for names like "elinks"
Re: Unicorn: a simple and flexible abstraction of BigTable-like databases
#10Not to be a stickler about name collisions, but Facebook wrote a research paper about a graph database called Unicorn back in 2013: https://people.csail.mit.edu/matei/courses/2015/6.S897/readi... This appears to be unrelated, which is somewhat unfortunate.
I wish there was some sort of social agreement to name projects new words, or combined words. We're overloading the english language so much. In 100 years it's going to be impossible to search for anything, as every word and phrase will have a million products and projects attached. Didn't the original MIT hackers take pride in coming up with clever and unique names? what happened to that? I'd even settle for names l…