Weaviate · Schema

RaftStatistics

The definition of Raft statistics.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
appliedIndex string
commitIndex string
fsmPending string
lastContact string
lastLogIndex string
lastLogTerm string
lastSnapshotIndex string
lastSnapshotTerm string
latestConfiguration object Weaviate Raft nodes.
latestConfigurationIndex string
numPeers string
protocolVersion string
protocolVersionMax string
protocolVersionMin string
snapshotVersionMax string
snapshotVersionMin string
state string
term string
View JSON Schema on GitHub

JSON Schema

weaviate-raftstatistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RaftStatistics",
  "title": "RaftStatistics",
  "description": "The definition of Raft statistics.",
  "properties": {
    "appliedIndex": {
      "type": "string"
    },
    "commitIndex": {
      "type": "string"
    },
    "fsmPending": {
      "type": "string"
    },
    "lastContact": {
      "type": "string"
    },
    "lastLogIndex": {
      "type": "string"
    },
    "lastLogTerm": {
      "type": "string"
    },
    "lastSnapshotIndex": {
      "type": "string"
    },
    "lastSnapshotTerm": {
      "type": "string"
    },
    "latestConfiguration": {
      "type": "object",
      "description": "Weaviate Raft nodes."
    },
    "latestConfigurationIndex": {
      "type": "string"
    },
    "numPeers": {
      "type": "string"
    },
    "protocolVersion": {
      "type": "string"
    },
    "protocolVersionMax": {
      "type": "string"
    },
    "protocolVersionMin": {
      "type": "string"
    },
    "snapshotVersionMax": {
      "type": "string"
    },
    "snapshotVersionMin": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "term": {
      "type": "string"
    }
  }
}