Remove ref counting dependencies on ray.get() (#6412)

* Remove ref counting dependencies on Get()

* comment

* don't send IDs when disabled

* pass through internal config

* fix

* allow reinit

* remove flag
This commit is contained in:
Edward Oakes
2019-12-10 18:11:34 -08:00
committed by GitHub
parent 2f19b01898
commit 044527adb8
11 changed files with 146 additions and 24 deletions
+3 -1
View File
@@ -1200,10 +1200,12 @@ def start_raylet(redis_address,
"--object-store-name={} "
"--raylet-name={} "
"--redis-address={} "
"--config-list={} "
"--temp-dir={}".format(
sys.executable, worker_path, node_ip_address,
node_manager_port, plasma_store_name,
raylet_name, redis_address, temp_dir))
raylet_name, redis_address, config_str,
temp_dir))
if redis_password:
start_worker_command += " --redis-password {}".format(redis_password)