mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 13:19:38 +08:00
Remove the '--include-java' option (#10594)
This commit is contained in:
@@ -178,8 +178,6 @@ class Node:
|
||||
else:
|
||||
self._webui_url = (
|
||||
ray.services.get_webui_url_from_redis(redis_client))
|
||||
ray_params.include_java = (
|
||||
ray.services.include_java_from_redis(redis_client))
|
||||
|
||||
if head or not connect_only:
|
||||
# We need to start a local raylet.
|
||||
@@ -577,7 +575,6 @@ class Node:
|
||||
redis_max_clients=self._ray_params.redis_max_clients,
|
||||
redirect_worker_output=True,
|
||||
password=self._ray_params.redis_password,
|
||||
include_java=self._ray_params.include_java,
|
||||
fate_share=self.kernel_fate_share)
|
||||
assert (
|
||||
ray_constants.PROCESS_TYPE_REDIS_SERVER not in self.all_processes)
|
||||
@@ -728,7 +725,6 @@ class Node:
|
||||
stdout_file=stdout_file,
|
||||
stderr_file=stderr_file,
|
||||
config=self._config,
|
||||
include_java=self._ray_params.include_java,
|
||||
java_worker_options=self._ray_params.java_worker_options,
|
||||
load_code_from_local=self._ray_params.load_code_from_local,
|
||||
huge_pages=self._ray_params.huge_pages,
|
||||
|
||||
@@ -84,8 +84,6 @@ class RayParams:
|
||||
monitor the log files for all processes on this node and push their
|
||||
contents to Redis.
|
||||
autoscaling_config: path to autoscaling config file.
|
||||
include_java (bool): If True, the raylet backend can also support
|
||||
Java worker.
|
||||
java_worker_options (list): The command options for Java worker.
|
||||
load_code_from_local: Whether load code from local file or from GCS.
|
||||
metrics_agent_port(int): The port to bind metrics agent.
|
||||
@@ -138,7 +136,6 @@ class RayParams:
|
||||
temp_dir=None,
|
||||
include_log_monitor=None,
|
||||
autoscaling_config=None,
|
||||
include_java=False,
|
||||
java_worker_options=None,
|
||||
load_code_from_local=False,
|
||||
start_initial_python_workers_for_first_job=False,
|
||||
@@ -183,7 +180,6 @@ class RayParams:
|
||||
self.temp_dir = temp_dir
|
||||
self.include_log_monitor = include_log_monitor
|
||||
self.autoscaling_config = autoscaling_config
|
||||
self.include_java = include_java
|
||||
self.java_worker_options = java_worker_options
|
||||
self.load_code_from_local = load_code_from_local
|
||||
self.metrics_agent_port = metrics_agent_port
|
||||
|
||||
@@ -343,11 +343,6 @@ def dashboard(cluster_config_file, cluster_name, port, remote_port):
|
||||
"--temp-dir",
|
||||
default=None,
|
||||
help="manually specify the root temporary dir of the Ray process")
|
||||
@click.option(
|
||||
"--include-java",
|
||||
is_flag=True,
|
||||
default=None,
|
||||
help="Enable Java worker support.")
|
||||
@click.option(
|
||||
"--java-worker-options",
|
||||
required=False,
|
||||
@@ -397,7 +392,7 @@ def start(node_ip_address, redis_address, address, redis_port, port,
|
||||
head, include_webui, webui_host, include_dashboard, dashboard_host,
|
||||
dashboard_port, block, plasma_directory, huge_pages,
|
||||
autoscaling_config, no_redirect_worker_output, no_redirect_output,
|
||||
plasma_store_socket_name, raylet_socket_name, temp_dir, include_java,
|
||||
plasma_store_socket_name, raylet_socket_name, temp_dir,
|
||||
java_worker_options, code_search_path, load_code_from_local,
|
||||
system_config, lru_evict, enable_object_reconstruction,
|
||||
metrics_export_port, log_style, log_color, verbose):
|
||||
@@ -505,7 +500,6 @@ def start(node_ip_address, redis_address, address, redis_port, port,
|
||||
plasma_store_socket_name=plasma_store_socket_name,
|
||||
raylet_socket_name=raylet_socket_name,
|
||||
temp_dir=temp_dir,
|
||||
include_java=include_java,
|
||||
include_dashboard=include_dashboard,
|
||||
dashboard_host=dashboard_host,
|
||||
dashboard_port=dashboard_port,
|
||||
@@ -564,7 +558,6 @@ def start(node_ip_address, redis_address, address, redis_port, port,
|
||||
num_redis_shards=num_redis_shards,
|
||||
redis_max_clients=redis_max_clients,
|
||||
autoscaling_config=autoscaling_config,
|
||||
include_java=False,
|
||||
)
|
||||
|
||||
node = ray.node.Node(
|
||||
@@ -671,12 +664,6 @@ def start(node_ip_address, redis_address, address, redis_port, port,
|
||||
raise ValueError(
|
||||
"If --head is not passed in, the --include-dashboard"
|
||||
"flag is not relevant.")
|
||||
if include_java is not None:
|
||||
cli_logger.abort("`{}` should not be specified without `{}`.",
|
||||
cf.bold("--include-java"), cf.bold("--head"))
|
||||
|
||||
raise ValueError("--include-java should only be set for the head "
|
||||
"node.")
|
||||
|
||||
# Wait for the Redis server to be started. And throw an exception if we
|
||||
# can't connect to it.
|
||||
|
||||
+20
-22
@@ -123,18 +123,6 @@ def new_port():
|
||||
return random.randint(10000, 65535)
|
||||
|
||||
|
||||
def include_java_from_redis(redis_client):
|
||||
"""This is used for query include_java bool from redis.
|
||||
|
||||
Args:
|
||||
redis_client (StrictRedis): The redis client to GCS.
|
||||
|
||||
Returns:
|
||||
True if this cluster backend enables Java worker.
|
||||
"""
|
||||
return redis_client.get("INCLUDE_JAVA") == b"1"
|
||||
|
||||
|
||||
def find_redis_address_or_die():
|
||||
pids = psutil.pids()
|
||||
redis_addresses = set()
|
||||
@@ -683,7 +671,6 @@ def start_redis(node_ip_address,
|
||||
redirect_worker_output=False,
|
||||
password=None,
|
||||
use_credis=None,
|
||||
include_java=False,
|
||||
fate_share=None):
|
||||
"""Start the Redis global state store.
|
||||
|
||||
@@ -709,8 +696,6 @@ def start_redis(node_ip_address,
|
||||
use_credis: If True, additionally load the chain-replicated libraries
|
||||
into the redis servers. Defaults to None, which means its value is
|
||||
set by the presence of "RAY_USE_NEW_GCS" in os.environ.
|
||||
include_java (bool): If True, the raylet backend can also support
|
||||
Java worker.
|
||||
|
||||
Returns:
|
||||
A tuple of the address for the primary Redis shard, a list of
|
||||
@@ -784,10 +769,6 @@ def start_redis(node_ip_address,
|
||||
primary_redis_client.set("RedirectOutput", 1
|
||||
if redirect_worker_output else 0)
|
||||
|
||||
# put the include_java bool to primary redis-server, so that other nodes
|
||||
# can access it and know whether or not to enable cross-languages.
|
||||
primary_redis_client.set("INCLUDE_JAVA", 1 if include_java else 0)
|
||||
|
||||
# Init job counter to GCS.
|
||||
primary_redis_client.set("JobCounter", 0)
|
||||
|
||||
@@ -1269,7 +1250,6 @@ def start_raylet(redis_address,
|
||||
stdout_file=None,
|
||||
stderr_file=None,
|
||||
config=None,
|
||||
include_java=False,
|
||||
java_worker_options=None,
|
||||
load_code_from_local=False,
|
||||
huge_pages=False,
|
||||
@@ -1313,8 +1293,6 @@ def start_raylet(redis_address,
|
||||
no redirection should happen, then this should be None.
|
||||
config (dict|None): Optional Raylet configuration that will
|
||||
override defaults in RayConfig.
|
||||
include_java (bool): If True, the raylet backend can also support
|
||||
Java worker.
|
||||
java_worker_options (list): The command options for Java worker.
|
||||
code_search_path (list): Code search path for worker. code_search_path
|
||||
is added to worker command in non-multi-tenancy mode and job_config
|
||||
@@ -1346,6 +1324,26 @@ def start_raylet(redis_address,
|
||||
|
||||
gcs_ip_address, gcs_port = redis_address.split(":")
|
||||
|
||||
has_java_command = False
|
||||
try:
|
||||
java_proc = subprocess.run(
|
||||
["java", "-version"],
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE)
|
||||
if java_proc.returncode == 0:
|
||||
has_java_command = True
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
ray_java_installed = False
|
||||
try:
|
||||
jars_dir = get_ray_jars_dir()
|
||||
if os.path.exists(jars_dir):
|
||||
ray_java_installed = True
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
include_java = has_java_command and ray_java_installed
|
||||
if include_java is True:
|
||||
java_worker_command = build_java_worker_command(
|
||||
json.loads(java_worker_options) if java_worker_options else [],
|
||||
|
||||
@@ -6,7 +6,7 @@ import ray.test_utils
|
||||
|
||||
|
||||
def test_cross_language_raise_kwargs(shutdown_only):
|
||||
ray.init(_load_code_from_local=True, _include_java=True)
|
||||
ray.init(_load_code_from_local=True)
|
||||
|
||||
with pytest.raises(Exception, match="kwargs"):
|
||||
ray.java_function("a", "b").remote(x="arg1")
|
||||
@@ -16,7 +16,7 @@ def test_cross_language_raise_kwargs(shutdown_only):
|
||||
|
||||
|
||||
def test_cross_language_raise_exception(shutdown_only):
|
||||
ray.init(_load_code_from_local=True, _include_java=True)
|
||||
ray.init(_load_code_from_local=True)
|
||||
|
||||
class PythonObject(object):
|
||||
pass
|
||||
|
||||
@@ -491,7 +491,6 @@ def init(
|
||||
_driver_object_store_memory=None,
|
||||
_memory=None,
|
||||
_redis_password=ray_constants.REDIS_DEFAULT_PASSWORD,
|
||||
_include_java=False,
|
||||
_java_worker_options=None,
|
||||
_code_search_path=None,
|
||||
_temp_dir=None,
|
||||
@@ -580,8 +579,6 @@ def init(
|
||||
_memory: Amount of reservable memory resource to create.
|
||||
_redis_password (str): Prevents external clients without the password
|
||||
from connecting to Redis if provided.
|
||||
_include_java: Boolean flag indicating whether or not to enable java
|
||||
workers.
|
||||
_temp_dir (str): If provided, specifies the root temporary
|
||||
directory for the Ray process. Defaults to an OS-specific
|
||||
conventional location, e.g., "/tmp/ray".
|
||||
@@ -673,7 +670,6 @@ def init(
|
||||
redis_password=_redis_password,
|
||||
plasma_directory=None,
|
||||
huge_pages=None,
|
||||
include_java=_include_java,
|
||||
include_dashboard=include_dashboard,
|
||||
dashboard_host=dashboard_host,
|
||||
dashboard_port=dashboard_port,
|
||||
|
||||
Reference in New Issue
Block a user