Skip to content

Commit

Permalink
Update doc for RayContext (intel-analytics#3211)
Browse files Browse the repository at this point in the history
* update

* update
  • Loading branch information
hkvision committed Dec 9, 2020
1 parent e1d2f6a commit 6b6da2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/orca/src/bigdl/orca/ray/raycontext.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,17 +278,17 @@ def __init__(self, sc, redis_port=None, password="123456", object_store_memory=N
to start raylets.
:param sc: An instance of SparkContext.
:param redis_port: redis port for the "head" node.
:param redis_port: The redis port for the ray head node. Default is None.
The value would be randomly picked if not specified.
:param password: Password for the redis. Default to be "123456" if not specified.
:param password: The password for redis. Default to be "123456" if not specified.
:param object_store_memory: The memory size for ray object_store in string.
This can be specified in bytes(b), kilobytes(k), megabytes(m) or gigabytes(g).
For example, 50b, 100k, 250m, 30g.
For example, "50b", "100k", "250m", "30g".
:param verbose: True for more logs when starting ray. Default is False.
:param env: The environment variable dict for running ray processes. Default is None.
:param extra_params: The key value dict for extra options to launch ray.
For example, extra_params={"temp-dir": "/tmp/ray/"}
:param include_webui: whether to include ray web ui
:param include_webui: True for including web ui when starting ray. Default is False.
:param num_ray_nodes: The number of raylets to start across the cluster.
For Spark local mode, you don't need to specify this value.
For Spark cluster mode, it is default to be the number of Spark executors. If
Expand Down

0 comments on commit 6b6da2b

Please sign in to comment.