Categorygithub.com/unigraph-dev/dgraph
module
0.9.4
Repository: https://github.com/unigraph-dev/dgraph.git
Documentation: pkg.go.dev

# README

Fast, Transactional, Distributed Graph Database.

Wiki Build Status Coverage Status Go Report Card Slack Status

Dgraph is an open source, horizontally scalable and distributed graph database, providing ACID transactions, consistent replication and linearizable reads. It's built from ground up to perform for a rich set of queries. Being a native graph database, it tightly controls how the data is arranged on disk to optimize for query performance and throughput, reducing disk seeks and network calls in a cluster.

Dgraph's goal is to provide Google production level scale and throughput, with low enough latency to be serving real time user queries, over terabytes of structured data. Dgraph supports GraphQL-like query syntax, and responds in JSON and Protocol Buffers over GRPC and HTTP.

Status

Dgraph is at version 0.9.x. We're aiming to convert this into v1.0 release before Christmas. We recommend using it in your projects and in production environment.

Quick Install

The quickest way to install Dgraph is to run this command on Linux or Mac.

curl https://get.dgraph.io -sSf | bash

Get Started

To get started with Dgraph, follow:

Is Dgraph the right choice for me?

  • Do you have more than 10 SQL tables, connected to each other via foreign ids?
  • Do you have sparse data, which doesn't correctly fit into SQL tables?
  • Do you want a simple and flexible schema, which is readable and maintainable over time?
  • Do you care about speed and performance at scale?

If the answers to the above are YES, then Dgraph would be a great fit for your application. Dgraph provides NoSQL like scalability while providing SQL like transactions and ability to select, filter and aggregate data points. It combines that with distributed joins, traversals and graph operations, which makes it easy to build applications with it.

Dgraph compared to other graph DBs

FeaturesDgraphNeo4jJanus Graph
ArchitectureDistributedSingle serverLayer on top of other distributed DBs
ReplicationConsistentNone (only available in Enterprise)Via underlying DB
Data movement for shard rebalancingAutomaticNot applicable (all data lies on each server)Via underlying DB
LanguageGraphQL inspiredCypher, GremlinGremlin
ProtocolsGrpc / HTTP + JSON / RDFBolt + CypherWebsocket / HTTP
TransactionsDistributed ACID transactionsSingle server ACID transactionsNot typically ACID
Full Text SearchNative supportNative supportVia External Indexing System
Regular ExpressionsNative supportNative supportVia External Indexing System
Geo SearchNative supportExternal support onlyVia External Indexing System
LicenseAGPL v3 for server + Apache 2.0 for clientGPL v3Apache 2.0

Users

Developers

Contact

# Packages

Package algo contains algorithms such as merging, intersecting sorted lists.
Package bp128 implements SIMD-BP128 integer encoding and decoding.
Package client is used to interact with a Dgraph server.
No description provided by the author
No description provided by the author
No description provided by the author
* Copyright (C) 2017 Dgraph Labs, Inc.
Package gql is responsible for lexing and parsing a GraphQL query/mutation.
No description provided by the author
Package lru implements an LRU cache.
No description provided by the author
No description provided by the author
No description provided by the author
Package rdf package parses N-Quad statements based on http://www.w3.org/TR/n-quads/.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Package worker contains code for intern.worker communication to perform queries and mutations.
* Copyright (C) 2017 Dgraph Labs, Inc.
No description provided by the author
Package y contains the code shared by the Go client and Dgraph server.