Skip to content

Commit e324ed4

Browse files
authored
chore: Add 35.0.1, remove 33.0.0 (#786)
* docs: Update supported versions for 26.3 * test: Add 35.0.1, remove 33.0.0 from test definition * chore: Update Druid version from 34.0.0 to 35.0.1 * 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. * test: Correct URL due to TLS SNI errors * chore: Bump examples/test resources to 35.0.1 * docs: Update resource requirements * docs: Update comment about resource calculation
1 parent b57cad8 commit e324ed4

File tree

20 files changed

+30
-28
lines changed

20 files changed

+30
-28
lines changed

docs/modules/druid/examples/getting_started/druid.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-druid
66
spec:
77
image:
8-
productVersion: 34.0.0
8+
productVersion: 35.0.1
99
clusterConfig:
1010
zookeeperConfigMapName: simple-druid-znode
1111
deepStorage:

docs/modules/druid/examples/getting_started/druid.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-druid
66
spec:
77
image:
8-
productVersion: 34.0.0
8+
productVersion: 35.0.1
99
clusterConfig:
1010
zookeeperConfigMapName: simple-druid-znode
1111
deepStorage:

docs/modules/druid/pages/usage-guide/resources-and-storage.adoc

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ include::home:concepts:stackable_resource_requests.adoc[]
1111

1212
A minimal HA setup consisting of 2 Pods of each role has the following https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/[resource requirements]:
1313

14-
* `4700m` CPU request
15-
* `13800m` CPU limit
14+
// We are not sure how these values were calculated in the first place, but we assume the are calculated like this:
15+
// The sum of resources listed below + HDFS resources + ZK resources + some overhead (maybe for operators).
16+
// The amount of resources for HDFS and ZK are taken from their individual documentation pages.
17+
* `5100m` CPU request
18+
* `15600m` CPU limit
1619
* `12144Mi` memory request and limit
1720

1821
Of course, additional services require additional resources.
@@ -35,8 +38,8 @@ spec:
3538
config:
3639
resources:
3740
cpu:
38-
min: 100m
39-
max: 400m
41+
min: 300m
42+
max: 1200m
4043
memory:
4144
limit: 512Mi
4245
historical:

docs/modules/druid/partials/supported-versions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
// This is a separate file, since it is used by both the direct Druid documentation, and the overarching
33
// Stackable Platform documentation.
44

5-
- 34.0.0
6-
- 33.0.0 (deprecated)
5+
- 35.0.1
6+
- 34.0.0 (deprecated)
77
- 30.0.1 (LTS)

examples/psql-s3/psql-s3-druid-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ metadata:
4545
name: psql-s3-druid
4646
spec:
4747
image:
48-
productVersion: 31.0.1
48+
productVersion: 35.0.1
4949
clusterConfig:
5050
deepStorage:
5151
s3:

examples/psql/psql-hdfs-druid-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ metadata:
5656
name: psql-druid
5757
spec:
5858
image:
59-
productVersion: 31.0.1
59+
productVersion: 35.0.1
6060
clusterConfig:
6161
deepStorage:
6262
hdfs:

examples/tls/tls-druid-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ metadata:
7878
name: derby-druid
7979
spec:
8080
image:
81-
productVersion: 31.0.1
81+
productVersion: 35.0.1
8282
clusterConfig:
8383
authentication:
8484
- authenticationClass: druid-mtls-authentication-class

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())),

rust/operator-binary/test/resources/crd/resource_merge/druid_cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
uid: test-resource-merge
88
spec:
99
image:
10-
productVersion: 30.0.0
10+
productVersion: 35.0.1
1111
clusterConfig:
1212
deepStorage:
1313
hdfs:

rust/operator-binary/test/resources/crd/resource_merge/segment_cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
uid: test-resource-merge
88
spec:
99
image:
10-
productVersion: 30.0.0
10+
productVersion: 35.0.1
1111
clusterConfig:
1212
deepStorage:
1313
hdfs:

0 commit comments

Comments
 (0)