🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

github.com/dgraph-io/dgraph

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/dgraph-io/dgraph

v1.2.8
Source
Go
Version published
Created
Source

Fast, Transactional, Distributed Graph Database.

Wiki Build Status Coverage Status Go Report Card

Dgraph is a 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 1.1.x and is production ready. Apart from the vast open source community, it is being used in production at multiple Fortune 500 companies, and by Intuit Katlas and VMware Purser.

Quick Install

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

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

Install with Docker

If you're using Docker, you can use the official Dgraph image.

docker pull dgraph/dgraph:latest

Install from Source

If you want to install from source, install Go 1.11+ or later and the following dependencies:

Ubuntu:

sudo apt-get update
sudo apt-get install gcc make

Then clone the Dgraph repository and use make install to install the Dgraph binary to $GOPATH/bin.

git clone https://github.com/dgraph-io/dgraph.git
cd ./dgraph
make install

Get Started

To get started with Dgraph, follow:

  • Installation to queries in 3 steps via docs.dgraph.io.
  • A longer interactive tutorial via tour.dgraph.io.
  • Tutorial and presentation videos on YouTube channel.

Is Dgraph the right choice for me?

  • Do you have more than 10 SQL tables, connected to each other via foreign keys?
  • Do you have sparse data, which doesn't elegantly 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
ArchitectureSharded and DistributedSingle server (+ replicas in enterprise)Layer on top of other distributed DBs
ReplicationConsistentNone in community edition (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
LicenseApache 2.0GPL v3Apache 2.0

Users

Developers

Client Libraries

The Dgraph team maintain a number of officially supported client libraries. There are also libraries contributed by the community unofficial client libraries.

Contact

FAQs

Package last updated on 28 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts