Are both expected to have the same results `SHOW P...
# questions-and-troubleshooting
j
Are both expected to have the same results
SHOW PROC '/compute_nodes';
and
SHOW COMPUTE NODES;
? I have noticed that using
SHOW PROC '/compute_nodes';
LastHeartbeat
is not getting updated • Shows
HasStoragePath=false
(true from SHOW COMPUTE NODES) • Doesn't have info about
DataCacheMetrics
(has info from SHOW COMPUTE NODES)
k
show compute nodes
always retrieves info from FE leader, while
show proc '/compute_nodes';
retrieves info from the connected FE memory (could be leader or follower). Note that some of the detailed info are only available in leader's memory, not synced to the followers/observers, so some of the fields info could be inconsistent between leader and follower/observer with
show proc '/compute_nodes'
gratitude thank you 1
j
Thanks for clarifying that!