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

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

Console

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

    [Ray] ページに移動

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

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

Vertex AI SDK for Python

Vertex AI の Ray クラスタに接続したときと同じ 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, LOCATION, CLUSTER_NAME)