Vertex AI 上の Ray クラスタを削除する

Ray on Vertex AI クラスタでアプリケーションの開発を完了したら、不要な課金を避けるためにクラスタを削除します。

コンソール

  1. Google Cloud コンソールで、[Vertex AI での Ray] ページに移動します。

    [Ray] ページに移動

  2. 削除する Ray on Vertex AI クラスタを選択します。

  3. [削除] をクリックします。

Vertex AI SDK for Python

Ray on Vertex AI クラスタに接続したときと同じ Python 環境から、次のコマンドを実行します。

# Shut down the Ray on Vertex AI if currently connected
ray.shutdown()

# Delete cluster
vertex_ray.delete_ray_cluster(CLUSTER_RESOURCE_NAME)

各要素の意味は次のとおりです。

  • CLUSTER_RESOURCE_NAME: CLUSTER_RESOURCE_NAME='projects/{}/locations/{}/persistentResources/{}'.format(PROJECT_ID, REGION, CLUSTER_NAME)