You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The usage guide covers various aspects of configuring Superset and interconnection with other tools.
5
+
The usage guide covers various aspects of configuring OpenSearch and interconnection with other tools.
6
6
7
-
Learn about defining the amount of xref:usage-guide/storage-resource-configuration.adoc[resources] Superset uses or learn how to xref:usage-guide/connecting-druid.adoc[connect to Apache Druid] operated by the xref:druid:index.adoc[].
8
-
9
-
Configure xref:usage-guide/security.adoc#authentication[authentication] with LDAP and xref:usage-guide/security.adoc#authorization[authorization]. Observe your Superset instance with xref:usage-guide/logging.adoc[log aggregation] and xref:usage-guide/monitoring.adoc[monitoring].
7
+
Learn about defining the amount of xref:usage-guide/storage-resource-configuration.adoc[resources] OpenSearch uses.
:description: Superset resource configuration: default CPU and memory requests for HA setup with guidance for adapting production resource needs.
2
+
:description: Configure storage and resource allocation for OpenSearch nodes using Stackable Operator, including PersistentVolumeClaims, CPU, memory, and storage defaults.
3
+
4
+
== Storage for data volumes
5
+
6
+
You can mount volumes where data is stored by specifying https://kubernetes.io/docs/concepts/storage/persistent-volumes[PersistentVolumeClaims] for each individual role group:
7
+
8
+
[source,yaml]
9
+
----
10
+
nodes:
11
+
roleGroups:
12
+
default:
13
+
config:
14
+
resources:
15
+
storage:
16
+
logDirs:
17
+
capacity: 50Gi
18
+
----
19
+
20
+
In the above example, all OpenSearch nodes in the default role group store data (the location of the property `path.data`) on a `50Gi` volume.
21
+
22
+
If nothing is configured in the custom resource for a certain role group, then by default each Pod has a `8Gi` large local volume mount for the data location.
23
+
24
+
On role groups with only the `cluster_manager` role, you probably want to decrease this value, but increase it on role groups with the `data` role.
A minimal HA setup consisting of 3 nodes has the following https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/[resource requirements]:
7
31
8
-
A minimal HA setup consisting of 2 Superset instances has the following
0 commit comments