Skip to content

Commit 1fd060b

Browse files
authored
Update binlog.md
1 parent 9e8d327 commit 1fd060b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

content/notes/binlog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,20 @@ The most common symptom is the website displaying the error `'Error establishing
1313

1414
Even those experienced with traditional LEMP stacks may struggle to troubleshoot this issue. It is so widespread that it overshadows the remarkable convenience and efficiency of EasyEngine 4.
1515

16+
```mermaid {align="left" zoom="true"}
17+
graph LR
18+
DB[(MariaDB)]
19+
LOG@{ shape: docs, label: "mariadb-bin.000001
20+
mariadb-bin.000002
21+
mariadb-bin.000003
22+
mariadb-bin.000004
23+
..." }
24+
25+
DB-->|MriaDB Binlog|LOG
26+
27+
style DB fill:#FFDD57,stroke:#333,stroke-width:2px,color:#000
28+
```
29+
1630
## Binary Log (Binlog) in MariaDB
1731

1832
MariaDB has a modern logging mechanism called the **Binary Log (Binlog)**, which records all changes to the database except for read-only queries like `SELECT`. The binlog is primarily used for:

0 commit comments

Comments
 (0)