Skip to content

Commit e3cdc8a

Browse files
authored
fix: Point mxla_maxtext_nightly_gke to new cluster auto-v5p-8-bodaborg (GoogleCloudPlatform#1217)
Following the strategy to leverage increased compute capacity, this commit migrates all four test cases within the `mxla_maxtext_nightly_gke` DAG to the `auto-v5p-8-bodaborg` cluster. This move offloads pressure from the original `v5p-8-bodaborg` cluster and utilizes the expanded resources available in the new environment.
1 parent 52363da commit e3cdc8a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

dags/multipod/mxla_maxtext_nightly_gke.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
from dags.common.vm_resource import TpuVersion, Zone, DockerImage, XpkClusters, Project
2424
from dags.multipod.configs import gke_config
2525

26-
# Run once a day at 9 am UTC (1 am PST)
27-
SCHEDULED_TIME = "0 2 * * *" if composer_env.is_prod_env() else None
26+
# Run once a day at 5 pm UTC (1 am PST)
27+
SCHEDULED_TIME = "0 17 * * *" if composer_env.is_prod_env() else None
2828

2929
with models.DAG(
3030
dag_id="mxla_maxtext_nightly_gke",
@@ -51,7 +51,7 @@
5151

5252
# v5p tests
5353
maxtext_nightly_1slice_v5p_8 = gke_config.get_gke_maxtext_nightly_config(
54-
cluster=XpkClusters.TPU_V5P_8_CLUSTER,
54+
cluster=XpkClusters.TPU_V5P_8_CLUSTER_V2,
5555
time_out_in_min=60,
5656
test_name=default_test_name,
5757
docker_image=jax_nightly_image.value,
@@ -60,7 +60,7 @@
6060

6161
maxtext_nightly_2slice_v5p_8 = gke_config.get_gke_maxtext_nightly_config(
6262
num_slices=2,
63-
cluster=XpkClusters.TPU_V5P_8_CLUSTER,
63+
cluster=XpkClusters.TPU_V5P_8_CLUSTER_V2,
6464
time_out_in_min=60,
6565
test_name=default_test_name,
6666
docker_image=jax_nightly_image.value,
@@ -69,7 +69,7 @@
6969

7070
maxtext_nightly_4slice_v5p_8 = gke_config.get_gke_maxtext_nightly_config(
7171
num_slices=4,
72-
cluster=XpkClusters.TPU_V5P_8_CLUSTER,
72+
cluster=XpkClusters.TPU_V5P_8_CLUSTER_V2,
7373
time_out_in_min=60,
7474
test_name=default_test_name,
7575
docker_image=jax_nightly_image.value,
@@ -78,7 +78,7 @@
7878

7979
maxtext_nightly_8slice_v5p_8 = gke_config.get_gke_maxtext_nightly_config(
8080
num_slices=8,
81-
cluster=XpkClusters.TPU_V5P_8_CLUSTER,
81+
cluster=XpkClusters.TPU_V5P_8_CLUSTER_V2,
8282
time_out_in_min=60,
8383
test_name=default_test_name,
8484
docker_image=jax_nightly_image.value,

0 commit comments

Comments
 (0)