Raft Consensus Algorithm
    Preparing search index...

    Replicated Raft log record.

    interface LogEntry {
        command?: Command;
        config?: ClusterConfig;
        index: number;
        term: number;
        type: LogEntryType;
    }
    Index

    Properties

    command?: Command

    Command payload for COMMAND entries.

    config?: ClusterConfig

    Cluster config payload for CONFIG entries.

    index: number

    Monotonic log index.

    term: number

    Raft term when this entry was created.

    Entry semantic type.