Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do graph databases deprecate relational databases?

I'm new to DBs of any kind. It seems you can represent any relational database in graph form (although it might be a very flat graph), and any graph database in a relational database (with enough tables).

A graph can avoid a lot of lookups in other tables by having a hard link from one entry to another, so in many/most cases I can see the speed advantage of a graph. If your data is naturally hierarchical, and especially if it forms a tree, I see the logical/reasoning benefit to a graph over relational. I imagine a node of a graph which links to other nodes probably contains multiple maps or lists... which is effectively containing a relational DB within nodes of a graph.

Are there any disadvantages to a graph db vs a relational db? (Note: I'm not looking to things like missing features in implementations, but instead the theoretical pros/cons)

When should I still use a relational database? Even if I logically have a single mapping of an int to int I could do it in a graph.

like image 312
David Avatar asked Oct 24 '13 15:10

David


People also ask

Can graph database replace Rdbms?

Graph Databases will replace RDBMS technologies.

How do graph databases differ from relational databases?

The main difference between these two types of databases is in the way relationships between entities are stored. In a graph database, relationships are stored at the individual record level, while a relational database uses predefined structures, a.k.a. table definitions.

Are relational databases going away?

Traditional relational databases aren't going away anytime soon, for several reasons: Organizations have made significant investments in relational databases and underlying infrastructure. In addition, there are countless applications in production that are designed with a relational database backend.


4 Answers

Graph databases were deprecated by relational-ish technology some 20 to 30 years ago.

The major theoretical disadvantage is that graph databases use TWO basic concepts to represent information (nodes and edges), whereas a relational database uses only one (the relation). This bleeds over into the language for data manipulation, in that a graph-based language must provide two distinct sets of operators : one for operating on nodes, and one for operating on edges. The relational model can suffice with only one.

More operators means more operators to implement for the DBMS builder, more opportunity for bugs, and for the user it means more distinct language constructs to learn. For example, adding information to a database is just INSERT in relational, in graph-based it can be either STORE (nodes) or CONNECT (edges). Removing information is just DELETE (relational), as opposed to either ERASE (nodes) or DISCONNECT (edges).

like image 155
Erwin Smout Avatar answered Oct 18 '22 04:10

Erwin Smout


Building on Erwin Smout's fine answer, an important reason why the relational model supplanted the graph one is that a graph has a greater degree of "bias" baked into its structure than relations do. The edges of a graph are navigational links which user queries are expected to traverse in a particular way. A relational model of the same data assumes much less about how the data will be used. Users are free to join and manipulate relational data in ways that the database designer might not have foreseen. The disruptive costs of re-engineering graph database structures to support new requirements were a factor which drove the adoption of the relational model and its SQL-based offshoots in the 1980s.

like image 40
nvogel Avatar answered Oct 18 '22 05:10

nvogel


Relational databases were designed to aggregate data, graph to find relations. If You have for example a financial domain, all connections are known, You only aggregate data by other data to find sums and so on.

Graph databases are better in more chaotic domain where to connections are more important, and not all connections are apparent, for example:

  • networks of people, with different relations with one and other
  • films and people creating them. Not just actors but the whole crew.
  • natural language processing and finding connections between recognized words
like image 5
maklipsa Avatar answered Oct 18 '22 03:10

maklipsa


Data model is important, but what matters more is how you access your data. Notice, there are very few (none, actually) sharded or otherwise distributed graph databases out there. If you compare insertion speed into a typical relational database and a graph database, your relational database will most likely win.

Yes, graph model is more versatile than relational model, but it doesn't make it universal - in some cases, this versatility is a roadblock for optimizations.

In fact, modern graph databases are a niche solutions for a narrow set of tasks - finding a route from A to B, working with friends in a social network, information technology in medicine.

For most business applications relational databases continue to prevail.

like image 2
Kostja Avatar answered Oct 18 '22 05:10

Kostja