Menghapus cluster Ray di Vertex AI

Setelah selesai mengembangkan aplikasi untuk cluster Ray Anda di Vertex AI, hapus cluster tersebut untuk menghindari penagihan yang tidak perlu.

Konsol

  1. Di Google Cloud konsol, buka halaman Ray on Vertex AI.

    Buka halaman Ray

  2. Pilih cluster Ray on Vertex AI yang ingin Anda hapus.

  3. Klik Hapus.

Vertex AI SDK untuk Python

Dari lingkungan Python yang sama tempat Anda terhubung ke cluster Ray di Vertex AI, jalankan perintah berikut:

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

# Delete cluster
vertex_ray.delete_ray_cluster(CLUSTER_RESOURCE_NAME)

Dengan:

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