|
52 | 52 | def create_ray_cluster( |
53 | 53 | head_node_type: Optional[resources.Resources] = resources.Resources(), |
54 | 54 | python_version: Optional[str] = "3.10", |
55 | | - ray_version: Optional[str] = "2.9", |
| 55 | + ray_version: Optional[str] = "2.33", |
56 | 56 | network: Optional[str] = None, |
57 | 57 | service_account: Optional[str] = None, |
58 | 58 | cluster_name: Optional[str] = None, |
@@ -106,7 +106,7 @@ def create_ray_cluster( |
106 | 106 | head_node_type: The head node resource. Resources.node_count must be 1. |
107 | 107 | If not set, default value of Resources() class will be used. |
108 | 108 | python_version: Python version for the ray cluster. |
109 | | - ray_version: Ray version for the ray cluster. |
| 109 | + ray_version: Ray version for the ray cluster. Default is 2.33.0. |
110 | 110 | network: Virtual private cloud (VPC) network. For Ray Client, VPC |
111 | 111 | peering is required to connect to the Ray Cluster managed in the |
112 | 112 | Vertex API service. For Ray Job API, VPC network is not required |
@@ -157,7 +157,7 @@ def create_ray_cluster( |
157 | 157 | local_ray_verion = _validation_utils.get_local_ray_version() |
158 | 158 | if ray_version != local_ray_verion: |
159 | 159 | if custom_images is None and head_node_type.custom_image is None: |
160 | | - install_ray_version = "2.9.3" |
| 160 | + install_ray_version = "2.33.0" |
161 | 161 | logging.info( |
162 | 162 | "[Ray on Vertex]: Local runtime has Ray version %s" |
163 | 163 | ", but the requested cluster runtime has %s. Please " |
|
0 commit comments