Skip to content

Commit 8ae422c

Browse files
authored
Updated search autoscaling utilization + version bump (dart-lang#9286)
1 parent 2ac37f6 commit 8ae422c

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ Important changes to data models, configuration, and migrations between each
22
AppEngine version, listed here to ease deployment and troubleshooting.
33

44
## Next Release (replace with git tag when deployed)
5+
* Bump runtimeVersion to `2026.03.13`.
6+
* Note: Started blocking new uploads without `README.md`.
57

68
## `20260312t144500-all`
79
* Bump runtimeVersion to `2026.03.10`.

app/lib/shared/versions.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$');
2424
/// when the version switch happens.
2525
const _acceptedRuntimeVersions = <String>[
2626
// The current [runtimeVersion].
27-
'2026.03.10',
27+
'2026.03.13',
2828
// Fallback runtime versions.
29+
'2026.03.10',
2930
'2026.03.06',
30-
'2026.02.24',
3131
];
3232

3333
/// Sets the current runtime versions.

search.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ automatic_scaling:
2727
# This metrics is observed to go up to 0.20.
2828
# Threshold is calibrated to be triggered if the new isolate is starting + the existing is above 50% load.
2929
cpu_utilization:
30-
target_utilization: 0.19
30+
target_utilization: 0.175
3131
# The number of seconds that the autoscaler should wait before it starts collecting information from a new instance.
3232
# Skipping the collection in the first 20 minutes.
3333
cool_down_period_sec: 1200

0 commit comments

Comments
 (0)