Skip to content

Commit 2895c65

Browse files
authored
PG-798 Restructured docs 13 (#606)
* Restructured docs * Reworked the What's in it section * Added power number * Added icons
1 parent 554dd61 commit 2895c65

34 files changed

+573
-265
lines changed

.vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"cSpell.words": [
3+
"Quickstart"
4+
]
5+
}

CONTRIBUTING.md

+20-10
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,24 @@ Thank you for deciding to contribute and help us improve Percona Distribution fo
55

66
We welcome contributors from all users and community. By contributing, you agree to the [Percona Community code of conduct](https://github.com/percona/community/blob/main/content/contribute/coc.md).
77

8-
This repository contains the source file for `pg_stat_monitor` documentation and this document explains how you can contribute to it.
8+
You can contribute to documentation in the following ways:
9+
10+
1. **Request a doc change through a Jira issue**. If you’ve spotted a doc issue (a typo, broken links, inaccurate instructions, etc.) but don’t have time nor desire to fix it yourself - let us know about it.
11+
12+
- Click the **Submit DOC bug** link on the sidebar. This opens the [Jira issue tracker](https://jira.percona.com/projects/PG/issues) for the doc project.
13+
- Sign in (create a Jira account if you don’t have one) and click **Create** to create an issue.
14+
- Describe the issue you have detected in the Summary, Description, Steps To Reproduce, Affects Version fields.
15+
16+
2. **[Contribute to documentation yourself](#contribute-to-documentation-yourself)**. There is the **Edit this page** link that leads you to the source file of the page on GitHub. There you make changes, create a pull request that we review and add to the doc project. For details how to do it, read on.
917

1018
## Contribute to documentation
1119

1220
Percona Distribution for PostgreSQL documentation is written in [Markdown](https://www.markdownguide.org/basic-syntax/) language, so you can
1321
[edit it online via GitHub](#edit-documentation-online-vi-github). If you wish to have more control over the doc process, jump to how to [edit documentation locally](#edit-documentation-locally).
1422

1523
To contribute to the documentation, you should be familiar with the following technologies:
16-
17-
- [MkDocs](https://www.mkdocs.org/getting-started/) documentation generator. We use it to convert source ``.md`` files to .html and PDF documents.
24+
- [Markdown](https://www.markdownguide.org/basic-syntax/) markup language. It is used to write the documentation.
25+
- [MkDocs](https://www.mkdocs.org/getting-started/) documentation generator. We use it to convert source ``.md`` files to html and PDF documents.
1826
- [git](https://git-scm.com/) and [GitHub](https://guides.github.com/activities/hello-world/)
1927
- [Docker](https://docs.docker.com/get-docker/). It allows you to run MkDocs in a virtual environment instead of installing it and its dependencies on your machine.
2028

@@ -27,12 +35,13 @@ Each version has a branch in the repository named accordingly:
2735
- 13
2836
- 14
2937
- 15
38+
- 16
3039

3140
The source .md files are in the ``docs`` directory.
3241

3342
### Edit documentation online via GitHub
3443

35-
1. Click the **Edit this page** icon next to the page title. The Markdown file of the page opens in GitHub editor in your browser. If you haven’t worked with the repository before, GitHub creates a [fork](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) of it for you.
44+
1. Click the **Edit this page** link on the sidebar. The Markdown file of the page opens in GitHub editor in your browser. If you haven’t worked with the repository before, GitHub creates a [fork](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) of it for you.
3645

3746
2. Edit the page. You can check your changes on the **Preview** tab.
3847

@@ -125,15 +134,16 @@ The PDF document is in the ``site/pdf`` folder.
125134
2. Install [MkDocs](https://www.mkdocs.org/getting-started/#installation).
126135
3. While in the root directory of the doc project, run the following command to build the documentation:
127136

128-
```sh
129-
mkdocs build
130-
```
137+
```sh
138+
mkdocs build
139+
```
140+
131141
4. Go to the ``site`` directory and open the ``index.html`` file in your web browser to see the documentation.
132142
5. To automatically rebuild the documentation and reload the browser as you make changes, run the following command:
133143

134-
```sh
135-
mkdocs serve
136-
```
144+
```sh
145+
mkdocs serve
146+
```
137147

138148
6. To build the PDF documentation, do the following:
139149
- Install [mkdocs-with-pdf plugin](https://pypi.org/project/mkdocs-with-pdf/)

docs/apt.md

+8-28
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This document describes how to install Percona Distribution for PostgreSQL from
1111

1212
Run all the commands in the following sections as root or using the `sudo` command:
1313

14-
### Configure Percona repository
14+
### Configure Percona repository {.power-number}
1515

1616
1. Install the `percona-release` repository management tool to subscribe to Percona repositories:
1717

@@ -53,6 +53,9 @@ Run all the commands in the following sections as root or using the `sudo` comma
5353

5454
=== "Install packages individually"
5555

56+
Run the following commands:
57+
{.power-number}
58+
5659
1. Install the PostgreSQL server package:
5760

5861
```{.bash data-prompt="$"}
@@ -146,33 +149,10 @@ The installation process automatically initializes and starts the default databa
146149
$ sudo systemctl status postgresql.service
147150
```
148151

149-
### Connect to the PostgreSQL server
150-
151-
By default, `postgres` user and `postgres` database are created in PostgreSQL upon its installation and initialization. This allows you to connect to the database as the `postgres` user.
152-
153-
```{.bash data-prompt="$"}
154-
$ sudo su postgres
155-
```
156-
157-
Open the PostgreSQL interactive terminal:
158-
159-
```{.bash data-prompt="$"}
160-
$ psql
161-
```
162-
163-
!!! hint
164-
165-
You can connect to `psql` as the `postgres` user in one go:
166-
167-
```{.bash data-prompt="$"}
168-
$ sudo su - postgres -c psql
169-
```
170-
171-
To exit the `psql` terminal, use the following command:
172-
173-
```{.bash data-prompt="$"}
174-
$ \q
175-
```
152+
Congratulations! Your Percona Distribution for PostgreSQL is up and running.
176153

154+
## Next steps
177155

156+
[Enable extensions :material-arrow-right:](enable-extensions.md){.md-button}
178157

158+
[Connect to PostgreSQL :material-arrow-right:](connect.md){.md-button}

docs/connect.md

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Connect to the PostgreSQL server
2+
3+
With PostgreSQL server up and running, let's connect to it.
4+
5+
By default, the `postgres` user and the `postgres` database are created in PostgreSQL upon its installation and initialization. This allows you to connect to the database as the `postgres` user.
6+
{.power-number}
7+
8+
1. Switch to the `postgres` user.
9+
10+
```{.bash data-prompt="$"}
11+
$ sudo su postgres
12+
```
13+
14+
2. Open the PostgreSQL interactive terminal `psql`:
15+
16+
```{.bash data-prompt="$"}
17+
$ psql
18+
```
19+
20+
<i info>:material-information: Hint:</i> You can connect to `psql` as the `postgres` user in one go:
21+
22+
```{.bash data-prompt="$"}
23+
$ sudo su - postgres -c psql
24+
```
25+
26+
27+
## Basic `psql` commands
28+
29+
While connected to PostgreSQL, let's practice some basic `psql` commands to interact with the database:
30+
31+
1. List databases:
32+
33+
```{.bash data-prompt="$"}
34+
$ \l
35+
```
36+
37+
2. Display tables in the current database:
38+
39+
```{.bash data-prompt="$"}
40+
$ \dt
41+
```
42+
43+
3. Display columns in a table
44+
45+
```{.bash data-prompt="$"}
46+
$ \d <table_name>
47+
```
48+
49+
4. Switch databases
50+
51+
```{.bash data-prompt="$"}
52+
$ \c <database_name>
53+
```
54+
55+
5. Display users and roles
56+
57+
```{.bash data-prompt="$"}
58+
$ \du
59+
```
60+
61+
6. Exit the `psql` terminal:
62+
63+
```{.bash data-prompt="$"}
64+
$ \q
65+
```
66+
67+
To learn more about using `psql`, see [`psql` :octicons-link-external-16:](https://www.postgresql.org/docs/current/app-psql.html) documentation.
68+
69+
Congratulations! You have connected to PostgreSQL and learned some essential `psql` commands.
70+
71+
## Next steps
72+
73+
[Manipulate data in PostgreSQL :material-arrow-right:](crud.md){.md-button}

docs/crud.md

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
# Manipulate data in PostgreSQL
2+
3+
On the previous step, you have [connected to PostgreSQL](connect.md) as the superuser `postgres`. Now, let's insert some sample data and operate with it in PostgreSQL.
4+
5+
## Create a database
6+
7+
Let's create the database `test`. Use the CREATE DATABASE command:
8+
9+
```sql
10+
CREATE DATABASE test;
11+
```
12+
13+
## Create a table
14+
15+
Let's create a sample table `Customers` in the `test` database using the following command:
16+
17+
```sql
18+
CREATE TABLE customers (
19+
id SERIAL PRIMARY KEY, -- 'id' is an auto-incrementing integer
20+
first_name VARCHAR(50), -- 'first_name' is a string with a maximum length of 50 characters
21+
last_name VARCHAR(50), -- 'last_name' is a string with a maximum length of 50 characters
22+
email VARCHAR(100) -- 'email' is a string with a maximum length of 100 characters
23+
);
24+
```
25+
26+
<i info>:material-information: Hint:</i>Having issues with table creation? Check our [Troubleshooting guide](troubleshooting.md)
27+
28+
## Insert the data
29+
30+
Populate the table with the sample data as follows:
31+
32+
```sql
33+
INSERT INTO customers (first_name, last_name, email)
34+
VALUES
35+
('John', 'Doe', '[email protected]'), -- Insert a new row
36+
('Jane', 'Doe', '[email protected]');
37+
('Alice', 'Smith', '[email protected]');
38+
```
39+
40+
## Query data
41+
42+
Let's verify the data insertion by querying it:
43+
44+
```sql
45+
SELECT * FROM customers;
46+
```
47+
48+
??? example "Expected output"
49+
50+
```{.sql .no-copy}
51+
id | first_name | last_name | email
52+
----+------------+-----------+-------------------------
53+
1 | John | Doe | [email protected]
54+
2 | Jane | Doe | [email protected]
55+
3 | Alice | Smith | [email protected]
56+
(3 rows)
57+
```
58+
59+
## Update data
60+
61+
Let's update John Doe's record with a new email address.
62+
63+
1. Use the UPDATE command for that:
64+
65+
```sql
66+
UPDATE customers
67+
SET email = '[email protected]'
68+
WHERE first_name = 'John' AND last_name = 'Doe';
69+
```
70+
71+
2. Query the table to verify the updated data:
72+
73+
```sql
74+
SELECT * FROM customers WHERE first_name = 'John' AND last_name = 'Doe';
75+
```
76+
77+
??? example "Expected output"
78+
79+
```{.sql .no-copy}
80+
id | first_name | last_name | email
81+
----+------------+-----------+-------------------------
82+
2 | Jane | Doe | [email protected]
83+
3 | Alice | Smith | [email protected]
84+
1 | John | Doe | [email protected]
85+
(3 rows)
86+
```
87+
88+
## Delete data
89+
90+
Use the DELETE command to delete rows. For example, delete the record of Alice Smith:
91+
92+
```sql
93+
DELETE FROM Customers WHERE first_name = 'Alice' AND last_name = 'Smith';
94+
```
95+
96+
If you wish to delete the whole table, use the `DROP TABLE` command instead as follows:
97+
98+
```sql
99+
DROP TABLE customers;
100+
```
101+
102+
To delete the whole database, use the DROP DATABASE command:
103+
104+
```sql
105+
DROP DATABASE test;
106+
```
107+
108+
Congratulations! You have used basic create, read, update and delete (CRUD) operations to manipulate data in Percona Distribution for PostgreSQL. To deepen your knowledge, see the [data manipulation :octicons-link-external-16:](https://www.postgresql.org/docs/{{pgversion}}/dml.html) section in PostgreSQL documentation.
109+
110+
## Next steps
111+
112+
[What's next?](whats-next.md)(.md-button)

docs/docker.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Run Percona Distribution for PostgreSQL in a Docker container
22

3-
Docker images of Percona Distribution for PostgreSQL are hosted publicly on [Docker Hub](https://hub.docker.com/r/percona/percona-distribution-postgresql/).
3+
Docker images of Percona Distribution for PostgreSQL are hosted publicly on [Docker Hub :octicons-link-external-16:](https://hub.docker.com/r/percona/percona-distribution-postgresql/).
44

5-
For more information about using Docker, see the [Docker Docs](https://docs.docker.com/).
5+
For more information about using Docker, see the [Docker Docs :octicons-link-external-16:](https://docs.docker.com/).
66

77
!!! note ""
88

9-
Make sure that you are using the latest version of Docker. The ones provided via `apt` and `yum` may be outdated and cause errors.
9+
Make sure that you are using [the latest version of Docker :octicons-link-external-16:](https://docs.docker.com/get-docker/). The ones provided via `apt` and `yum` may be outdated and cause errors.
1010

1111
By default, Docker pulls the image from Docker Hub if it is not available locally.
1212

@@ -28,7 +28,7 @@ For more information about using Docker, see the [Docker Docs](https://docs.dock
2828
| `percona-pg_repack{{pgversion}}`| rebuilds PostgreSQL database objects.|
2929
| `percona-wal2json{{pgversion}}` | a PostgreSQL logical decoding JSON output plugin.|
3030

31-
## Start the container
31+
## Start the container {.power-number}
3232

3333
1. Start a Percona Distribution for PostgreSQL container as follows:
3434

@@ -40,8 +40,8 @@ For more information about using Docker, see the [Docker Docs](https://docs.dock
4040

4141
* `container-name` is the name you assign to your container
4242
* `POSTGRES_PASSWORD` is the superuser password
43-
* `tag-multi` is the tag specifying the version you need. For example, `{{dockertag}}-multi`. The `multi` part of the tag serves to identify the architecture (x86_64 or ARM64) and pull the respective image. See the [full list of tags](https://hub.docker.com/r/percona/percona-distribution-postgresql/tags/).
44-
43+
* `tag-multi` is the tag specifying the version you need. For example, `{{dockertag}}-multi`. The `multi` part of the tag serves to identify the architecture (x86_64 or ARM64) and pull the respective image. See the [full list of tags :octicons-link-external-16:](https://hub.docker.com/r/percona/percona-distribution-postgresql/tags/).
44+
4545

4646
!!! tip
4747

0 commit comments

Comments
 (0)