Skip to content

Commit 5167263

Browse files
doc: Adapt the operations pages
1 parent e29da66 commit 5167263

4 files changed

Lines changed: 28 additions & 13 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
= Cluster Operation
22

3-
Superset installations can be configured with different cluster operations like pausing reconciliation or stopping the
4-
cluster. See xref:concepts:operations/cluster_operations.adoc[cluster operations] for more details.
3+
OpenSearch installations can be configured with different cluster operations like pausing reconciliation or stopping the cluster.
4+
See xref:concepts:operations/cluster_operations.adoc[cluster operations] for more details.

docs/modules/opensearch/pages/usage-guide/operations/graceful-shutdown.adoc

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,31 @@ You can configure the graceful shutdown as described in xref:concepts:operations
44

55
== Nodes
66

7-
As a default, Superset nodes have `2 minutes` to shut down gracefully.
7+
As a default, OpenSearch nodes have 2 minutes to shut down gracefully.
88

9-
The Superset node process will receive a `SIGTERM` signal when Kubernetes wants to terminate the Pod.
9+
The OpenSearch node process will receive a `SIGTERM` signal when Kubernetes wants to terminate the Pod.
1010
It will log the received signal as shown in the log below and initiate a graceful shutdown.
11-
After the graceful shutdown timeout runs out, and the process still didn't exit, Kubernetes will issue a `SIGKILL` signal.
11+
After the graceful shutdown timeout runs out, and the process still did not exit, Kubernetes will issue a `SIGKILL` signal.
1212

1313
[source,text]
1414
----
15-
superset [2023-11-08 13:14:39 +0000] [206] [INFO] Handling signal: term
16-
metrics ts=2023-11-08T13:14:39.818Z caller=main.go:553 level=info msg="Received os signal, exiting" signal=terminated
17-
superset [2023-11-08 13:14:39 +0000] [207] [INFO] Worker exiting (pid: 207)
18-
superset Loaded your LOCAL configuration at [/stackable/app/pythonpath/superset_config.py]
19-
superset [2023-11-08 13:14:40 +0000] [206] [INFO] Shutting down: Master
15+
[o.o.s.a.r.AuditMessageRouter] Closing AuditMessageRouter
16+
[o.o.n.Node ] stopping ...
17+
[o.o.s.a.s.SinkProvider ] Closing DebugSink
18+
[o.o.c.c.FollowersChecker ] FollowerChecker{discoveryNode={simple-opensearch-nodes-default-3}{jcXCasAwSf6wTxND431bnw}{KFX1ua4GQpOZc1wdfY5RdA}{10.244.0.22}{10.244.0.22:9300}{dimr}{shard_indexing_pressure_enabled=true}, failureCountSinceLastSuccess=0, [cluster.fault_detection.follower_check.retry_count]=3} disconnected
19+
[o.o.c.c.FollowersChecker ] FollowerChecker{discoveryNode={simple-opensearch-nodes-default-0}{_HWwfRHWSk-0l2FIYWZerw}{voEOdPrxRsifVO0fema60Q}{10.244.0.26}{10.244.0.26:9300}{dimr}{shard_indexing_pressure_enabled=true}, failureCountSinceLastSuccess=0, [cluster.fault_detection.follower_check.retry_count]=3} disconnected
20+
[o.o.c.c.FollowersChecker ] FollowerChecker{discoveryNode={simple-opensearch-nodes-default-3}{jcXCasAwSf6wTxND431bnw}{KFX1ua4GQpOZc1wdfY5RdA}{10.244.0.22}{10.244.0.22:9300}{dimr}{shard_indexing_pressure_enabled=true}, failureCountSinceLastSuccess=0, [cluster.fault_detection.follower_check.retry_count]=3} marking
21+
22+
[o.o.c.c.FollowersChecker ] FollowerChecker{discoveryNode={simple-opensearch-nodes-default-2}{NudYVGdNSbClz-e09TVElg}{MmWiswEsQo6MpuDG47a6Ag}{10.244.0.24}{10.244.0.24:9300}{dimr}{shard_indexing_pressure_enabled=true}, failureCountSinceLastSuccess=0, [cluster.fault_detection.follower_check.retry_count]=3} disconnected
23+
[o.o.c.c.FollowersChecker ] FollowerChecker{discoveryNode={simple-opensearch-nodes-default-1}{NSxqrrevSIOtCIWz9Hd9vw}{qHNTBP4NTqe09_-9ZqnUJQ}{10.244.0.25}{10.244.0.25:9300}{dimr}{shard_indexing_pressure_enabled=true}, failureCountSinceLastSuccess=0, [cluster.fault_detection.follower_check.retry_count]=3} disconnected
24+
[o.o.c.c.FollowersChecker ] FollowerChecker{discoveryNode={simple-opensearch-nodes-default-0}{_HWwfRHWSk-0l2FIYWZerw}{voEOdPrxRsifVO0fema60Q}{10.244.0.26}{10.244.0.26:9300}{dimr}{shard_indexing_pressure_enabled=true}, failureCountSinceLastSuccess=0, [cluster.fault_detection.follower_check.retry_count]=3} marking
25+
26+
[o.o.c.c.FollowersChecker ] FollowerChecker{discoveryNode={simple-opensearch-nodes-default-1}{NSxqrrevSIOtCIWz9Hd9vw}{qHNTBP4NTqe09_-9ZqnUJQ}{10.244.0.25}{10.244.0.25:9300}{dimr}{shard_indexing_pressure_enabled=true}, failureCountSinceLastSuccess=0, [cluster.fault_detection.follower_check.retry_count]=3} marking
27+
28+
[o.o.c.c.FollowersChecker ] FollowerChecker{discoveryNode={simple-opensearch-nodes-default-2}{NudYVGdNSbClz-e09TVElg}{MmWiswEsQo6MpuDG47a6Ag}{10.244.0.24}{10.244.0.24:9300}{dimr}{shard_indexing_pressure_enabled=true}, failureCountSinceLastSuccess=0, [cluster.fault_detection.follower_check.retry_count]=3} marking
29+
30+
[o.o.n.Node ] stopped
31+
[o.o.n.Node ] closing ...
32+
[o.o.s.a.i.AuditLogImpl ] Closing AuditLogImpl
33+
[o.o.n.Node ] closed
2034
----
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
= Allowed Pod disruptions
22

3-
You can configure the permitted Pod disruptions for Superset nodes as described in xref:concepts:operations/pod_disruptions.adoc[].
3+
You can configure the permitted Pod disruptions for OpenSearch nodes as described in xref:concepts:operations/pod_disruptions.adoc[].
44

55
Unless you configure something else or disable the provided PodDisruptionBudgets (PDBs), the following PDBs are written:
66

77
== Nodes
8+
89
The provided PDBs only allow a single node to be offline at any given time, regardless of the number of replicas or `roleGroups`.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= Pod Placement
22

3-
You can configure the Pod placement of the Superset pods as described in xref:concepts:operations/pod_placement.adoc[].
3+
You can configure the Pod placement of the OpenSearch pods as described in xref:concepts:operations/pod_placement.adoc[].
44

55
The default affinities created by the operator are:
66

7-
1. Distribute all the Superset Pods (weight 70)
7+
1. Distribute all the OpenSearch pods (weight 1)

0 commit comments

Comments
 (0)