I have a script which calls two commands:

long_running_command | print_progress

The long_running_command prints a progress but I'm unhappy with it. I'm using print_progress to make it more nice (namely, I print the progress in a single line).

The problem: The pipe activates a 4K buffer, to the nice print program gets nothing ... nothing ... nothing ... a whole lot ... :)

How can I disable the 4K buffer for the long_running_command (no, I don't have the source)?

link|improve this question
1  
So when you run long_running_command without piping you can see the progress updates properly, but when piping they get buffered? – second Jun 16 '09 at 10:58
Yes, that's exactly what happens. – Aaron Digulla Jun 16 '09 at 11:50
1  
The inability for a simple way of controlling buffering has been a problem for decades. For example, see: marc.info/?l=glibc-bug&m=98313957306297&w=4 which basicly says "I can't be arsed doing this and here's some clap-trap to justify my position" – Adrian Pronk Oct 19 '10 at 21:59
feedback

migrated from stackoverflow.com Nov 25 '11 at 22:03

This question came from our site for professional and enthusiast programmers.

6 Answers

up vote 27 down vote accepted

You can use the expect command unbuffer, e.g.

unbuffer long_running_command | print_progress

unbuffer connects to long_running_command via a pseudoterminal (pty), which makes the system treat it as an interactive process, therefore not using the 4-kiB buffering in the pipeline that is the likely cause of the delay.

For longer pipelines, you may have to unbuffer each command (except the final one), e.g.

unbuffer x | unbuffer -p y | z
link|improve this answer
1  
In fact, the use of a pty to connect to interactive processes is true of expect in general. – cheduardo Jun 17 '09 at 7:58
So fscking simple ! I am always amazed when I discover this kind of utilities. I knew expect, but not unbuffer – shodanex Jun 17 '09 at 15:36
4  
When pipelining calls to unbuffer, you should use the -p argument so that unbuffer reads from stdin. – Chris Conway Oct 6 '09 at 20:18
2  
Note: On debian systems, this is called expect_unbuffer and is in the expect-dev package, not the expect package – bdonlan Jan 24 '11 at 11:14
feedback

Another way to skin this cat is the stdbuf program which is part of the GNU coreutils.

stdbuf -i0 -o0 -e0 command
link|improve this answer
feedback

If it is a problem with the libc modifying its buffering / flushing when output does not go to a terminal, you should try socat. You can create a bidirectional stream between almost any kind of I/O mechanism. One of those is a forked program speaking to a pseudo tty.

 socat EXEC:long_running_command,pty,ctty STDIO 

What it does is

  • create a pseudo tty
  • fork long_running_command with the slave side of the pty as stdin/stdout
  • establish a bidirectional stream between the master side of the pty and the second address (here it is STDIO)

If this gives you the same output as long_running_command, then you can continue with a pipe.

Edit : Wow Did not see the unbuffer answer ! Well, socat is a great tool anyway, so I might just leave this answer

link|improve this answer
...and I didn't know about socat - looks kinda like netcat only perhaps more so. ;) Thanks and +1. – cheduardo Jun 20 '09 at 9:32
feedback

I don't think the problem is with the pipe. It sounds like your long running process is not flushing its own buffer frequently enough. Changing the pipe's buffer size would be a hack to get round it, but I don't think its possible without rebuilding the kernel - something you wouldn't want to do as a hack, as it probably aversley affect a lot of other processes.

link|improve this answer
5  
The root cause is that libc switches to 4k buffering if the stdout is not a tty. – Aaron Digulla Jun 16 '09 at 11:50
3  
That is very interesting ! because pipe don't cause any buffering. They provide buffering, but if you read from a pipe, you get whatever data is available, you don't have to wait for a buffer in the pipe. So the culprit would be the stdio buffering in the application. – shodanex Jun 16 '09 at 13:58
feedback

It used to be the case, and probably still is the case, that when standard output is written to a terminal, it is line buffered by default - when a newline is written, the line is written to the terminal. When standard output is sent to a pipe, it is fully buffered - so the data is only sent to the next process in the pipeline when the standard I/O buffer is filled.

That's the source of the trouble. I'm not sure whether there is much you can do to fix it without modifying the program writing into the pipe. You could use the setvbuf() function with the _IOLBF flag to unconditionally put stdout into line buffered mode. But I don't see an easy way to enforce that on a program. Or the program can do fflush() at appropriate points (after each line of output), but the same comment applies.

I suppose that if you replaced the pipe with a pseudo-terminal, then the standard I/O library would think the output was a terminal (because it is a type of terminal) and would line buffer automatically. That is a complex way of dealing with things, though.

link|improve this answer
feedback

According to this the pipe buffer size seems to be set in the kernel and would require you to recompile your kernel to alter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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