Skip to content
This repository was archived by the owner on Jan 9, 2020. It is now read-only.

Commit 77988a9

Browse files
mcavdarsrowen
authored andcommitted
[MINOR][DOC] Fix the link of 'Getting Started'
## What changes were proposed in this pull request? Easy fix in the link. ## How was this patch tested? Tested manually Author: Mahmut CAVDAR <[email protected]> Closes apache#19996 from mcavdar/master.
1 parent c2aeddf commit 77988a9

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

docs/mllib-decision-tree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ For a categorical feature with `$M$` possible values (categories), one could com
9191
`$2^{M-1}-1$` split candidates. For binary (0/1) classification and regression,
9292
we can reduce the number of split candidates to `$M-1$` by ordering the
9393
categorical feature values by the average label. (See Section 9.2.4 in
94-
[Elements of Statistical Machine Learning](http://statweb.stanford.edu/~tibs/ElemStatLearn/) for
94+
[Elements of Statistical Machine Learning](https://web.stanford.edu/~hastie/ElemStatLearn/) for
9595
details.) For example, for a binary classification problem with one categorical feature with three
9696
categories A, B and C whose corresponding proportions of label 1 are 0.2, 0.6 and 0.4, the categorical
9797
features are ordered as A, C, B. The two split candidates are A \| C, B

docs/running-on-mesos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ To install Apache Mesos from source, follow these steps:
4747

4848
1. Download a Mesos release from a
4949
[mirror](http://www.apache.org/dyn/closer.lua/mesos/{{site.MESOS_VERSION}}/)
50-
2. Follow the Mesos [Getting Started](http://mesos.apache.org/gettingstarted) page for compiling and
50+
2. Follow the Mesos [Getting Started](http://mesos.apache.org/getting-started) page for compiling and
5151
installing Mesos
5252

5353
**Note:** If you want to run Mesos without installing it into the default paths on your system
@@ -159,7 +159,7 @@ By setting the Mesos proxy config property (requires mesos version >= 1.4), `--c
159159
If you like to run the `MesosClusterDispatcher` with Marathon, you need to run the `MesosClusterDispatcher` in the foreground (i.e: `bin/spark-class org.apache.spark.deploy.mesos.MesosClusterDispatcher`). Note that the `MesosClusterDispatcher` not yet supports multiple instances for HA.
160160

161161
The `MesosClusterDispatcher` also supports writing recovery state into Zookeeper. This will allow the `MesosClusterDispatcher` to be able to recover all submitted and running containers on relaunch. In order to enable this recovery mode, you can set SPARK_DAEMON_JAVA_OPTS in spark-env by configuring `spark.deploy.recoveryMode` and related spark.deploy.zookeeper.* configurations.
162-
For more information about these configurations please refer to the configurations [doc](configurations.html#deploy).
162+
For more information about these configurations please refer to the configurations [doc](configuration.html#deploy).
163163

164164
You can also specify any additional jars required by the `MesosClusterDispatcher` in the classpath by setting the environment variable SPARK_DAEMON_CLASSPATH in spark-env.
165165

docs/spark-standalone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ By default, standalone scheduling clusters are resilient to Worker failures (ins
364364

365365
Utilizing ZooKeeper to provide leader election and some state storage, you can launch multiple Masters in your cluster connected to the same ZooKeeper instance. One will be elected "leader" and the others will remain in standby mode. If the current leader dies, another Master will be elected, recover the old Master's state, and then resume scheduling. The entire recovery process (from the time the first leader goes down) should take between 1 and 2 minutes. Note that this delay only affects scheduling _new_ applications -- applications that were already running during Master failover are unaffected.
366366

367-
Learn more about getting started with ZooKeeper [here](http://zookeeper.apache.org/doc/trunk/zookeeperStarted.html).
367+
Learn more about getting started with ZooKeeper [here](http://zookeeper.apache.org/doc/current/zookeeperStarted.html).
368368

369369
**Configuration**
370370

docs/sql-programming-guide.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,7 @@ To load a CSV file you can use:
501501

502502
</div>
503503
</div>
504+
504505
### Run SQL on files directly
505506

506507
Instead of using read API to load a file into DataFrame and query it, you can also query that

docs/tuning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ temporary objects created during task execution. Some steps which may be useful
219219

220220
* Try the G1GC garbage collector with `-XX:+UseG1GC`. It can improve performance in some situations where
221221
garbage collection is a bottleneck. Note that with large executor heap sizes, it may be important to
222-
increase the [G1 region size](https://blogs.oracle.com/g1gc/entry/g1_gc_tuning_a_case)
222+
increase the [G1 region size](http://www.oracle.com/technetwork/articles/java/g1gc-1984535.html)
223223
with `-XX:G1HeapRegionSize`
224224

225225
* As an example, if your task is reading data from HDFS, the amount of memory used by the task can be estimated using

0 commit comments

Comments
 (0)