Skip to content

Commit f6fb02f

Browse files
committed
fix: Bump default memory reservation to 768Mi
1 parent cb16205 commit f6fb02f

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

docs/modules/hive/pages/usage-guide/resources.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A minimal HA setup consisting of 2 Hive metastore instances has the following ht
77

88
* `100m` CPU request
99
* `3000m` CPU limit
10-
* `1280m` memory request and limit
10+
* `1792Mi` memory request and limit
1111
1212
Of course, additional services, require additional resources. For Stackable components, see the corresponding documentation on further resource requirements.
1313

@@ -22,10 +22,10 @@ metastore:
2222
resources:
2323
requests:
2424
cpu: "250m"
25-
memory: "512Mi"
25+
memory: "768Mi"
2626
limits:
2727
cpu: "1000m"
28-
memory: "512Mi"
28+
memory: "768Mi"
2929
----
3030

3131
The operator may configure an additional container for log aggregation. This is done when log aggregation is configured as described in xref:concepts:logging.adoc[]. The resources for this container cannot be configured using the mechanism described above. Use xref:home:concepts:overrides.adoc#_pod_overrides[podOverrides] for this purpose.

rust/operator-binary/src/config/jvm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ mod tests {
127127
-Djavax.net.ssl.trustStorePassword=changeit \
128128
-Djavax.net.ssl.trustStoreType=pkcs12"
129129
);
130-
assert_eq!(hadoop_heapsize_env, "409");
130+
assert_eq!(hadoop_heapsize_env, "614");
131131
}
132132

133133
#[test]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ impl MetaStoreConfig {
475475
max: Some(Quantity("1000m".to_owned())),
476476
},
477477
memory: MemoryLimitsFragment {
478-
limit: Some(Quantity("512Mi".to_owned())),
478+
limit: Some(Quantity("768Mi".to_owned())),
479479
runtime_limits: NoRuntimeLimitsFragment {},
480480
},
481481
storage: MetastoreStorageConfigFragment {

tests/templates/kuttl/kerberos-hdfs/60-assert.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ spec:
1515
resources:
1616
limits:
1717
cpu: "1"
18-
memory: 512Mi
18+
memory: 768Mi
1919
requests:
2020
cpu: 250m
21-
memory: 512Mi
21+
memory: 768Mi
2222
{% if lookup('env', 'VECTOR_AGGREGATOR') %}
2323
- name: vector
2424
{% endif %}

tests/templates/kuttl/kerberos-s3/60-assert.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ spec:
1515
resources:
1616
limits:
1717
cpu: "1"
18-
memory: 512Mi
18+
memory: 768Mi
1919
requests:
2020
cpu: 250m
21-
memory: 512Mi
21+
memory: 768Mi
2222
{% if lookup('env', 'VECTOR_AGGREGATOR') %}
2323
- name: vector
2424
{% endif %}

tests/templates/kuttl/smoke/60-assert.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ spec:
1515
resources:
1616
limits:
1717
cpu: "1"
18-
memory: 512Mi
18+
memory: 768Mi
1919
requests:
2020
cpu: 250m
21-
memory: 512Mi
21+
memory: 768Mi
2222
{% if lookup('env', 'VECTOR_AGGREGATOR') %}
2323
- name: vector
2424
{% endif %}

0 commit comments

Comments
 (0)