MySQL 8.0.37
Source Code Documentation
buf0dblwr.h
Go to the documentation of this file.
1/*****************************************************************************
2
3Copyright (c) 1995, 2024, Oracle and/or its affiliates.
4
5This program is free software; you can redistribute it and/or modify it under
6the terms of the GNU General Public License, version 2.0, as published by the
7Free Software Foundation.
8
9This program is designed to work with certain software (including
10but not limited to OpenSSL) that is licensed under separate terms,
11as designated in a particular file or component or in included license
12documentation. The authors of MySQL hereby grant you an additional
13permission to link the program and your derivative works with the
14separately licensed software that they have either included with
15the program or referenced in the documentation.
16
17This program is distributed in the hope that it will be useful, but WITHOUT
18ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
20for more details.
21
22You should have received a copy of the GNU General Public License along with
23this program; if not, write to the Free Software Foundation, Inc.,
2451 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
26*****************************************************************************/
27
28/** @file include/buf0dblwr.h
29 Doublewrite buffer module
30
31 Created 2011/12/19 Inaam Rana
32 *******************************************************/
33
34#ifndef buf0dblwr_h
35#define buf0dblwr_h
36
37#include "buf0types.h"
38#include "fil0fil.h"
39#include "log0recv.h"
40#include "ut0byte.h"
41
42/** Size of the doublewrite block in pages. */
43#define DBLWR_V1_EXTENT_SIZE FSP_EXTENT_SIZE
44
45/** Offset of the doublewrite buffer header on the trx system header page. */
46#define TRX_SYS_DBLWR_V1 (UNIV_PAGE_SIZE - 200)
47
48/** 4-byte ver number which shows if we have created the doublewrite buffer. */
50
51/** Page number of the first page in the first sequence of 64 (=
52FSP_EXTENT_SIZE) consecutive pages in the doublewrite buffer. */
54
55/** Page number of the first page in the second sequence of 64 consecutive
56pages in the doublewrite buffer. */
58
59namespace dblwr {
60
61/** IO buffer in UNIV_PAGE_SIZE units and aligned on UNIV_PAGE_SIZE */
62struct Buffer {
63 /** Constructor
64 @param[in] n_pages Number of pages to create */
65 explicit Buffer(size_t n_pages) noexcept
67
68 /** Constructor
69 @param[in] n_pages Number of pages to create
70 @param[in] phy_size physical page size. */
71 explicit Buffer(size_t n_pages, uint32_t phy_size) noexcept
72 : m_phy_size(phy_size), m_n_bytes(n_pages * phy_size) {
73 ut_a(n_pages > 0);
74 m_ptr = static_cast<byte *>(ut::aligned_zalloc(m_n_bytes, phy_size));
75
76 m_next = m_ptr;
77 }
78
79 /** Destructor */
80 ~Buffer() noexcept {
82 m_ptr = nullptr;
83 }
84
85 /** Add the contents of ptr up to n_bytes to the buffer.
86 @return false if it won't fit. Nothing is copied if it won't fit. */
87 bool append(const void *ptr, size_t n_bytes) noexcept {
89
90 if (m_next + m_phy_size > m_ptr + m_n_bytes) {
91 return false;
92 }
93
94 memcpy(m_next, ptr, n_bytes);
96
97 return true;
98 }
99
100 /** @return the start of the buffer to write from. */
101 byte *begin() noexcept { return m_ptr; }
102
103 /** @return the start of the buffer to write from. */
104 const byte *begin() const noexcept { return m_ptr; }
105
106 /** @return the size of of the buffer to write. */
107 size_t size() const noexcept {
108 ut_a(m_next >= m_ptr);
109 return std::ptrdiff_t(m_next - m_ptr);
110 }
111
112 /** @return the capacity of the buffer in bytes. */
113 size_t capacity() const noexcept { return m_n_bytes; }
114
115 /** @return true if the buffer is empty. */
116 bool empty() const noexcept { return size() == 0; }
117
118 /** Empty the buffer. */
119 void clear() noexcept { m_next = m_ptr; }
120
121 /** Page size on disk (aka physical page size). */
122 uint32_t m_phy_size;
123
124 /** Write buffer used in writing to the doublewrite buffer,
125 aligned to an address divisible by UNIV_PAGE_SIZE (which is
126 required by Windows AIO) */
127 byte *m_ptr{};
128
129 /** Start of next write to the buffer. */
130 byte *m_next{};
131
132 /** Size of the unaligned (raw) buffer. */
133 const size_t m_n_bytes{};
134
135 // Disable copying
136 Buffer(const Buffer &) = delete;
137 Buffer(const Buffer &&) = delete;
138 Buffer &operator=(Buffer &&) = delete;
139 Buffer &operator=(const Buffer &) = delete;
140};
141
142} // namespace dblwr
143
144#ifndef UNIV_HOTBACKUP
145
146// Forward declaration
147class buf_page_t;
148class Double_write;
149
150namespace dblwr {
151
152/** Double write files location. */
153extern std::string dir;
154
155#ifdef UNIV_DEBUG
156/** Crash the server after writing this page to the data file. */
158#endif /* UNIV_DEBUG */
159
160/** Startup the background thread(s) and create the instance.
161@return DB_SUCCESS or error code */
162[[nodiscard]] dberr_t open() noexcept;
163
164/** Enable the doublewrite reduced mode by creating the necessary dblwr files
165and in-memory structures
166@return DB_SUCCESS or error code */
167[[nodiscard]] dberr_t enable_reduced() noexcept;
168
169/** Check and open the reduced doublewrite files if necessary
170@return DB_SUCCESS or error code */
171[[nodiscard]] dberr_t reduced_open() noexcept;
172
173/** Shutdown the background thread and destroy the instance */
174void close() noexcept;
175
176/** Force a write of all pages in the queue.
177@param[in] flush_type FLUSH LIST or LRU_LIST flush request.
178@param[in] buf_pool_index Buffer pool instance for which called. */
179void force_flush(buf_flush_t flush_type, uint32_t buf_pool_index) noexcept;
180
181/** Force a write of all pages in all dblwr segments (reduced or regular)
182This is used only when switching the doublewrite mode dynamically */
183void force_flush_all() noexcept;
184
185/** Writes a page to the doublewrite buffer on disk, syncs it,
186then writes the page to the datafile.
187@param[in] flush_type Flush type
188@param[in] bpage Buffer block to write
189@param[in] sync True if sync IO requested
190@return DB_SUCCESS or error code */
191[[nodiscard]] dberr_t write(buf_flush_t flush_type, buf_page_t *bpage,
192 bool sync) noexcept;
193
194/** Obtain the encrypted frame and store it in bpage->m_io_frame
195@param[in,out] bpage the buffer page containing the unencrypted frame.
196@return the memory block containing the compressed + encrypted frame. */
197[[nodiscard]] file::Block *get_encrypted_frame(buf_page_t *bpage) noexcept;
198
199/** Updates the double write buffer when a write request is completed.
200@param[in] bpage Block that has just been writtent to disk.
201@param[in] flush_type Flush type that triggered the write. */
202void write_complete(buf_page_t *bpage, buf_flush_t flush_type) noexcept;
203
204/** Delete or adjust the dblwr file size if required. */
205void reset_files() noexcept;
206
207namespace v1 {
208/** Read the boundaries of the legacy dblwr buffer extents.
209@return DB_SUCCESS or error code. */
210[[nodiscard]] dberr_t init() noexcept;
211
212/** Create the dblwr data structures in the system tablespace.
213@return DB_SUCCESS or error code. */
214[[nodiscard]] dberr_t create() noexcept;
215
216/** Check if the read is of a page inside the legacy dblwr buffer.
217@param[in] page_no Page number to check.
218@return true if offset inside legacy dblwr buffer. */
219[[nodiscard]] bool is_inside(page_no_t page_no) noexcept;
220
221} // namespace v1
222} // namespace dblwr
223
224#endif /* !UNIV_HOTBACKUP */
225
226namespace dblwr {
227
228/** Number of pages per doublewrite thread/segment */
229extern ulong n_pages;
230
231const uint32_t REDUCED_BATCH_PAGE_SIZE = 8192;
232
233/* 20-byte header.
234Fields : [batch id][checksum][data len][batch type][unused ]
235Field Width : [4 bytes ][4 bytes ][2 bytes ][ 1 byte ][ 9 bytes]
236Field Offsets : [ 0 ][ 4 ][ 8 ][ 10 ][ 11 ] */
237const uint32_t RB_BATCH_ID_SIZE = 4;
238const uint32_t RB_CHECKSUM_SIZE = 4;
239const uint32_t RB_DATA_LEN_SIZE = 2;
240const uint32_t RB_BATCH_TYPE_SIZE = 1;
241const uint32_t RB_UNUSED_BYTES_SIZE = 9;
242
243/* Offsets of the header fields. */
244constexpr const uint32_t RB_OFF_BATCH_ID = 0;
249
250constexpr const uint32_t REDUCED_HEADER_SIZE =
251 RB_BATCH_ID_SIZE /* BATCH_ID */
252 + RB_CHECKSUM_SIZE /* CHECKSUM */
253 + RB_DATA_LEN_SIZE /* DATA_LEN */
254 + RB_BATCH_TYPE_SIZE /* BATCH_TYPE */
255 + 9 /* UNUSED BYTES */;
256
257constexpr const uint32_t REDUCED_ENTRY_SIZE =
258 sizeof(space_id_t) + sizeof(page_no_t) + sizeof(lsn_t);
259
260constexpr const uint32_t REDUCED_DATA_SIZE =
262
263constexpr const uint32_t REDUCED_MAX_ENTRIES =
265
266/** When --innodb-doublewrite=DETECT_ONLY, page contents are not written to the
267dblwr buffer. Only the following Reduced_entry information is stored in the
268dblwr buffer. */
273
275
277 : m_space_id(space_id), m_page_no(page_no), m_lsn(lsn) {}
278
279 byte *write(byte *ptr) {
280 uint16_t offset = 0;
281 mach_write_to_4(ptr + offset, m_space_id);
282 offset += sizeof(m_space_id);
283
284 mach_write_to_4(ptr + offset, m_page_no);
285 offset += sizeof(m_page_no);
286
287 mach_write_to_8(ptr + offset, m_lsn);
288 offset += sizeof(m_lsn);
289
290 return ptr + offset;
291 }
292};
293
294struct Mode {
295 /** The operating mode of doublewrite. The modes ON, TRUEE and
296 DETECT_AND_RECOVER are equal to one another. The modes OFF and FALSEE are
297 equal to one another.
298
299 @note If you change order or add new values, please update
300 innodb_doublewrite_names enum in handler/ha_innodb.cc */
301 enum mode_t {
302 /** Equal to FALSEE. In this mode, dblwr is disabled. */
304
305 /** Equal to TRUEE and DETECT_AND_RECOVER modes. */
307
308 /** In this mode, dblwr is used only to detect torn writes. At code level,
309 this mode is also called as reduced mode. It is called reduced because the
310 number of bytes written to the dblwr file is reduced in this mode. */
312
313 /** This mode is synonymous with ON, TRUEE. */
315
316 /** Equal to OFF mode. Intentionally wrong spelling because of compilation
317 issues on Windows. */
319
320 /** Equal to ON, DETECT_AND_RECOVER mode. Intentionally wrong spelling
321 because of compilation issues on Windows platform. */
322 TRUEE
323 };
324
325 /** Check if doublewrite is enabled.
326 @param[in] mode dblwr ENUM
327 @return true if dblwr is enabled. */
328 static inline bool is_enabled_low(ulong mode);
329
330 /** Check if the doublewrite mode is disabled.
331 @param[in] mode dblwr ENUM
332 @return true if dblwr mode is OFF. */
333 static inline bool is_disabled_low(ulong mode);
334
335 /** Check if the doublewrite mode is detect-only (aka reduced).
336 @param[in] mode dblwr ENUM
337 @return true if dblwr mode is DETECT_ONLY. */
338 static inline bool is_reduced_low(ulong mode);
339
340 /** Check if the dblwr mode provides atomic writes.
341 @return true if mode is ON, TRUEE or DETECT_AND_RECOVER.
342 @return false if mode is OFF, FALSE or DETECT_ONLY. */
343 static inline bool is_atomic(ulong mode);
344
345 /** Convert the dblwr mode into a string representation.
346 @param[in] mode the dblwr mode.
347 @return string representation of the dblwr mode. */
348 static const char *to_string(ulong mode);
349
350 /** Check if the mode transition is from enabled to disabled.
351 @param[in] new_value the new value of dblwr mode.
352 @return true if mode transition is from enabled to disabled. */
353 static inline bool is_enabled_to_disabled(ulong new_value);
354
355 /** Check if the mode transition is from disabled to enabled.
356 @param[in] new_value the new value of dblwr mode.
357 @return true if mode transition is from disabled to enabled. */
358 static inline bool is_disabled_to_enabled(ulong new_value);
359
360 /** Check if the mode transition is equivalent.
361 @param[in] new_value the new value of dblwr mode.
362 @return true if mode transition is equivalent. */
363 static bool is_same(ulong new_value);
364};
365
367 return mode == ON || mode == TRUEE || mode == DETECT_AND_RECOVER;
368}
369
371 return mode == ON || mode == TRUEE || mode == DETECT_AND_RECOVER ||
372 mode == DETECT_ONLY;
373}
374
375bool Mode::is_disabled_low(ulong mode) { return mode == OFF || mode == FALSEE; }
376
377bool Mode::is_reduced_low(ulong mode) { return mode == DETECT_ONLY; }
378
379/** DBLWR mode. */
380extern ulong g_mode;
381
382/** true if DETECT_ONLY (aka reduced) mode is inited */
383extern bool is_reduced_inited;
384
385/** Check if doublewrite is enabled.
386@return true if dblwr mode is ON, DETECT_ONLY, DETECT_AND_RECOVER
387@return false if dblwr mode is OFF. */
388inline bool is_enabled() { return Mode::is_enabled_low(g_mode); }
389
390/** Check if the doublewrite mode is detect-only (aka reduced).
391@return true if dblwr mode is DETECT_ONLY. */
392inline bool is_reduced() { return Mode::is_reduced_low(g_mode); }
393
394/** Check if the doublewrite mode is disabled.
395@return true if dblwr mode is OFF. */
396inline bool is_disabled() { return Mode::is_disabled_low(g_mode); }
397
398bool Mode::is_enabled_to_disabled(ulong new_value) {
399 return is_enabled() && Mode::is_disabled_low(new_value);
400}
401
402bool Mode::is_disabled_to_enabled(ulong new_value) {
403 return is_disabled() && Mode::is_enabled_low(new_value);
404}
405
406/** @return string version of dblwr numeric values
407@param[in] mode dblwr ENUM */
408const char *to_string(ulong mode);
409
410/** Number of files to use for the double write buffer. It must be <= than
411the number of buffer pool instances. */
412extern ulong n_files;
413
414/** Maximum number of pages to write in one batch. */
415extern ulong batch_size;
416
417/** Toggle the doublewrite buffer. */
418void set();
419
420namespace recv {
421
422class Pages;
423
424/** Create the recovery dblwr data structures
425@param[out] pages Pointer to newly created instance */
426void create(Pages *&pages) noexcept;
427
428/** Load the doublewrite buffer pages.
429@param[in,out] pages For storing the doublewrite pages read
430 from the double write buffer
431@return DB_SUCCESS or error code */
432[[nodiscard]] dberr_t load(Pages *pages) noexcept;
433
434/** Load the doublewrite buffer pages.
435@param[in,out] pages For storing the doublewrite pages read
436 from the double write buffer
437@return DB_SUCCESS or error code */
438[[nodiscard]] dberr_t reduced_load(Pages *pages) noexcept;
439
440/** Restore pages from the double write buffer to the tablespace.
441@param[in,out] pages Pages from the doublewrite buffer
442@param[in] space Tablespace pages to restore, if set to nullptr then try and
443 restore all. */
444void recover(Pages *pages, fil_space_t *space) noexcept;
445
446/** Find a doublewrite copy of a page.
447@param[in] pages Pages read from the doublewrite buffer
448@param[in] page_id Page number to lookup
449@return page frame
450@retval NULL if no page was found */
451[[nodiscard]] const byte *find(const Pages *pages,
452 const page_id_t &page_id) noexcept;
453
454/** Find the LSN of the given page id in the dblwr.
455@param[in] pages Pages read from the doublewrite buffer
456@param[in] page_id Page number to lookup
457@return 0th element is true if page_id found in double write buffer.
458@return 1st element is valid only if 0th element is true.
459@return 1st element contains the LSN of the page in dblwr. */
460[[nodiscard]] std::tuple<bool, lsn_t> find_entry(
461 const Pages *pages, const page_id_t &page_id) noexcept;
462
463/** Check if some pages from the double write buffer could not be
464restored because of the missing tablespace IDs.
465@param[in] pages Pages to check */
466void check_missing_tablespaces(const Pages *pages) noexcept;
467
468/** Free the recovery dblwr data structures
469@param[out] pages Free the instance */
470void destroy(Pages *&pages) noexcept;
471
472/** Redo recovery configuration. */
473class DBLWR {
474 public:
475 /** Constructor. */
476 explicit DBLWR() noexcept { create(m_pages); }
477
478 /** Destructor */
479 ~DBLWR() noexcept { destroy(m_pages); }
480
481 /** @return true if empty. */
482 bool empty() const noexcept { return (m_pages == nullptr); }
483
484 /** Load the doublewrite buffer pages. Doesn't create the doublewrite
485 @return DB_SUCCESS or error code */
486 [[nodiscard]] dberr_t load() noexcept { return (dblwr::recv::load(m_pages)); }
487
488 /** Load the doublewrite buffer pages. Doesn't create the doublewrite
489 @return DB_SUCCESS or error code */
490 [[nodiscard]] dberr_t reduced_load() noexcept {
492 }
493
494 /** Restore pages from the double write buffer to the tablespace.
495 @param[in] space Tablespace pages to restore,
496 if set to nullptr then try
497 and restore all. */
498 void recover(fil_space_t *space = nullptr) noexcept {
500 }
501
502 /** Find a doublewrite copy of a page.
503 @param[in] page_id Page number to lookup
504 @return page frame
505 @retval nullptr if no page was found */
506 [[nodiscard]] const byte *find(const page_id_t &page_id) noexcept {
507 return (dblwr::recv::find(m_pages, page_id));
508 }
509
510 /** Find the LSN of the given page id in the dblwr.
511 @param[in] page_id Page number to lookup
512 @return 0th element is true if page_id found in double write buffer.
513 @return 1st element is valid only if 0th element is true.
514 @return 1st element contains the LSN of the page in dblwr. */
515 [[nodiscard]] std::tuple<bool, lsn_t> find_entry(
516 const page_id_t &page_id) noexcept {
517 return (dblwr::recv::find_entry(m_pages, page_id));
518 }
519
520 /** Check if some pages from the double write buffer
521 could not be restored because of the missing tablespace IDs. */
524 }
525
526#ifndef UNIV_HOTBACKUP
527 /** Note that recovery is complete. Adjust the file sizes if necessary. */
528 void recovered() noexcept { dblwr::reset_files(); }
529#endif /* !UNIV_HOTBACKUP */
530
531 /** Disably copying. */
532 DBLWR(const DBLWR &) = delete;
533 DBLWR(const DBLWR &&) = delete;
534 DBLWR &operator=(DBLWR &&) = delete;
535 DBLWR &operator=(const DBLWR &) = delete;
536
537 private:
538 /** Pages read from the double write file. */
540};
541} // namespace recv
542
543#ifdef UNIV_DEBUG
544/** Check if the dblwr files contain encrypted pages.
545@return true if dblwr file contains any encrypted pages,
546 false if dblwr file contains no encrypted pages. */
547[[nodiscard]] bool has_encrypted_pages() noexcept;
548#endif /* UNIV_DEBUG */
549} // namespace dblwr
550
551#endif /* buf0dblwr_h */
uint32_t space_id_t
Tablespace identifier.
Definition: api0api.h:51
uint32_t page_no_t
Page number.
Definition: api0api.h:49
static ulint buf_pool_index(const buf_pool_t *buf_pool)
Calculates the index of a buffer pool to the buf_pool[] array.
constexpr ulint DBLWR_VER
4-byte ver number which shows if we have created the doublewrite buffer.
Definition: buf0dblwr.h:49
constexpr ulint DBLWR_V1_BLOCK1
Page number of the first page in the first sequence of 64 (= FSP_EXTENT_SIZE) consecutive pages in th...
Definition: buf0dblwr.h:53
constexpr ulint DBLWR_V1_BLOCK2
Page number of the first page in the second sequence of 64 consecutive pages in the doublewrite buffe...
Definition: buf0dblwr.h:57
The database buffer pool global types for the directory.
buf_flush_t
Flags for flush types.
Definition: buf0types.h:68
Doublewrite implementation.
Definition: buf0dblwr.cc:430
Definition: buf0buf.h:1125
Redo recovery configuration.
Definition: buf0dblwr.h:473
const byte * find(const page_id_t &page_id) noexcept
Find a doublewrite copy of a page.
Definition: buf0dblwr.h:506
void recovered() noexcept
Note that recovery is complete.
Definition: buf0dblwr.h:528
DBLWR() noexcept
Constructor.
Definition: buf0dblwr.h:476
DBLWR(const DBLWR &&)=delete
void check_missing_tablespaces() noexcept
Check if some pages from the double write buffer could not be restored because of the missing tablesp...
Definition: buf0dblwr.h:522
Pages * m_pages
Pages read from the double write file.
Definition: buf0dblwr.h:539
void recover(fil_space_t *space=nullptr) noexcept
Restore pages from the double write buffer to the tablespace.
Definition: buf0dblwr.h:498
DBLWR & operator=(const DBLWR &)=delete
~DBLWR() noexcept
Destructor.
Definition: buf0dblwr.h:479
DBLWR(const DBLWR &)=delete
Disably copying.
DBLWR & operator=(DBLWR &&)=delete
std::tuple< bool, lsn_t > find_entry(const page_id_t &page_id) noexcept
Find the LSN of the given page id in the dblwr.
Definition: buf0dblwr.h:515
bool empty() const noexcept
Definition: buf0dblwr.h:482
dberr_t reduced_load() noexcept
Load the doublewrite buffer pages.
Definition: buf0dblwr.h:490
dberr_t load() noexcept
Load the doublewrite buffer pages.
Definition: buf0dblwr.h:486
Pages recovered from the doublewrite buffer.
Definition: buf0dblwr.cc:249
Page identifier.
Definition: buf0types.h:207
size_t physical() const
Retrieve the physical page size (on-disk).
Definition: page0size.h:121
dberr_t
Definition: db0err.h:39
The low-level file system.
constexpr uint32_t FSEG_HEADER_SIZE
Length of the file system header, in bytes.
Definition: fsp0types.h:94
mysql_service_status_t recv(const char *tag, const unsigned char *data, size_t data_length) noexcept
Definition: gr_message_service_example.cc:39
flush_type
Definition: my_sys.h:292
Recovery.
uint64_t lsn_t
Type used for all log sequence number storage and arithmetic.
Definition: log0types.h:63
static void mach_write_to_8(void *b, uint64_t n)
The following function is used to store data in 8 consecutive bytes.
static void mach_write_to_4(byte *b, ulint n)
The following function is used to store data in 4 consecutive bytes.
void recover(Pages *pages, fil_space_t *space) noexcept
Restore pages from the double write buffer to the tablespace.
Definition: buf0dblwr.cc:2614
const byte * find(const Pages *pages, const page_id_t &page_id) noexcept
Find a doublewrite copy of a page.
Definition: buf0dblwr.cc:3564
dberr_t load(Pages *pages) noexcept
Load the doublewrite buffer pages.
Definition: buf0dblwr.cc:3352
void destroy(Pages *&pages) noexcept
Free the recovery dblwr data structures.
Definition: buf0dblwr.cc:3579
std::tuple< bool, lsn_t > find_entry(const Pages *pages, const page_id_t &page_id) noexcept
Find the LSN of the given page id in the dblwr.
Definition: buf0dblwr.cc:3569
void check_missing_tablespaces(const Pages *pages) noexcept
Check if some pages from the double write buffer could not be restored because of the missing tablesp...
Definition: buf0dblwr.cc:3586
dberr_t reduced_load(Pages *pages) noexcept
Load the doublewrite buffer pages.
Definition: buf0dblwr.cc:3464
void create(Pages *&pages) noexcept
Create the recovery dblwr data structures.
Definition: buf0dblwr.cc:3574
bool is_inside(page_no_t page_no) noexcept
Check if the read is of a page inside the legacy dblwr buffer.
Definition: buf0dblwr.cc:2903
dberr_t init() noexcept
Read the boundaries of the legacy dblwr buffer extents.
Definition: buf0dblwr.cc:2887
Definition: buf0dblwr.cc:75
file::Block * get_encrypted_frame(buf_page_t *bpage) noexcept
Obtain the encrypted frame and store it in bpage->m_io_frame.
Definition: buf0dblwr.cc:2413
ulong n_files
Number of files to use for the double write buffer.
Definition: buf0dblwr.cc:79
constexpr const uint32_t RB_OFF_UNUSED
Definition: buf0dblwr.h:248
dberr_t reduced_open() noexcept
Check and open the reduced doublewrite files if necessary.
Definition: buf0dblwr.cc:2710
dberr_t open() noexcept
Startup the background thread(s) and create the instance.
Definition: buf0dblwr.cc:2749
constexpr const uint32_t REDUCED_MAX_ENTRIES
Definition: buf0dblwr.h:263
void set()
Toggle the doublewrite buffer.
Definition: buf0dblwr.cc:2879
dberr_t enable_reduced() noexcept
Enable the doublewrite reduced mode by creating the necessary dblwr files and in-memory structures.
Definition: buf0dblwr.cc:2854
void close() noexcept
Shutdown the background thread and destroy the instance.
Definition: buf0dblwr.cc:2877
const uint32_t REDUCED_BATCH_PAGE_SIZE
Definition: buf0dblwr.h:231
void force_flush(buf_flush_t flush_type, uint32_t buf_pool_index) noexcept
Force a write of all pages in the queue.
Definition: buf0dblwr.cc:3135
ulong n_pages
Number of pages per doublewrite thread/segment.
Definition: buf0dblwr.cc:83
constexpr const uint32_t REDUCED_HEADER_SIZE
Definition: buf0dblwr.h:250
ulong g_mode
DBLWR mode.
Definition: buf0dblwr.cc:85
page_id_t Force_crash
Crash the server after writing this page to the data file.
Definition: buf0dblwr.cc:198
constexpr const uint32_t RB_OFF_CHECKSUM
Definition: buf0dblwr.h:245
const uint32_t RB_BATCH_TYPE_SIZE
Definition: buf0dblwr.h:240
void force_flush_all() noexcept
Force a write of all pages in all dblwr segments (reduced or regular) This is used only when switchin...
Definition: buf0dblwr.cc:3140
std::string dir
Double write files location.
Definition: buf0dblwr.cc:77
constexpr const uint32_t RB_OFF_BATCH_TYPE
Definition: buf0dblwr.h:247
ulong batch_size
Maximum number of pages to write in one batch.
Definition: buf0dblwr.cc:81
const uint32_t RB_BATCH_ID_SIZE
Definition: buf0dblwr.h:237
bool has_encrypted_pages() noexcept
Check if the dblwr files contain encrypted pages.
Definition: buf0dblwr.cc:3602
constexpr const uint32_t REDUCED_DATA_SIZE
Definition: buf0dblwr.h:260
bool is_enabled()
Check if doublewrite is enabled.
Definition: buf0dblwr.h:388
const char * to_string(ulong mode)
constexpr const uint32_t REDUCED_ENTRY_SIZE
Definition: buf0dblwr.h:257
void reset_files() noexcept
Delete or adjust the dblwr file size if required.
Definition: buf0dblwr.cc:2885
const uint32_t RB_DATA_LEN_SIZE
Definition: buf0dblwr.h:239
dberr_t write(buf_flush_t flush_type, buf_page_t *bpage, bool sync) noexcept
Writes a page to the doublewrite buffer on disk, syncs it, then writes the page to the datafile.
Definition: buf0dblwr.cc:2478
bool is_disabled()
Check if the doublewrite mode is disabled.
Definition: buf0dblwr.h:396
bool is_reduced()
Check if the doublewrite mode is detect-only (aka reduced).
Definition: buf0dblwr.h:392
constexpr const uint32_t RB_OFF_DATA_LEN
Definition: buf0dblwr.h:246
bool is_reduced_inited
true if DETECT_ONLY (aka reduced) mode is inited
Definition: buf0dblwr.cc:87
const uint32_t RB_CHECKSUM_SIZE
Definition: buf0dblwr.h:238
void write_complete(buf_page_t *bpage, buf_flush_t flush_type) noexcept
Updates the double write buffer when a write request is completed.
Definition: buf0dblwr.cc:2610
constexpr const uint32_t RB_OFF_BATCH_ID
Definition: buf0dblwr.h:244
const uint32_t RB_UNUSED_BYTES_SIZE
Definition: buf0dblwr.h:241
Definition: os0file.h:86
mode
Definition: file_handle.h:60
void * aligned_zalloc(std::size_t size, std::size_t alignment) noexcept
Dynamically allocates zero-initialized storage of given size and at the address aligned to the reques...
Definition: ut0new.h:1549
void aligned_free(void *ptr) noexcept
Releases storage which has been dynamically allocated through any of the aligned_alloc_*() or aligned...
Definition: ut0new.h:1563
page_size_t univ_page_size
IO buffer in UNIV_PAGE_SIZE units and aligned on UNIV_PAGE_SIZE.
Definition: buf0dblwr.h:62
Buffer & operator=(const Buffer &)=delete
Buffer(size_t n_pages) noexcept
Constructor.
Definition: buf0dblwr.h:65
size_t capacity() const noexcept
Definition: buf0dblwr.h:113
Buffer(const Buffer &&)=delete
uint32_t m_phy_size
Page size on disk (aka physical page size).
Definition: buf0dblwr.h:122
Buffer(const Buffer &)=delete
~Buffer() noexcept
Destructor.
Definition: buf0dblwr.h:80
bool append(const void *ptr, size_t n_bytes) noexcept
Add the contents of ptr up to n_bytes to the buffer.
Definition: buf0dblwr.h:87
const byte * begin() const noexcept
Definition: buf0dblwr.h:104
byte * m_next
Start of next write to the buffer.
Definition: buf0dblwr.h:130
byte * m_ptr
Write buffer used in writing to the doublewrite buffer, aligned to an address divisible by UNIV_PAGE_...
Definition: buf0dblwr.h:127
void clear() noexcept
Empty the buffer.
Definition: buf0dblwr.h:119
bool empty() const noexcept
Definition: buf0dblwr.h:116
size_t size() const noexcept
Definition: buf0dblwr.h:107
byte * begin() noexcept
Definition: buf0dblwr.h:101
const size_t m_n_bytes
Size of the unaligned (raw) buffer.
Definition: buf0dblwr.h:133
Buffer & operator=(Buffer &&)=delete
Buffer(size_t n_pages, uint32_t phy_size) noexcept
Constructor.
Definition: buf0dblwr.h:71
Definition: buf0dblwr.h:294
static bool is_disabled_low(ulong mode)
Check if the doublewrite mode is disabled.
Definition: buf0dblwr.h:375
static bool is_same(ulong new_value)
Check if the mode transition is equivalent.
Definition: buf0dblwr.cc:108
static bool is_enabled_to_disabled(ulong new_value)
Check if the mode transition is from enabled to disabled.
Definition: buf0dblwr.h:398
static bool is_atomic(ulong mode)
Check if the dblwr mode provides atomic writes.
Definition: buf0dblwr.h:366
static const char * to_string(ulong mode)
Convert the dblwr mode into a string representation.
Definition: buf0dblwr.cc:89
static bool is_disabled_to_enabled(ulong new_value)
Check if the mode transition is from disabled to enabled.
Definition: buf0dblwr.h:402
static bool is_enabled_low(ulong mode)
Check if doublewrite is enabled.
Definition: buf0dblwr.h:370
static bool is_reduced_low(ulong mode)
Check if the doublewrite mode is detect-only (aka reduced).
Definition: buf0dblwr.h:377
mode_t
The operating mode of doublewrite.
Definition: buf0dblwr.h:301
@ DETECT_ONLY
In this mode, dblwr is used only to detect torn writes.
Definition: buf0dblwr.h:311
@ FALSEE
Equal to OFF mode.
Definition: buf0dblwr.h:318
@ TRUEE
Equal to ON, DETECT_AND_RECOVER mode.
Definition: buf0dblwr.h:322
@ DETECT_AND_RECOVER
This mode is synonymous with ON, TRUEE.
Definition: buf0dblwr.h:314
@ ON
Equal to TRUEE and DETECT_AND_RECOVER modes.
Definition: buf0dblwr.h:306
@ OFF
Equal to FALSEE.
Definition: buf0dblwr.h:303
When –innodb-doublewrite=DETECT_ONLY, page contents are not written to the dblwr buffer.
Definition: buf0dblwr.h:269
lsn_t m_lsn
Definition: buf0dblwr.h:272
page_no_t m_page_no
Definition: buf0dblwr.h:271
space_id_t m_space_id
Definition: buf0dblwr.h:270
Reduced_entry(space_id_t space_id, page_no_t page_no, lsn_t lsn)
Definition: buf0dblwr.h:276
Reduced_entry(buf_page_t *bpage)
Definition: buf0dblwr.cc:3632
byte * write(byte *ptr)
Definition: buf0dblwr.h:279
Tablespace or log data space.
Definition: fil0fil.h:232
unsigned long int ulint
Definition: univ.i:406
Utilities for byte operations.
#define ut_a(EXPR)
Abort execution if EXPR does not evaluate to nonzero.
Definition: ut0dbg.h:57
static uint64_t lsn
Definition: xcom_base.cc:446