All Projects → dgraph-io → Dgraph

dgraph-io / Dgraph

Licence: other
Native GraphQL Database with graph backend

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects
HCL
1544 projects
TeX
3793 projects
typescript
32286 projects
Makefile
30231 projects

Projects that are alternatives of or similar to Dgraph

spicedb
Open Source, Google Zanzibar-inspired fine-grained permissions database
Stars: ✭ 3,358 (-80.39%)
Mutual labels:  scale, latency, production, distributed, graph-database
Eliasdb
EliasDB a graph-based database.
Stars: ✭ 611 (-96.43%)
Mutual labels:  graphql, graphql-server, database, graph-database
Arangodb
🥑 ArangoDB is a native multi-model database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions.
Stars: ✭ 11,880 (-30.64%)
Mutual labels:  database, graph-database, graphdb
Neo4j
Graphs for Everyone
Stars: ✭ 9,582 (-44.05%)
Mutual labels:  database, graph-database, graphdb
Grakn
TypeDB: a strongly-typed database
Stars: ✭ 2,947 (-82.79%)
Mutual labels:  database, graph-database, graphdb
nebula
A distributed, fast open-source graph database featuring horizontal scalability and high availability
Stars: ✭ 8,196 (-52.15%)
Mutual labels:  distributed, graph-database, graphdb
Altair
✨⚡️ A beautiful feature-rich GraphQL Client for all platforms.
Stars: ✭ 3,827 (-77.66%)
Mutual labels:  graphql, graphql-server, database
Ecosys
TigerGraph Ecosystem
Stars: ✭ 166 (-99.03%)
Mutual labels:  database, graph-database, graphdb
Fullstack Graphql
🌈 Simple Fullstack GraphQL Application. API built with Express + GraphQL + Sequelize (supports MySQL, Postgres, Sqlite and MSSQL). WebApp built with React + Redux to access the API. Written in ES6 using Babel + Webpack.
Stars: ✭ 955 (-94.42%)
Mutual labels:  graphql, graphql-server, database
Neo4j Graphql
GraphQL bindings for Neo4j, generates and runs Cypher
Stars: ✭ 429 (-97.5%)
Mutual labels:  graphql, graphql-server, graph-database
Graphjin
GraphJin - Build APIs in 5 minutes with GraphQL. An instant GraphQL to SQL compiler.
Stars: ✭ 1,264 (-92.62%)
Mutual labels:  graphql, graphql-server, database
Graphik
Graphik is a Backend as a Service implemented as an identity-aware document & graph database with support for gRPC and graphQL
Stars: ✭ 277 (-98.38%)
Mutual labels:  graphql, database, graph-database
Graphql Clj
A Clojure library that provides GraphQL implementation.
Stars: ✭ 281 (-98.36%)
Mutual labels:  graphql, graphql-server
hedgedhttp
Hedged HTTP client which helps to reduce tail latency at scale.
Stars: ✭ 103 (-99.4%)
Mutual labels:  scale, latency
grafito
Portable, Serverless & Lightweight SQLite-based Graph Database in Arturo
Stars: ✭ 95 (-99.45%)
Mutual labels:  graph-database, graphdb
docs
Source code of the ArangoDB online documentation
Stars: ✭ 18 (-99.89%)
Mutual labels:  graph-database, graphdb
yang-db
YANGDB Open-source, Scalable, Non-native Graph database (Powered by Elasticsearch)
Stars: ✭ 92 (-99.46%)
Mutual labels:  scale, distributed
Cypher.js
Cypher graph database for Javascript
Stars: ✭ 30 (-99.82%)
Mutual labels:  graph-database, graphdb
semagrow
A SPARQL query federator of heterogeneous data sources
Stars: ✭ 27 (-99.84%)
Mutual labels:  distributed, graph-database
NeoClient
🦉 Lightweight OGM for Neo4j which support transactions and BOLT protocol.
Stars: ✭ 21 (-99.88%)
Mutual labels:  graph-database, graphdb

The Only Native GraphQL Database With A Graph Backend.

Wiki Build Status Coverage Status Go Report Card

Dgraph is a horizontally scalable and distributed GraphQL database with a graph backend. It provides ACID transactions, consistent replication, and linearizable reads. It's built from the ground up to perform for a rich set of queries. Being a native GraphQL 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 query syntax, and responds in JSON and Protocol Buffers over GRPC and HTTP.

Use Discuss Issues for reporting issues about this repository.

Status

Dgraph is at version v21.03.0 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.13+ or later and the following dependencies:

Ubuntu

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

Build and Install

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:

Is Dgraph the right choice for me?

  • Do you have more than 10 SQL tables connected 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 the 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

Features Dgraph Neo4j Janus Graph
Architecture Sharded and Distributed Single server (+ replicas in enterprise) Layer on top of other distributed DBs
Replication Consistent None in community edition (only available in enterprise) Via underlying DB
Data movement for shard rebalancing Automatic Not applicable (all data lies on each server) Via underlying DB
Language GraphQL inspired Cypher, Gremlin Gremlin
Protocols Grpc / HTTP + JSON / RDF Bolt + Cypher Websocket / HTTP
Transactions Distributed ACID transactions Single server ACID transactions Not typically ACID
Full-Text Search Native support Native support Via External Indexing System
Regular Expressions Native support Native support Via External Indexing System
Geo Search Native support External support only Via External Indexing System
License Apache 2.0 GPL v3 Apache 2.0

Users

Developers

Client Libraries

The Dgraph team maintains several officially supported client libraries. There are also libraries contributed by the community unofficial client libraries.

Contact

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].