53#include <unordered_map>
54#include <unordered_set>
64extern std::list<std::pair<space_id_t, lsn_t>> index_load_list;
79void meb_scan_log_seg(
byte *
buf,
size_t buf_len,
lsn_t *scanned_lsn,
80 uint32_t *scanned_checkpoint_no, uint32_t *block_no,
81 size_t *n_bytes_scanned,
bool *has_encrypted_log);
105void meb_apply_log_recs(
void);
111void meb_apply_log_recs_via_callback(
113 void (*wait_till_done_function)());
137[[nodiscard]]
bool meb_scan_log_recs(
const byte *
buf,
size_t len,
179size_t meb_heap_used();
212#ifndef UNIV_HOTBACKUP
243#if defined(UNIV_DEBUG) || defined(UNIV_HOTBACKUP)
378 std::unordered_map<page_no_t, recv_addr_t *, std::hash<page_no_t>,
379 std::equal_to<page_no_t>>;
399 using Spaces = std::unordered_map<space_id_t, Space, std::hash<space_id_t>,
400 std::equal_to<space_id_t>>;
419#ifndef UNIV_HOTBACKUP
441 bool apply_file_operations;
445 bool found_corrupt_fs;
559#define RECV_SCAN_SIZE (4 * UNIV_PAGE_SIZE)
uint32_t space_id_t
Tablespace identifier.
Definition: api0api.h:49
uint32_t page_no_t
Page number.
Definition: api0api.h:47
The database buffer pool global types for the directory.
buf_flush_t
Flags for flush types.
Definition: buf0types.h:68
Definition: sql_list.h:494
Redo recovery configuration.
Definition: buf0dblwr.h:481
A counter which tracks number of things left to do, which can be incremented or decremented,...
Definition: ut0todo_counter.h:41
Allocator that allows std containers to manage their memory through ut::malloc* and ut::free library ...
Definition: ut0new.h:2023
dberr_t
Definition: db0err.h:39
Data dictionary global types.
ib_id_t table_id_t
Table or partition identifier (unique within an InnoDB instance).
Definition: dict0types.h:216
mysql_service_status_t recv(const char *tag, const unsigned char *data, size_t data_length) noexcept
Definition: gr_message_service_example.cc:39
The simple hash table utility.
static void recv_reset_buffer()
Moves the parsing buffer data left to the buffer start.
Definition: log0recv.cc:2041
dberr_t recv_parse_and_apply_log_recs(size_t mem_limit)
Parse log records from a buffer and stores them to a hash table.
Definition: log0recv.cc:1998
bool recv_sys_resize_buf()
Resize the recovery parsing buffer up to log_buffer_size.
Definition: log0recv.cc:311
void recv_track_changes_of_recovered_lsn()
Definition: log0recv.cc:1718
dberr_t recv_recovery_begin(lsn_t checkpoint_lsn)
Scans log from a stream and stores new log data to the parsing buffer.
Definition: log0recv.cc:2051
MetadataRecover * recv_recovery_from_checkpoint_finish(bool aborting)
Complete the recovery from the latest checkpoint.
Definition: log0recv.cc:2382
void recv_sys_free()
Frees the recovery system.
Definition: log0recv.cc:668
void recv_sys_init()
Inits the recovery system for a recovery operation.
Definition: log0recv.cc:467
recv_addr_state
States of recv_addr_t.
Definition: log0recv.h:287
@ RECV_BEING_READ
page is being read
Definition: log0recv.h:293
@ RECV_DISCARDED
log records have been discarded because the tablespace does not exist
Definition: log0recv.h:303
@ RECV_BEING_PROCESSED
log records are being applied on the page
Definition: log0recv.h:296
@ RECV_NOT_PROCESSED
not yet processed
Definition: log0recv.h:290
@ RECV_PROCESSED
log records have been applied on the page
Definition: log0recv.h:299
bool log_block_checksum_is_ok(const byte *block)
Check the 4-byte checksum to the trailer checksum field of a log block.
Definition: log0handler.cc:1544
lsn_t recv_calc_lsn_on_data_add(lsn_t lsn, os_offset_t len)
Calculates the new value for lsn when more data is added to the log.
Definition: log0recv.cc:200
void recv_sys_close()
Release recovery system mutexes.
Definition: log0recv.cc:378
constexpr uint32_t RECV_PARSING_BUF_SIZE
Size of the parsing buffer; it must accommodate RECV_SCAN_SIZE many times!
Definition: log0recv.h:555
dberr_t recv_verify_log_is_clean_pre_8_0_30(log_t &log)
Determine if a redo log from a version before MySQL 8.0.30 is clean.
size_t recv_n_frames_for_pages_per_pool_instance
This many blocks must be left in each Buffer Pool instance to be managed by the LRU when we scan the ...
Definition: log0recv.cc:168
void recv_sys_var_init()
Reset the state of the recovery system variables.
Definition: log0recv.cc:411
bool recv_page_is_brand_new(buf_block_t *block)
Returns true if the page is brand new (the next log record is init_file_page or no records to apply).
Definition: log0recv.cc:1284
static void recv_recover_page(bool jri, buf_block_t *block)
Wrapper for recv_recover_page_func().
Definition: log0recv.h:158
dberr_t recv_recovery_from_checkpoint_start(lsn_t flush_lsn)
Recovers all tablespaces from the redo log.
Definition: log0recv.cc:2304
const char * get_mlog_string(mlog_id_t type)
Return string name of the redo log record type.
Definition: log0recv.cc:2433
recv_sys_t * recv_sys
The recovery system.
Definition: log0recv.cc:103
bool recv_needed_recovery
true when recv_init_crash_recovery() has been called.
Definition: log0recv.cc:152
void recv_sys_create()
Creates the recovery system.
Definition: log0recv.cc:297
static bool recv_recovery_is_on()
Returns true if recovery is currently running.
volatile bool recv_recovery_on
true when applying redo log records during crash recovery; false otherwise.
Definition: log0recv.cc:108
bool recv_lsn_checks_on
true if buf_page_is_corrupted() should check if the log sequence number (FIL_PAGE_LSN) is in the futu...
Definition: log0recv.cc:157
void recv_recover_page_func(bool just_read_in, buf_block_t *block)
Applies the hashed log records to the page, if the page lsn is less than the lsn of a log record.
Definition: log0recv.cc:1439
Redo log parsing and applying.
uint64_t lsn_t
Type used for all log sequence number storage and arithmetic.
Definition: log0types.h:63
Mini-transaction buffer global types.
mlog_id_t
Definition: mtr0types.h:63
Definition: buf0block_hint.cc:30
Definition: buf0dblwr.cc:79
Cursor end()
A past-the-end Cursor.
Definition: rules_table_service.cc:192
std::map< Key, Value, Compare, ut::allocator< std::pair< const Key, Value > > > map
Specialization of map which uses ut_allocator.
Definition: ut0new.h:2742
std::conditional_t< !std::is_array< T >::value, std::unique_ptr< T, detail::Deleter< T > >, std::conditional_t< detail::is_unbounded_array_v< T >, std::unique_ptr< T, detail::Array_deleter< std::remove_extent_t< T > > >, void > > unique_ptr
The following is a common type that is returned by all the ut::make_unique (non-aligned) specializati...
Definition: ut0new.h:2284
The interface to the operating system file io.
uint64_t os_offset_t
File offset in bytes.
Definition: os0file.h:87
required uint64 version
Definition: replication_group_member_actions.proto:41
required string type
Definition: replication_group_member_actions.proto:34
case opt name
Definition: sslopt-case.h:29
The buffer control block structure.
Definition: buf0buf.h:1756
Redo log - single data structure with state of the redo log system.
Definition: log0sys.h:77
The info structure stored at the beginning of a heap block.
Definition: mem0mem.h:295
InnoDB condition variable.
Definition: os0event.cc:63
Hashed page file address struct.
Definition: log0recv.h:307
page_no_t page_no
Page number.
Definition: log0recv.h:317
recv_addr_state state
recovery state of the page
Definition: log0recv.h:311
space_id_t space
Space ID.
Definition: log0recv.h:314
List rec_list
List of log records for this page.
Definition: log0recv.h:320
Block of log record data.
Definition: log0recv.h:251
recv_data_t * next
pointer to the next block or NULL.
Definition: log0recv.h:256
Definition: log0recv.h:403
byte * ptr
Encryption key.
Definition: log0recv.h:411
space_id_t space_id
Tablespace ID.
Definition: log0recv.h:405
byte * iv
Encryption IV.
Definition: log0recv.h:414
lsn_t lsn
LSN of REDO log encryption entry.
Definition: log0recv.h:408
Every space has its own heap and pages that belong to it.
Definition: log0recv.h:382
Pages m_pages
Pages that need to be recovered.
Definition: log0recv.h:394
mem_heap_t * m_heap
Memory heap of log records and file addresses.
Definition: log0recv.h:391
Space(mem_heap_t *heap)
Constructor.
Definition: log0recv.h:385
Space()
Default constructor.
Definition: log0recv.h:388
Recovery system data structure.
Definition: log0recv.h:376
std::vector< Encryption_Key > Encryption_Keys
Definition: log0recv.h:417
Missing_Ids deleted
Tablespace IDs that were explicitly deleted.
Definition: log0recv.h:531
ulint len
Amount of data in buf.
Definition: log0recv.h:460
ib_mutex_t mutex
mutex protecting the fields apply_log_recs, decrements of n_pages_to_recover, and the state field in ...
Definition: log0recv.h:423
bool is_meb_db
Data directory has been recognized as data directory from MEB.
Definition: log0recv.h:501
lsn_t previous_recovered_lsn
The previous value of recovered_lsn - before we parsed the last mtr.
Definition: log0recv.h:486
os_event_t flush_end
event to signal that the page cleaner has finished the request
Definition: log0recv.h:433
dblwr::recv::DBLWR * dblwr
Doublewrite buffer pages, destroyed after recovery completes.
Definition: log0recv.h:518
Spaces * spaces
Hash table of pages, indexed by SpaceID.
Definition: log0recv.h:509
lsn_t recovered_lsn
The log records have been parsed up to this lsn.
Definition: log0recv.h:480
ut::Todo_counter n_pages_to_recover
Number of unique unprocessed page ids in the spaces nested hash table.
Definition: log0recv.h:515
ulint recovered_offset
Start offset of non-parsed log records in buf.
Definition: log0recv.h:477
lsn_t last_block_first_mtr_boundary
Tracks what should be the proper value of first_rec_group field in the header of the block to which r...
Definition: log0recv.h:491
std::unordered_map< page_no_t, recv_addr_t *, std::hash< page_no_t >, std::equal_to< page_no_t > > Pages
Definition: log0recv.h:379
std::unordered_map< space_id_t, Space, std::hash< space_id_t >, std::equal_to< space_id_t > > Spaces
Definition: log0recv.h:400
ib_mutex_t writer_mutex
mutex coordinating flushing between recv_writer_thread and the recovery thread.
Definition: log0recv.h:427
bool is_cloned_db
Data directory has been recognized as cloned data directory.
Definition: log0recv.h:498
os_event_t flush_start
event to activate page cleaner threads
Definition: log0recv.h:430
Missing_Ids missing_ids
Tablespace IDs that were ignored during redo log apply.
Definition: log0recv.h:528
std::unordered_set< space_id_t > Missing_Ids
Definition: log0recv.h:397
lsn_t checkpoint_lsn
Checkpoint lsn that was used during recovery (read from file).
Definition: log0recv.h:468
uint32_t scanned_epoch_no
The log data has been scanned up to this epoch_no.
Definition: log0recv.h:474
size_t buf_len
Size of the parsing buffer.
Definition: log0recv.h:457
buf_flush_t flush_type
type of the flush request.
Definition: log0recv.h:437
Encryption_Keys * keys
Encryption Key information per tablespace ID.
Definition: log0recv.h:525
bool dblwr_state
Doublewrite buffer state before MEB recovery starts.
Definition: log0recv.h:506
ut::unique_ptr< ib::redo::Redo_applier > redo_applier
Redo log applier.
Definition: log0recv.h:534
bool found_corrupt_log
Set when finding a corrupt log block or record, or there is a log parsing buffer overflow.
Definition: log0recv.h:495
lsn_t parse_start_lsn
This is the lsn from which we were able to start parsing log records and adding them to the hash tabl...
Definition: log0recv.h:465
lsn_t scanned_lsn
The log data has been scanned up to this lsn.
Definition: log0recv.h:471
byte * buf
Buffer for parsing log records.
Definition: log0recv.h:454
bool apply_log_recs
This is true when log rec application to pages is allowed; this flag tells the i/o-handler if it shou...
Definition: log0recv.h:451
MetadataRecover * metadata_recover
We store and merge all table persistent data here during scanning redo logs.
Definition: log0recv.h:522
Stored log record struct.
Definition: log0recv.h:260
recv_data_t * data
Chain of blocks containing the log record body.
Definition: log0recv.h:270
lsn_t start_lsn
Start lsn of the log segment written by the mtr which generated this log record: NOTE that this is no...
Definition: log0recv.h:275
UT_LIST_NODE_T(recv_t) Node
Definition: log0recv.h:261
ulint len
Log record body length in bytes.
Definition: log0recv.h:267
lsn_t end_lsn
End lsn of the log segment written by the mtr which generated this log record: NOTE that this is not ...
Definition: log0recv.h:280
Node rec_list
List node, list anchored in recv_addr_t.
Definition: log0recv.h:283
mlog_id_t type
Log record type.
Definition: log0recv.h:264
typedef UT_LIST_BASE_NODE_T(rw_lock_t, list) rw_lock_list_t
#define UNIV_NOTHROW
Definition: univ.i:459
unsigned long int ulint
Definition: univ.i:403
Utilities for byte operations.
#define UT_LIST_NODE_T(t)
Macro used for legacy reasons.
Definition: ut0lst.h:64
Dynamic memory allocation routines and custom allocators specifically crafted to support memory instr...
static uint64_t lsn
Definition: xcom_base.cc:446