Skip to content

AxonOps — AI-Native Control Plane for Open Source Data Platforms

nodetool reloadlocalschema

Reloads the local schema from disk.


Terminal window
nodetool [connection_options] reloadlocalschema

See connection options for connection options.

nodetool reloadlocalschema re-reads the schema definition from the local system tables. This can help resolve schema disagreements.

Do Not Manually Modify Schema Tables

Direct modifications to schema system tables (system_schema.*) are unsupported and can corrupt the schema. Always use CQL DDL statements (CREATE, ALTER, DROP) to modify schema. The reloadlocalschema command is intended for recovery scenarios, not for applying manual edits.


Terminal window
nodetool reloadlocalschema

Terminal window
# Check for schema disagreement
nodetool describecluster | grep -A 5 "Schema versions"
# If disagreement exists, try reloading
nodetool reloadlocalschema
Terminal window
# After restoring schema from backup
nodetool reloadlocalschema

Terminal window
# 1. Check schema versions
nodetool describecluster
# 2. Reload local schema
nodetool reloadlocalschema
# 3. If issues persist, consider resetlocalschema
nodetool resetlocalschema

CommandRelationship
resetlocalschemaReset schema from cluster
describeclusterView schema versions