You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "hidden" command nomad operator raft _logs reads the raft logs into memory before encoding the whole blob as JSON. This makes it unusable for operators of very large clusters with 10's of GB of raft logs in flight. Modify the command to stream the logs into the JSON encoder.
(I'm torn on bug vs enhancement on this one... call it a bughancement 😀 )
The text was updated successfully, but these errors were encountered:
@davemay99 has noted this also applied to operator snapshot state. But that's going to be a much bigger lift because streaming the output is somewhat at odds with how the snapshot commands work -- they restore the entire FSM. I'll break that out to another issue. Edit:#11685
I'm going to lock this issue because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
The "hidden" command
nomad operator raft _logs
reads the raft logs into memory before encoding the whole blob as JSON. This makes it unusable for operators of very large clusters with 10's of GB of raft logs in flight. Modify the command to stream the logs into the JSON encoder.(I'm torn on bug vs enhancement on this one... call it a bughancement 😀 )
The text was updated successfully, but these errors were encountered: