25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log (original) (raw)

25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log

Reads a redo log file, checking it for errors, printing its contents in a human-readable format, or both.ndb_redo_log_reader is intended for use primarily by NDB Cluster developers and Support personnel in debugging and diagnosing problems.

This utility remains under development, and its syntax and behavior are subject to change in future NDB Cluster releases.

The C++ source files for ndb_redo_log_reader can be found in the directory/storage/ndb/src/kernel/blocks/dblqh/redoLogReader.

Options that can be used withndb_redo_log_reader are shown in the following table. Additional descriptions follow the table.

Table 25.41 Command-line options used with the program ndb_redo_log_reader

Format Description Added, Deprecated, or Removed
-dump Print dump info (Supported in all NDB releases based on MySQL 8.0)
--file-key=key, -K key Supply decryption key ADDED: NDB 8.0.31
--file-key-from-stdin Supply decryption key using stdin ADDED: NDB 8.0.31
-filedescriptors Print file descriptors only (Supported in all NDB releases based on MySQL 8.0)
--help Print usage information (has no short form) (Supported in all NDB releases based on MySQL 8.0)
-lap Provide lap info, with max GCI started and completed (Supported in all NDB releases based on MySQL 8.0)
-mbyte # Starting megabyte (Supported in all NDB releases based on MySQL 8.0)
-mbyteheaders Show only first page header of each megabyte in file (Supported in all NDB releases based on MySQL 8.0)
-nocheck Do not check records for errors (Supported in all NDB releases based on MySQL 8.0)
-noprint Do not print records (Supported in all NDB releases based on MySQL 8.0)
-page # Start with this page (Supported in all NDB releases based on MySQL 8.0)
-pageheaders Show page headers only (Supported in all NDB releases based on MySQL 8.0)
-pageindex # Start with this page index (Supported in all NDB releases based on MySQL 8.0)
-twiddle Bit-shifted dump (Supported in all NDB releases based on MySQL 8.0)

Usage

ndb_redo_log_reader file_name [options]

filename is the name of a cluster redo log file. redo log files are located in the numbered directories under the data node's data directory (DataDir); the path under this directory to the redo log files matches the patternndb_ _`nodeid`__fs/D_`#`_/DBLQH/S_`#`_.FragLog.nodeid is the data node's node ID. The two instances of # each represent a number (not necessarily the same number); the number following D is in the range 8-39 inclusive; the range of the number following S varies according to the value of theNoOfFragmentLogFiles configuration parameter, whose default value is 16; thus, the default range of the number in the file name is 0-15 inclusive. For more information, seeNDB Cluster Data Node File System Directory.

The name of the file to be read may be followed by one or more of the options listed here:

Like ndb_print_backup_file andndb_print_schema_file (and unlike most of theNDB utilities that are intended to be run on a management server host or to connect to a management server) ndb_redo_log_reader must be run on a cluster data node, since it accesses the data node file system directly. Because it does not make use of the management server, this utility can be used when the management server is not running, and even when the cluster has been completely shut down.