hashicorp/nomad · error
variable lookup failed: %v
Error message
variable lookup failed: %v
What it means
Iterating the variables table by namespace prefix failed in memdb; the wrapped txn.Get error means the state store could not enumerate variables for the namespace.
Source
Thrown at nomad/state/state_store_variables.go:48
ws.Add(iter.WatchCh())
return iter, nil
}
// GetVariablesByNamespace returns an iterator that contains all
// variables belonging to the provided namespace.
func (s *StateStore) GetVariablesByNamespace(
ws memdb.WatchSet, namespace string) (memdb.ResultIterator, error) {
txn := s.db.ReadTxn()
return s.getVariablesByNamespaceImpl(txn, ws, namespace)
}
func (s *StateStore) getVariablesByNamespaceImpl(
txn *txn, ws memdb.WatchSet, namespace string) (memdb.ResultIterator, error) {
// Walk the entire table.
iter, err := txn.Get(TableVariables, indexID+"_prefix", namespace, "")
if err != nil {
return nil, fmt.Errorf("variable lookup failed: %v", err)
}
ws.Add(iter.WatchCh())
return iter, nil
}
// GetVariablesByNamespaceAndPrefix returns an iterator that contains all
// variables belonging to the provided namespace that match the prefix.
func (s *StateStore) GetVariablesByNamespaceAndPrefix(
ws memdb.WatchSet, namespace, prefix string) (memdb.ResultIterator, error) {
txn := s.db.ReadTxn()
// Walk the entire table.
iter, err := txn.Get(TableVariables, indexID+"_prefix", namespace, prefix)
if err != nil {
return nil, fmt.Errorf("variable lookup failed: %v", err)
}
ws.Add(iter.WatchCh())View on GitHub (pinned to 482b49bf1a)
Solutions
- Retry the variables listing/deletion
- Check server logs for state store errors
- Verify server health
Defensive patterns
Strategy: retry
When it happens
Trigger: Thrown at nomad/state/state_store_variables.go:48 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of hashicorp/nomad@482b49bf1a (2026-09-04).
Data as JSON: /api/errors/9ac4ce50e501cac4.
Report an issue: GitHub.