Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dgraph
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
dgraph
Commits
a956858f
Commit
a956858f
authored
9 years ago
by
Manish R Jain
Browse files
Options
Downloads
Patches
Plain Diff
Update logos and instructions about dgraph.xyz
parent
71659be6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+10
-4
10 additions, 4 deletions
README.md
with
10 additions
and
4 deletions
README.md
+
10
−
4
View file @
a956858f
# DGraph
# DGraph
**Open Source, Distributed, Low Latency, High Throughput Graph Database.**
**Open Source, Distributed, Low Latency, High Throughput Graph Database.**

[

](https://groups.google.com/forum/#!forum/dgraph)
DGraph's goal is to provide
[
Google
](
https://www.google.com
)
level production latency and scale,
DGraph's goal is to provide
[
Google
](
https://www.google.com
)
level production latency and scale,
with low enough latency to be serving real time user queries, over terabytes of structured data.
with low enough latency to be serving real time user queries, over terabytes of structured data.
View
[
5 min presentation
](
http://go-talks.appspot.com/github.com/dgraph-io/dgraph/present/sydney5mins/g.slide#1
)
at Go meetup, Sydney.
View
[
5 min presentation
](
http://go-talks.appspot.com/github.com/dgraph-io/dgraph/present/sydney5mins/g.slide#1
)
at Go meetup, Sydney.
# Current Status
# Current Status

`MVP launch - Dec 2015`
`MVP launch - Dec 2015`
This is a minimum viable product, alpha release of DGraph.
**It's not meant for production use.**
This is a minimum viable product, alpha release of DGraph.
**It's not meant for production use.**
...
@@ -16,6 +18,10 @@ See the [Roadmap](https://github.com/dgraph-io/dgraph/issues/1) for list of work
...
@@ -16,6 +18,10 @@ See the [Roadmap](https://github.com/dgraph-io/dgraph/issues/1) for list of work
Your feedback is welcome. Feel free to
[
file an issue
](
https://github.com/dgraph-io/dgraph/issues
)
Your feedback is welcome. Feel free to
[
file an issue
](
https://github.com/dgraph-io/dgraph/issues
)
to direct the development of DGraph.
to direct the development of DGraph.
There's an instance of DGraph running at http://dgraph.xyz, that you can query without installing DGraph.
This instance contains 21M facts from Freebase Film Data. See the
[
query section below
](
#querying
)
for a sample query.
`curl dgraph.xyz/query -XPOST -d '{}'`
# Installation
# Installation
## Via Docker
## Via Docker
...
@@ -25,14 +31,14 @@ $ docker pull dgraph/dgraph:latest
...
@@ -25,14 +31,14 @@ $ docker pull dgraph/dgraph:latest
$ docker run -t -i -v /somedir:/dgraph -v $HOME/go/src/github.com/dgraph-io/benchmarks/data:/data -p 8080:8080 dgraph/dgraph:latest
$ docker run -t -i -v /somedir:/dgraph -v $HOME/go/src/github.com/dgraph-io/benchmarks/data:/data -p 8080:8080 dgraph/dgraph:latest
```
```
Once into the dgraph container, you can now load your data.
Also s
ee
[
Data Loading
](
#data-loading
)
below.
Once into the dgraph container, you can now load your data.
S
ee
[
Data Loading
](
#data-loading
)
below.
Y
ou can
also
skip this step, if you just want to play with DGraph. See
[
Use Freebase Film data
](
#use-freebase-film-data
)
.
Also, y
ou can skip this step, if you just want to play with DGraph. See
[
Use Freebase Film data
](
#use-freebase-film-data
)
.
```
```
$ loader --postings /dgraph/p --rdfgzips /data/rdf-data.gzip --max_ram_mb 3000
$ loader --postings /dgraph/p --rdfgzips /data/rdf-data.gzip --max_ram_mb 3000
```
```
Once done, you can start the server
Once done, you can start the server
```
```
$ mkdir /dgraph/m #
Create th
e mutations directory
fir
st.
$ mkdir /dgraph/m #
Ensur
e mutations directory
exi
st
s
.
$ server --postings /dgraph/p --mutations /dgraph/m --max_ram_mb 3000
$ server --postings /dgraph/p --mutations /dgraph/m --max_ram_mb 3000
```
```
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment