In a tmux session inside xterm when a programs generates lots of ouput (like a cat very_long_file the whole session in frozen for a while. Even if I press Ctrl-C nothing is interrupted. Presumably because tmux is frozen and it's not forwarding the Ctrl-C to the program generating the output. Is there any way to prevent this.
- 673
6 Answers
I still have this problem in tmux 1.6-2 on Ubuntu 12.10. One workaround that I've found is to detatch from the session (prefix+d) and then reattach (tmux attach, good candidate for a quick shell alias). It looks like tmux is actually responsive under the hood---you can confirm that your process is actually killed immediately with ctrl-c---it's just the drawing that's blocking. Detatch works immediately, and when you reattach, the drawing will have skipped to the end.
- 401
The correct solution is to look at the c0-* options to tmux to try and rate-limit the output. The reason this problem exists at all is due to data being sent to the terminal faster than it can display it, so rate-limiting is the only way.
- 452
- 4
- 3
As far as I know there is no way to prevent it in current releases but some work is ongoing. You can find some patches on tmux's mailing list http://thread.gmane.org/gmane.comp.terminal-emulators.tmux.user/2689.
A good keyword to search the web is "flow control".
- 655
- 5
- 7
Unfortunately the c0-* options for rate limiting have been removed as of tmux version 2.1 (changelog). As far as I know, the only way to customize rate limiting is to update the variables influencing it in the source code (tmux.h):
"READ_SIZE is the maximum size of data to hold from a pty (the event high watermark). READ_BACKOFF is the amount of data waiting to be output to a tty before pty reads will be backed off. READ_TIME is how long to back off before the next read (in microseconds) if a tty is above READ_BACKOFF."
Where you will find the defaults: (as of tmux v2.2):
#define READ_SIZE 1024
#define READ_BACKOFF 512
#define READ_TIME 100
- 336
The answer https://superuser.com/a/589896/311481 works fine. I use the following values:
setw -g c0-change-trigger 10
setw -g c0-change-interval 250
Another tip: if you use ssh within tmux, use mosh instead: http://mosh.mit.edu/ It behaves smarter as to displaying programs' output. It tries to display the last screen state dropping intermediates when appropriate. So tmux will never freeze if lots of output is generated within its panes with mosh sessions inside.
Unlike SSH, mosh's UDP-based protocol handles packet loss gracefully, and sets the frame rate based on network conditions. Mosh doesn't fill up network buffers, so Control-C always works to halt a runaway process.
Because SSP [State Synchronization Protocol that mosh uses] works at the object layer and can control the rate of synchronization (in other words, the frame rate), it does not need to send every byte it receives from the application. That means Mosh can regulate the frames so as not to fill up network buffers, retaining the responsiveness of the connection and making sure Control-C always works quickly. Protocols that must send every byte can't do this.
- 291
Try different terminal emulator. On RedHat 6.5, the konsole (KDE) does not have the freezing issue (tmux 2.3 and master); however, xterm and gnome-terminal both experience bad freezing.
- 1