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

[SW-2170] Update description of spark.ext.h2o.external.cluster.size in SW Documentation #2039

Merged
merged 2 commits into from Apr 16, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -298,11 +298,9 @@ External backend configuration properties
| ``spark.ext.h2o.cloud.representative`` | ``None`` | ``setH2OCluster(String)`` | ip:port of arbitrary H2O node to |
| | | | identify external H2O cluster. |
+-------------------------------------------------------+----------------+-------------------------------------------------+-------------------------------------+
| ``spark.ext.h2o.external.cluster.size`` | ``None`` | ``setClusterSize(Integer)`` | Number of H2O nodes to start in |
| | | | ``auto`` mode and wait for in |
| | | | ``manual`` mode when starting |
| | | | Sparkling Water in external H2O |
| | | | cluster mode. |
| ``spark.ext.h2o.external.cluster.size`` | ``None`` | ``setClusterSize(Integer)`` | Number of H2O nodes to start when |
| | | | ``auto`` mode of the external |
| | | | backend is set. |
+-------------------------------------------------------+----------------+-------------------------------------------------+-------------------------------------+
| ``spark.ext.h2o.cluster.start.timeout`` | ``120s`` | ``setClusterStartTimeout(Integer)`` | Timeout in seconds for starting |
| | | | H2O external cluster. |
Expand Down
2 changes: 0 additions & 2 deletions doc/src/site/sphinx/deployment/backends.rst
Expand Up @@ -211,7 +211,6 @@ To connect to this external cluster, run the following commands:
.setExternalClusterMode()
.useManualClusterStart()
.setH2OCluster("representant_ip", representant_port)
.setClusterSize(3)
.setCloudName("test")
val hc = H2OContext.getOrCreate(conf)

Expand All @@ -226,7 +225,6 @@ To connect to this external cluster, run the following commands:
.setExternalClusterMode()
.useManualClusterStart()
.setH2OCluster("representant_ip", representant_port)
.setClusterSize(3)
.setCloudName("test")
hc = H2OContext.getOrCreate(conf)

Expand Down