Skip to content

Commit 5f8b236

Browse files
committed
chore: Bump CPU request and limit of router container
Since Druid 35.0.1 the router container failed to start up due to the following error: 'Insufficient configured threads'. The CPU resources are now bumped to be in line with other containers, like the historical and broker containers.
1 parent 50407cb commit 5f8b236

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

rust/operator-binary/src/crd/resource.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,8 @@ pub static COORDINATOR_RESOURCES: LazyLock<
232232
pub static ROUTER_RESOURCES: LazyLock<ResourcesFragment<storage::DruidStorage, NoRuntimeLimits>> =
233233
LazyLock::new(|| ResourcesFragment {
234234
cpu: CpuLimitsFragment {
235-
min: Some(Quantity("100m".to_owned())),
236-
max: Some(Quantity("400m".to_owned())),
235+
min: Some(Quantity("300m".to_owned())),
236+
max: Some(Quantity("1200m".to_owned())),
237237
},
238238
memory: MemoryLimitsFragment {
239239
limit: Some(Quantity("512Mi".to_owned())),

0 commit comments

Comments
 (0)