中繼日誌
中繼日誌來自Master的二進位制日誌,I / O執行緒從Master讀取,然後寫入本地的一類日誌,類似於binary log。作為SQL執行緒的輸入,中繼日誌中的事件將透過SQL執行緒來重演,從而實現複製。
The relay log consists of the events read from the binary log of the master and written by the slave I/O thread. Events in the relay log are executed on the slave as part of the SQL thread.
相關的引數:
mysql> show variables like '%relay%';
+-----------------------+----------------+
| Variable_name | Value |
+-----------------------+----------------+
| max_relay_log_size | 0 |
| relay_log | |
| relay_log_index | |
| relay_log_info_file | relay-log.info |
| relay_log_purge | ON |
| relay_log_recovery | OFF |
| relay_log_space_limit | 0 |
| sync_relay_log | 0 |
| sync_relay_log_info | 0 |
+-----------------------+----------------+
The relay log consists of the events read from the binary log of the master and written by the slave I/O thread. Events in the relay log are executed on the slave as part of the SQL thread.
相關的引數:
mysql> show variables like '%relay%';
+-----------------------+----------------+
| Variable_name | Value |
+-----------------------+----------------+
| max_relay_log_size | 0 |
| relay_log | |
| relay_log_index | |
| relay_log_info_file | relay-log.info |
| relay_log_purge | ON |
| relay_log_recovery | OFF |
| relay_log_space_limit | 0 |
| sync_relay_log | 0 |
| sync_relay_log_info | 0 |
+-----------------------+----------------+
sync_relay_log
- Description: The MariaDB server will synchronize its to disk after this many writes to the log. The default until was 0, in which case the operating system handles flushing the file to disk. 1 is the safest, but slowest, choice, since the file is flushed after each write. If autocommit is enabled, there is one write per statement, otherwise there's one write per transaction. If the disk has cache backed by battery, synchronization will be fast and a more conservative number can be chosen.
- Commandline: --sync-relay-log=#
- Scope: Global
- Dynamic: Yes
- Data Type: numeric
- Default Value: 10000 (>= ), 0 (<= )
sync_relay_log_info和sync_relay_log類似
relay_log_purge
- Description: If set to 1 (the default), will be purged as soon as they are no longer necessary.
- Commandline: --relay-log-purge={0|1}
- Scope: Global
- Dynamic: Yes
- Data Type: boolean
-
Default Value: ON
完整的引數可以參考。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29497382/viewspace-2153357/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 程式中的日誌
- 日誌分析-apache日誌分析Apache
- 如何在 Linux 中管理日誌Linux
- 談談Selenium中的日誌
- [日誌分析篇]-利用ELK分析jumpserver日誌-日誌拆分篇Server
- 日誌
- 如何在程式碼中打日誌
- DATAGUARD中手工處理日誌GAP
- 探究MySQL中的日誌檔案MySql
- Node 中如何更好地打日誌
- 【Spring】日誌列印sql,日誌配置列印sqlSpringSQL
- js中console日誌詳解 | console groupJS
- NAS中如何檢視日誌記錄?
- Kubernetes 中 搭建 EFK 日誌搜尋中心
- MySQL中幾種常見的日誌MySql
- Python中logging日誌等級有哪些Python
- 『無為則無心』Python日誌 — 66、將日誌資訊儲存到檔案中Python
- [Java/日誌] 日誌框架列印應用程式日誌程式碼的執行情況Java框架
- CMS日誌
- 日誌配置
- mybatis日誌MyBatis
- Weblogic日誌Web
- ros 日誌ROS
- Log日誌
- 日誌列印
- Loggiing日誌
- Mysql日誌MySql
- 日誌01
- 日誌管理
- ELK日誌
- [技術分享]日誌切割(按天切割日誌)
- 日誌篇:模組日誌總體介紹
- 【MySQL日誌】MySQL日誌檔案初級管理MySql
- 日誌11月4日
- 日誌11月18日
- 日誌11月24日
- 日誌12月16日
- 今天講講Java中的日誌—logging、logbackJava