Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Distributed Load and change increment flag #3285

Merged
merged 2 commits into from
Apr 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions wiki/content/deploy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1482,6 +1482,8 @@ Do not confuse with `-C`.
`-C, --use_compression` (default: false): Enable compression for connections to and from the
Alpha server.

`-a, --alpha` (default: `localhost:9080`): Dgraph Alpha gRPC server address to connect for live loading. This can be a comma-separated list of Alphas addresses in the same cluster to distribute the load, e.g., `"alpha:grpc_port,alpha2:grpc_port,alpha3:grpc_port"`.

### Bulk Loader

{{% notice "note" %}}
Expand Down
4 changes: 2 additions & 2 deletions wiki/content/howto/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,10 @@ exist, then it will be created starting at counter 0.
$ dgraph increment
```

Increment the counter predicate against the Alpha running at address `--addr` (default: `localhost:9080`):
Increment the counter predicate against the Alpha running at address `--alpha` (default: `localhost:9080`):

```sh
$ dgraph increment --addr=192.168.1.10:9080
$ dgraph increment --alpha=192.168.1.10:9080
```

Increment the counter predicate specified by `--pred` (default: `counter.val`):
Expand Down