Skip to main content

Scheduled Scaling

Scheduled scaling lets you resize a Dedicated serving cluster at predefined times. Use it when your workload has recurring patterns, such as weekday business-hour traffic, weekend low-traffic periods, or predictable batch/query windows.

📘Note

Scaling Query CU manually is supported on all plans.

Scaling replicas manually is supported on the Enterprise plan and above.

Auto-scaling and scheduled scaling are supported on the Enterprise plan and above.

Before you start

Before you start, read Plan Cluster Scaling to understand key scaling concepts and choose the right scaling approach for your workload.

How scheduled scaling works

Scheduled scaling changes cluster resources according to schedules that you define. Each schedule includes a time expression and a target resource value.

ResourceWhat the schedule changesUse it when
Query CUChanges the cluster Query CU count to the scheduled target value.You need more capacity during recurring peak periods, or lower capacity during predictable low-traffic periods.
ReplicaChanges the cluster replica count to the scheduled target value.You need more query throughput or availability during recurring traffic peaks.

Scheduled scaling is different from dynamic scaling. Scheduled scaling runs at the times you configure. Dynamic scaling adjusts resources automatically within a minimum and maximum range based on workload metrics.

When to use scheduled scaling

ScenarioRecommended schedule
Your application has higher traffic during weekday business hours.Set scheduled scaling to trigger scaling up before business hours and scaling down after business hours.
Your workload is lighter on weekends.Set scheduled scaling to trigger scaling down on weekends and restore capacity before Monday traffic starts.
You run recurring batch search, evaluation, or analytics jobs.Set scheduled scaling to trigger scaling up before the job window and scaling down after the job completes.
You have predictable traffic peaks but do not need metric-based automatic scaling.Use scheduled scaling instead of dynamic scaling for deterministic resource changes.

Configure scheduled scaling via web console

The interval between schedules should be greater than 30 minutes.

Query CU scheduled scaling

1

Navigate to the Cluster Details page.

2

Click on Scale in the CU Settings card.

3

Enable scheduled scaling.

4

Configure the timezone and schedules. You can use either the basic mode or advanced mode (write cron expressions) for setting the schedules. For details about how to use the advanced mode to write cron expressions, see Understand cron expressions.

5

Click on Save.

Replica scheduled scaling

1

Navigate to the Cluster Details page.

2

Click on Scale in the Replica Settings card.

3

Enable scheduled scaling.

4

Configure the timezone and schedules. You can use either the basic mode or advanced mode (write cron expressions) for setting the schedules. For details about how to use the advanced mode to write cron expressions, see Understand cron expressions.

5

Click on Save.

Configure scheduled scaling via RESTful API

With the RESTful API, you can configure scheduled scaling for both Query CU and replica in a single Modify Cluster request.

For details about how to use the advanced mode to write cron expressions, see Understand cron expressions.

bash
export BASE_URL="https://api.cloud.zilliz.com"
export TOKEN="YOUR_API_KEY"
export CLUSTER_ID="inxx-xxxxxxxxxxxxxxx"

curl --request POST \
--url "${BASE_URL}/v2/clusters/${CLUSTER_ID}/modify" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
-d '{
"autoscaling": {
"cu": {
"schedules": [
{
"cron": "0 9 * * 1-5",
"target": 2
}
]
},
"replica": {
"schedules": [
{
"cron": "0 9 * * 1-5",
"target": 2
}
]
}
}
}'

View scaling progress

Once a scaling event is triggered, Zilliz Cloud generates a job record. You can check the progress on the Jobs page.

1

In the Zilliz Cloud console, go to the target project.

2

Go to Jobs.

3

Find the scaling job for the target cluster.

4

Check the job status.

When the scaling job is in progress, the cluster status is Modifying. When the job succeeds, the cluster status changes back to Running.

📘Note

During a scaling job, Zilliz Cloud continues to bill the cluster based on the previous configuration. The new Query CU or replica configuration is used for billing only after the scaling job completes successfully. This applies to both scale-up and scale-down operations.

FAQ

What happens if two schedules are too close to each other?

The interval between schedules should be greater than 30 minutes. Avoid creating schedules that trigger too frequently or overlap with each other.

What timezone does cron use?

Cron schedules are evaluated in the timezone you select when configuring scheduled scaling.

Ctrl I