@@ -397,12 +397,6 @@ def debug(address: str, verbose: bool):
397
397
default = 0 ,
398
398
help = "the port to use for starting the node manager" ,
399
399
)
400
- @click .option (
401
- "--gcs-server-port" ,
402
- required = False ,
403
- type = int ,
404
- help = "Port number for the GCS server." ,
405
- )
406
400
@click .option (
407
401
"--min-worker-port" ,
408
402
required = False ,
@@ -519,12 +513,6 @@ def debug(address: str, verbose: bool):
519
513
default = None ,
520
514
help = "the port for dashboard agents to listen for grpc on." ,
521
515
)
522
- @click .option (
523
- "--dashboard-grpc-port" ,
524
- type = int ,
525
- default = None ,
526
- help = "(Deprecated) No longer used and will be removed in a future version of Ray." ,
527
- )
528
516
@click .option (
529
517
"--runtime-env-agent-port" ,
530
518
type = int ,
@@ -561,16 +549,6 @@ def debug(address: str, verbose: bool):
561
549
default = False ,
562
550
help = "do not redirect non-worker stdout and stderr to files" ,
563
551
)
564
- @click .option (
565
- "--plasma-store-socket-name" ,
566
- default = None ,
567
- help = "manually specify the socket name of the plasma store" ,
568
- )
569
- @click .option (
570
- "--raylet-socket-name" ,
571
- default = None ,
572
- help = "manually specify the socket path of the raylet process" ,
573
- )
574
552
@click .option (
575
553
"--temp-dir" ,
576
554
default = None ,
@@ -713,7 +691,6 @@ def start(
713
691
redis_shard_ports ,
714
692
object_manager_port ,
715
693
node_manager_port ,
716
- gcs_server_port ,
717
694
min_worker_port ,
718
695
max_worker_port ,
719
696
worker_port_list ,
@@ -728,16 +705,13 @@ def start(
728
705
dashboard_host ,
729
706
dashboard_port ,
730
707
dashboard_agent_listen_port ,
731
- dashboard_grpc_port ,
732
708
dashboard_agent_grpc_port ,
733
709
runtime_env_agent_port ,
734
710
block ,
735
711
plasma_directory ,
736
712
object_spilling_directory ,
737
713
autoscaling_config ,
738
714
no_redirect_output ,
739
- plasma_store_socket_name ,
740
- raylet_socket_name ,
741
715
temp_dir ,
742
716
storage ,
743
717
system_config ,
@@ -757,13 +731,6 @@ def start(
757
731
):
758
732
"""Start Ray processes manually on the local machine."""
759
733
760
- if gcs_server_port is not None :
761
- cli_logger .error (
762
- "`{}` is deprecated and ignored. Use {} to specify "
763
- "GCS server port on head node." ,
764
- cf .bold ("--gcs-server-port" ),
765
- cf .bold ("--port" ),
766
- )
767
734
# Whether the original arguments include node_ip_address.
768
735
include_node_ip_address = False
769
736
if node_ip_address is not None :
@@ -807,21 +774,6 @@ def start(
807
774
cf .bold ('--labels="key1=val1,key2=val2"' ),
808
775
)
809
776
labels_dict = {** labels_from_file , ** labels_from_string }
810
-
811
- if plasma_store_socket_name is not None :
812
- warnings .warn (
813
- "plasma_store_socket_name is deprecated and will be removed. You are not "
814
- "supposed to specify this parameter as it's internal." ,
815
- DeprecationWarning ,
816
- stacklevel = 2 ,
817
- )
818
- if raylet_socket_name is not None :
819
- warnings .warn (
820
- "raylet_socket_name is deprecated and will be removed. You are not "
821
- "supposed to specify this parameter as it's internal." ,
822
- DeprecationWarning ,
823
- stacklevel = 2 ,
824
- )
825
777
if temp_dir and not head :
826
778
cli_logger .warning (
827
779
f"`--temp-dir={ temp_dir } ` option will be ignored. "
@@ -853,10 +805,6 @@ def start(
853
805
"--storage is deprecated and will be removed in a future version of Ray." ,
854
806
)
855
807
856
- if dashboard_grpc_port is not None :
857
- warnings .warn (
858
- "--dashboard-grpc-port is deprecated and will be removed in a future version of Ray." ,
859
- )
860
808
ray_params = ray ._private .parameter .RayParams (
861
809
node_ip_address = node_ip_address ,
862
810
node_name = node_name if node_name else node_ip_address ,
@@ -879,8 +827,6 @@ def start(
879
827
plasma_directory = plasma_directory ,
880
828
object_spilling_directory = object_spilling_directory ,
881
829
huge_pages = False ,
882
- plasma_store_socket_name = plasma_store_socket_name ,
883
- raylet_socket_name = raylet_socket_name ,
884
830
temp_dir = temp_dir ,
885
831
storage = storage ,
886
832
include_dashboard = include_dashboard ,
0 commit comments