Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a nodejs application that I run like this, over SSH:

$ tmux
$ node server.js

This starts my node application in a tmux session.

Obviously, I don't have the SSH session open all the time.

What I've been finding is that occasionally my application can get in a state where it won't server up any pages. This might be related to the application itself, or perhaps just a poorly disconnected SSH session.

Either way, simply logging into SSH, running:

$ tmux attach

And giving focus to the pane makes everything responsive again.


I thought the entire point of node.js was that everything is non-blocking - then what's going on here?

share|improve this question
Hmmmm, what OS? – Brad Jan 13 at 23:01
@Brad: Ubuntu 12.04.1 – Eric Jan 13 at 23:02
@Eric From your description everything should work, so it is a problem with your code. – loganfsmyth Jan 14 at 4:31
1  
Was the tmux pane in copy mode (i.e. viewing the scrollback history) when you reattached to it? tmux does not read from a pane’s tty when it is in copy mode; thus, leaving a pane in copy mode (i.e. while your SSH connection was down) can cause the process running in its tty (i.e. Node) to block if it keeps writing to the tty (e.g. displaying log messages). – Chris Johnsen Jan 28 at 19:27
@ChrisJohnsen: Almost certainly. Post that as an answer, and I'll accept it. – Eric Jan 28 at 21:53

1 Answer

up vote 1 down vote accepted

When a pane is is copy mode, tmux does not read from its tty. If some program running “in” in the tty continues to generate output, then the OS’s tty buffer will eventually fill and cause the writing process/thread to block. I do not know the internals of Node.js, but it may not expect writes to stdout/stderr to block: the console functions do not seem to have callbacks, so they may actually be blocking.

So, Node.js could very well end up blocked if the pane in which it was running was left in copy mode when your SSH connection was dropped.

If you need to assure non-blocking logging, then you might want to redirect (or tee) your stdout and stderr to a file and use something like less to view the prior logs (avoiding tmux’s copy mode since it might cause blocking).

Maybe something like this:

# Redirect stdout/stderr to a file, running Node.js in the background.
# Start a "less +F" on the log so that we immediately have a "tail" running.
node app.js >>app.log 2>&1 & less +F app.log

Or

# This pane will act as a 'tail -f', but do not use copy-mode here.
# Instead, run e.g. 'less app.log' in another pane to review prior logs.
node app.js 2>&1 | tee -a app.log

Or, if you are using a logging library, it might have something that you can use to automatically write to files.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.