solidDB Help : solidDB reference : SQL: Database system tables and system views : System tables for grid : SYS_GRID_RAFTLOG_TERMS
  
SYS_GRID_RAFTLOG_TERMS
The SYS_GRID_RAFTLOG_TERMS table stores a term and the index of the latest Raft transaction prepared on that term. When the Raft term increases, a row that specifies the previous term is added to the table (as long as at least one Raft transaction was executed during the previous term). The table is used to restore the raftlog after recovery, or restart of the node.
 
Column name
Data type
Description
RAFT_ID
BIGINT
ID of the raft
TERM
BIGINT
Previous Raft term
LAST_INDEX
BIGINT
Last raftlog index of the previous term
Go up to
System tables for grid