-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DOCFIX] Update "Configuration Settings" page
### What changes are proposed in this pull request? move information to better fitting pages update links that were plain text in config properties ### Why are the changes needed? remove redundant/irrelevant information links that are plain text are not user friendly ### Does this PR introduce any user facing changes? Web UI pr-link: #17835 change-id: cid-2722135b7789ab72b7f992e02a338dd11fd4a297
- Loading branch information
Showing
6 changed files
with
86 additions
and
121 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
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
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,37 @@ | ||
--- | ||
layout: global | ||
title: List of Environment Variables | ||
--- | ||
|
||
Alluxio supports defining a few frequently used configuration settings through environment | ||
variables. | ||
|
||
<table class="table table-striped"> | ||
<tr><th>Environment Variable</th><th>Description</th></tr> | ||
{% for env_var in site.data.table.en.env_vars %} | ||
<tr> | ||
<td markdown="span">`{{env_var.name}}`</td> | ||
<td markdown="span">{{env_var.description}}</td> | ||
</tr> | ||
{% endfor %} | ||
</table> | ||
|
||
For example, the following example will set up: | ||
- an Alluxio master at `localhost` | ||
- the root mount point as an HDFS cluster with a namenode also running at `localhost` | ||
- defines the maximum heap space of the VM to be 30g | ||
- enable Java remote debugging at port 7001 | ||
|
||
```shell | ||
$ export ALLUXIO_MASTER_HOSTNAME="localhost" | ||
$ export ALLUXIO_MASTER_MOUNT_TABLE_ROOT_UFS="hdfs://localhost:9000" | ||
$ export ALLUXIO_MASTER_JAVA_OPTS="-Xmx30g" | ||
$ export ALLUXIO_MASTER_ATTACH_OPTS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=7001" | ||
``` | ||
|
||
Users can either set these variables through the shell or in `conf/alluxio-env.sh`. | ||
If this file does not exist yet, it can be copied from the template file under `${ALLUXIO_HOME}/conf`: | ||
|
||
```shell | ||
$ cp conf/alluxio-env.sh.template conf/alluxio-env.sh | ||
``` |
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