Skip to content

Commit 8825a28

Browse files
committed
feat(OPS): update
1 parent c2bb1d4 commit 8825a28

File tree

4 files changed

+111
-12
lines changed

4 files changed

+111
-12
lines changed

pages/opensearch/concepts.mdx

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,54 @@ categories:
1111

1212
## Cloud Essentials
1313

14-
Cloud Essentials aims to provide a vast range of technologies, with a focus on easy deployment and minimal feature set while offering production-ready stability and scalability.
14+
Cloud Essentials aims to provide a vast range of technologies, with a focus on easy deployment and minimal feature set while offering production-ready stability and scalability.
15+
16+
## OpenSearch
17+
18+
OpenSearch is a distributed search and analytics engine that supports various use cases, from implementing a search box on a website to analyzing security data for threat detection. The term distributed means that you can run OpenSearch on multiple computers. Search and analytics means that you can search and analyze your data once you ingest it into OpenSearch. No matter your type of data, you can store and analyze it using OpenSearch.
19+
20+
## Document
21+
22+
A document is a unit that stores information (text or structured data). In OpenSearch, documents are stored in JSON format.
23+
24+
You can think of a document in several ways:
25+
26+
- In a database of students, a document might represent one student.
27+
- When you search for information, OpenSearch returns documents related to your search.
28+
- A document represents a row in a traditional database.
29+
30+
For example, in a school database, a document can represent one student and contain the following data:
31+
32+
| ID | Name | GPA | Graduation Year |
33+
|--------|----------|--------|-----------------|
34+
| 1 | John Doe | 3.89 | 2022 |
35+
36+
Here is what this document looks like in JSON format:
37+
38+
```json
39+
{
40+
"name": "John Doe",
41+
"gpa": 3.89,
42+
"grad_year": 2022
43+
}
44+
```
45+
Document IDs are assigned in indexing documents.
46+
47+
## Index
48+
49+
An index is a collection of documents.
50+
51+
You can think of an index in several ways:
52+
53+
- In a database of students, an index represents all students in the database.
54+
- When you search for information, you query data contained in an index.
55+
- An index represents a database table in a traditional database.
56+
57+
For example, in a school database, an index might contain all students in the school.
58+
59+
| ID | Name | GPA | Graduation Year |
60+
|--------|--------------|--------|-----------------|
61+
| 1 | John Doe | 3.89 | 2022 |
62+
| 2 | Steve Powers | 3.85 | 2025 |
63+
| 3 | Jane Doe | 3.52 | 2024 |
64+
| ... | | | |

pages/opensearch/how-to/create-opensearch-deployment.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,7 @@ This page explains how to create an OpenSearch deployment using the Scaleway con
3939

4040
9. Create credentials to log in to your OpenSearch deployment. These credentials will grant `admin` access to the user.
4141

42+
10. Enter a name for your deployment, or keep the automatically generated one.
43+
44+
11. Review the estimated cost for your cluster, then click **Create deployment** to finish.
45+
Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,35 @@
11
---
22
title: How to delete a Cloud Essentials for OpenSearch deployment
33
description: This page provides a guide on how to delete a Cloud Essentials for OpenSearch deployment using the Scaleway console.
4-
tags:
4+
tags: opensearch search db engine data manage remove drop destroy delete
55
dates:
6-
validation:
7-
posted:
8-
categories:
9-
-
10-
---
6+
validation: 2025-07-31
7+
posted: 2025-07-31
8+
---
9+
import Requirements from '@macros/iam/requirements.mdx'
10+
11+
This page explains how to delete an OpenSearch deployment using the Scaleway console.
12+
13+
<Message type="important">
14+
Deleting an OpenSearch deployment is irreversible, and all its associated data will be lost.
15+
</Message>
16+
17+
<Requirements />
18+
19+
- A Scaleway account logged into the [console](https://console.scaleway.com)
20+
- [Owner](/iam/concepts/#owner) status or [IAM permissions](/iam/concepts/#permission) allowing you to perform actions in the intended Organization
21+
- [Created an OpenSearch deployment](/opensearch/how-to/create-opensearch-deployment/)
22+
23+
## How to delete a Cloud Essentials for OpenSearch deployment
24+
25+
1. Click **OpenSearch** in the **Databases** section of the console. The Cloud Essentials for OpenSearch dashboard displays.
26+
27+
2. Click <Icon name="more" /> next to the name of the deployment you want to delete. A confirmation pop-up displays.
28+
29+
3. Type **DELETE** in the field, then click **Delete deployment** to confirm your action.
30+
31+
Your deployment is now deleted.
32+
33+
<Message type="tip">
34+
You can also delete an OpenSearch deployment from its **Settings** tab.
35+
</Message>

pages/opensearch/how-to/manage-opensearch-deployment.mdx

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,28 @@ title: How to manage a Cloud Essentials for OpenSearch deployment
33
description: This page provides a guide on how to manage a Cloud Essentials for OpenSearch deployment using the Scaleway console.
44
tags:
55
dates:
6-
validation:
7-
posted:
8-
categories:
9-
-
10-
---
6+
validation: 2025-07-31
7+
posted: 2025-07-31
8+
---
9+
10+
import Requirements from '@macros/iam/requirements.mdx'
11+
12+
This page explains how to manage an OpenSearch deployment using the Scaleway console.
13+
14+
<Requirements />
15+
16+
- A Scaleway account logged into the [console](https://console.scaleway.com)
17+
- [Owner](/iam/concepts/#owner) status or [IAM permissions](/iam/concepts/#permission) allowing you to perform actions in the intended Organization
18+
- [Created an OpenSearch deployment](/opensearch/how-to/create-opensearch-deployment/)
19+
20+
## How to manage a Cloud Essentials for OpenSearch deployment
21+
22+
1. Click **OpenSearch** in the **Databases** section of the console. The Cloud Essentials for OpenSearch dashboard displays.
23+
24+
2. Click the name of the OpenSearch deployment you want to manage. Its **Overview** page displays.
25+
26+
3. From here, you can:
27+
28+
- Access the dashboard of your deployment
29+
- View and manage the users of your deployment
30+
- Delete your deployment

0 commit comments

Comments
 (0)