This is an automated email from the ASF dual-hosted git repository.
zstan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new a512fe6c94 IGNITE-17869 Add basic glossary - Fixes #1193.
a512fe6c94 is described below
commit a512fe6c9424a89528a8ec866c6b02ade0c5afd9
Author: IgGusev <[email protected]>
AuthorDate: Wed Oct 19 10:57:47 2022 +0300
IGNITE-17869 Add basic glossary - Fixes #1193.
Signed-off-by: zstan <[email protected]>
---
docs/_data/toc.yaml | 3 ++-
docs/_docs/glossary/glossary.adoc | 41 +++++++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+), 1 deletion(-)
diff --git a/docs/_data/toc.yaml b/docs/_data/toc.yaml
index c59ec368c4..e169a8cedb 100644
--- a/docs/_data/toc.yaml
+++ b/docs/_data/toc.yaml
@@ -52,4 +52,5 @@
url: table-views
- title: Handling Exceptions
url: handling-exceptions
-
+- title: Glossary
+ url: glossary/glossary
diff --git a/docs/_docs/glossary/glossary.adoc
b/docs/_docs/glossary/glossary.adoc
new file mode 100644
index 0000000000..b43156752d
--- /dev/null
+++ b/docs/_docs/glossary/glossary.adoc
@@ -0,0 +1,41 @@
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor license agreements. See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership.
+// The ASF licenses this file to You under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with
+// the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+= Glossary
+
+==== C
+
+Cluster Management Group::A subset of Ignite nodes in a Raft cluster. Cluster
group leader is responsible for managing nodes that enter or leave Ignite
Cluster.
+
+==== D
+
+Data Region:: Data regions are used to control the amount of memory available
to the storage. Depending on the type of storage the data region is assigned
to, the data may be loaded into RAM or stored
+
+Data Rebalace:: Data rebalance is the process of redistributing partitions to
make sure they are distributed equally across all nodes in the cluster.
+
+==== M
+
+Metastore:: Metastore holds additional information about Apache Ignite
cluster that is required for its operation, for example the number and type of
data regions configured.
+
+
+==== P
+
+Persistent Storage:: Persistent storage is the type of memory storage that is
preserved regardless of cluster state. Some portion of data will be loaded into
RAM to improve performance.
+
+
+==== V
+
+Volatile Storage:: Volatile storage is the type of memory storage that is only
preserved while the cluster is active. Loss of power or unexpected cluster
shutdown will lead to loss of data.
+
+