-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from Eventual-Inc/docs/iam-instance-profile-arn
[Docs] Update docs
- Loading branch information
Showing
20 changed files
with
274 additions
and
272 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Summary | ||
|
||
- [Introduction](./introduction.md) | ||
- [Commands](./commands/mod.md) | ||
- [Init Config](./commands/init-config.md) | ||
- [Up](./commands/up.md) | ||
- [Down](./commands/down.md) | ||
- [List](./commands/list.md) | ||
- [Submit](./commands/submit.md) | ||
- [Dashboard](./commands/dashboard.md) | ||
- [Sql](./commands/sql.md) | ||
- [Example](./example.md) | ||
- [Future Plans](./future_plans.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Dashboard | ||
|
||
The dashboard command enables you to view the Ray dashboard of a specified cluster that you currently have running. | ||
The way this is done is by establishing a port-forward over SSH from your local machine to the head node of the cluster (connecting `localhost:8265` to the remote head's `8265`). | ||
The head node then serves some HTML/CSS/JS that you can view in your browser by pointing it towards `localhost:8265`). | ||
|
||
An important thing to note is that this command will require that you have the appropriate private SSH keypair to authenticate against the remote head's public SSH keypair. | ||
You will need to pass this SSH keypair as an argument to the command. | ||
|
||
### Example | ||
|
||
```bash | ||
# establish the port-forward using the default .daft.toml configuration file | ||
daft dashboard -i my-keypair.pem | ||
|
||
# or, if you want, establish the port-forward using a custom configuration file | ||
daft dashboard -c my-custom-config.toml -i my-keypair.pem | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Down | ||
|
||
The down command is pretty much the opposite of the up command. | ||
It takes the cluster specified in the configuration file and tears it down. | ||
|
||
### Example | ||
|
||
```bash | ||
# spin down a cluster using the default .daft.toml configuration file | ||
daft down | ||
|
||
# or, if you want, spin down a cluster using a custom configuration file | ||
daft down -c my-custom-config.toml | ||
``` | ||
|
||
This command will tear down *all* instances in the cluster, not just the head node. | ||
When each instance has been requested to shut down, the command will return successfully. |
Oops, something went wrong.