You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/deploy/admin/dgraph-administration.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -201,11 +201,11 @@ When the new cluster (that uses the upgraded version of Dgraph) is up and runnin
201
201
### Upgrade from v1.2.2 to v20.03.0 for Enterprise customers
202
202
203
203
<!-- TODO: Redirect(s) -->
204
-
1. Use [binary backup]({{< relref "enterprise-features/binary-backups.md">}}) to export data from old cluster
204
+
1. Use [binary backup]({{< relref "binary-backups.md">}}) to export data from old cluster
205
205
2. Ensure it is successful
206
206
3.[Shutdown Dgraph]({{< relref "#shut-down-database" >}}) and wait for all writes to complete
207
207
4. Upgrade `dgraph` binary to `v20.03.0`
208
-
5.[Restore]({{< relref "enterprise-features/binary-backups.md#restore-from-backup">}}) from the backups using upgraded `dgraph` binary
208
+
5. Restore from the backups using upgraded `dgraph` binary
209
209
6. Start a new Dgraph cluster using the restored data directories
210
210
7. Upgrade ACL data using the following command:
211
211
@@ -219,7 +219,7 @@ dgraph upgrade --acl -a localhost:9080 -u groot -p password
219
219
2. Ensure it is successful
220
220
3.[Shutdown Dgraph]({{< relref "#shut-down-database" >}}) and wait for all writes to complete
221
221
4. Upgrade `dgraph` binary to `v20.07.0`
222
-
5.[Restore]({{< relref "enterprise-features/binary-backups.md#restore-from-backup">}}) from the backups using upgraded `dgraph` binary
222
+
5. Restore from the backups using upgraded `dgraph` binary
223
223
6. Start a new Dgraph cluster using the restored data directories
224
224
7. Upgrade ACL data using the following command:
225
225
```sh
@@ -244,7 +244,7 @@ are affected. Then, you can drop the old types and predicates from DB.
244
244
2. Ensure it is successful
245
245
3. [Shutdown Dgraph]({{< relref "#shut-down-database">}}) and waitfor all writes to complete
246
246
4. Upgrade `dgraph` binary to `v21.03.0`
247
-
5. [Restore]({{< relref "enterprise-features/binary-backups.md#restore-from-backup">}}) from the backups using the upgraded `dgraph` binary
247
+
5. Restore from the backups using the upgraded `dgraph` binary
248
248
6. Start a new Dgraph cluster using the restored data directories
249
249
7. Upgrade the CORS and persisted queries. To upgrade an ACL cluster use:
250
250
```sh
@@ -268,4 +268,4 @@ as backup and restore are cluster-wide operations and a single namespace cannot
268
268
269
269
## Post Installation
270
270
271
-
Now that Dgraph is up and running, to understand how to add and query data to Dgraph, follow [Query Language Spec](/query-language). Also, have a look at [Frequently asked questions](/faq).
271
+
Now that Dgraph is up and running, to understand how to add and query data to Dgraph, follow [Query Language Spec](/query-language).
Copy file name to clipboardExpand all lines: content/deploy/admin/dgraph-alpha.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ query {
92
92
-**`group`**: Group assigned based on the replication factor.
93
93
-**`lastEcho`**: Last time, in Unix epoch, when the instance was contacted by another Alpha or Zero server.
94
94
-**`ongoing`**: List of ongoing operations in the background.
95
-
-**`indexing`**: List of predicates for which indexes are built in the background. Read more [here]({{< relref "/dql/dql-schema.md#indexes-in-background" >}}).
95
+
-**`indexing`**: List of predicates for which indexes are built in the background.
96
96
97
97
{{% notice "note" %}}
98
98
The same information (except `ongoing` and `indexing`) is available from the `/health` and `/health?all` HTTP endpoints.
Copy file name to clipboardExpand all lines: content/dgraph-glossary.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ A relationship is a named, directed link relating one [node](#node) to another.
67
67
Sharding is a database architecture pattern to achieve horizontal scale by distributing data among many servers. Dgraph shards data per relationship, so all data for one relationship form a single shard, and are stored on one (group of) servers, an approach referred to as 'predicate-based sharding'.
68
68
69
69
### Triple ###
70
-
Because RDF statements consist of three elements: <subject> <predicate> <object>, they are called triples. A triple represents a single atomic statement about a node. The object in an RDF triple can be a literal value or can point to another node. See [DQL RDF Syntax]("/dql/dql-syntax/dql-rdf") for more details.
70
+
Because RDF statements consist of three elements: <subject> <predicate> <object>, they are called triples. A triple represents a single atomic statement about a node. The object in an RDF triple can be a literal value or can point to another node. See [DQL RDF Syntax](/dql/dql-syntax/dql-rdf) for more details.
71
71
- when we store that a node name is "Alice". The predicate is ``name`` and predicate value is the string "Alice". The string becomes a node property.
72
72
- when we store that Alice knows Bob, we may use a predicate ``knows`` with the node representing Alice. The value of this predicate would be the [uid](#uid) of the node representing Bob. In that case, ``knows`` is a [relationship](#relationship).
Copy file name to clipboardExpand all lines: content/dgraph-overview.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ Dgraph is built from the ground up as a distributed system. Data is automaticall
52
52
53
53
Each Dgraph cluster consists of multiple server groups (shards) that work together to store and query your data. Queries are automatically distributed across the relevant shards and results are aggregated, making the distributed nature transparent to your application. This architecture provides both horizontal scalability and high availability.
54
54
55
-
For detailed information about Dgraph's distributed architecture, clustering, and replication, see the [Architecture documentation]("/deploy/archiveture").
55
+
For detailed information about Dgraph's distributed architecture, clustering, and replication, see the [Architecture documentation](/deploy/dgraph-architecture).
56
56
57
57
## Enterprise-Grade Features
58
58
@@ -120,7 +120,7 @@ The graph model naturally represents connected data, making it straightforward t
120
120
## What's Next
121
121
122
122
- Get familiar with some terms in our [Glossary](/dgraph-glossary)
123
-
- Go through some [tutorials]("/learn")
123
+
- Go through some [tutorials]({{<relref "learn">}})
IfyouwanttoconnecttoDgraphrunningonyour [DgraphCloud](https://cloud.dgraph.io) instance, then all you need is the URL of your Dgraph Cloud endpoint and the API key. You can get a client using them as follows:
0 commit comments