The innodb_redo_log_files table contains a
row for each active InnoDB redo log file.
The innodb_redo_log_files table has the
following columns:
FILE_IDThe ID of the redo log file. The value corresponds to the redo log file number.
FILE_NAMEThe path and file name of the redo log file.
START_LSNThe log sequence number of the first block in the redo log file.
END_LSNThe log sequence number after the last block in the redo log file.
SIZE_IN_BYTESThe size of the redo log data in the file, in bytes. Data size is measured from the
END_LSNto the start>START_LSN. The redo log file size on disk is slightly larger due to the file header (2048 bytes), which is not included in the value reported by this column.IS_FULLWhether the redo log file is full. A value of 0 indicates that free space in the file. A value of 1 indicates that the file is full.
CONSUMER_LEVELReserved for future use.