I have inherited this sed script snippet that attempts to remove certain empty spaces:

s/[\s\t]*|/|/g
s/|[\s\t]*/|/g
s/[\s] *$//g
s/^|/null|/g

that operates on a file that is around 1Gb large. This script runs for 2 hours on our unix server. Any ideas how to speed it up?

Notes that the \s stands for a space and \t stands for a tab, the actual script uses the actual space and tab and not those symbols

The input file is a pipe delimited file and is located locally not on the network. The 4 lines are in a file executed with sed -f

link|improve this question

67% accept rate
How are you invoking sed? Is the file definitely on your local disk and not, say, on an NFS mount? – Adam Rosenfield Dec 1 '09 at 21:42
File on local disk. I am invoking sed with sed -f – erotsppa Dec 1 '09 at 22:10
1  
Please give the entire command line you're using. Plain sed -f reads from stdin and writes to stdout, which is obviously not what you're doing. – Adam Rosenfield Dec 1 '09 at 22:39
I don't think that's really necessary.... just assume sed -f < input.txt > output.txt – jnylen Dec 1 '09 at 22:51
I just tried my C implementation on a 1.2GiB data file filled with example data. It took all of 4m17s on a 10-year-old 800 MHz Pentium III. While admittedly it may vary based on the actual input, I think there's a good chance it's going to significantly outperform your sed script ;) – Dan Moulding Dec 7 '09 at 2:00
feedback

12 Answers

up vote 7 down vote accepted

The best I was able to do with sed, was this script:

s/[\s\t]*|[\s\t]*/|/g
s/[\s\t]*$//
s/^|/null|/

In my tests, this ran about 30% faster than your sed script. The increase in performance comes from combining the first two regexen and omitting the "g" flag where it's not needed.

However, 30% faster is only a mild improvement (it should still take about an hour and a half to run the above script on your 1GB data file). I wanted to see if I could do any better.

In the end, no other method I tried (awk, perl, and other approaches with sed) fared any better, except -- of course -- a plain ol' C implementation. As would be expected with C, the code is a bit verbose for posting here, but if you want a program that's likely going to be faster than any other method out there, you may want to take a look at it.

In my tests, the C implementation finishes in about 20% of the time it takes for your sed script. So it might take about 25 minutes or so to run on your Unix server.

I didn't spend much time optimizing the C implementation. No doubt there are a number of places where the algorithm could be improved, but frankly, I don't know if it's possible to shave a significant amount of time beyond what it already achieves. If anything, I think it certainly places an upper limit on what kind of performance you can expect from other methods (sed, awk, perl, python, etc).

Edit: The original version had a minor bug that caused it to possibly print the wrong thing at the end of the output (e.g. could print a "null" that shouldn't be there). I had some time today to take a look at it and fixed that. I also optimized away a call to strlen() that gave it another slight performance boost.

link|improve this answer
+1 for an impressive amount of work to both implement a faster solution and properly testing it rather than just assuming it will be faster. – Mark Byers Dec 2 '09 at 15:25
feedback

It seems to me from your example that you are cleaning up white space from the beginning and end of pipe (|) delimited fields in a text file. If I were to do this, I would change the algorithm to the following:

for each line
    split the line into an array of fields
    remove the leading and trailing white space
    join the fields back back together as a pipe delimited line handling the empty first field correctly.

I would also use a different language such as Perl or Ruby for this.

The advantage of this approach is that the code that cleans up the lines now handles fewer characters for each invocation and should execute much faster even though more invocations are needed.

link|improve this answer
2  
+1. With your algorithm awk would be a better choice. – mouviciel Dec 1 '09 at 20:29
Can you suggest an awk command to do this? Sorry not an awk expert – erotsppa Dec 1 '09 at 21:21
I tested this algorithm using awk (along the same lines as the awk programs suggested by D. Williamson and levislevis85), and it was a little slower than the OP's sed script, and quite a bit slower than optimized versions of the sed script. So I'm not convinced that this general approach (of splitting the records into fields before pattern substitution) is likely to result in any speedup (regardless of language). – Dan Moulding Dec 2 '09 at 2:49
feedback

Try changing the first two lines to:

s/[ \t]*|[ \t]*/|/g
link|improve this answer
My testing has found no difference between this and doing them separately. – Dennis Williamson Dec 1 '09 at 21:18
1  
My testing has found this to decrease the time it takes to parse a 250MB file. I also found a further decrease by eliminating the g options where it's not needed. – Dan Moulding Dec 2 '09 at 14:53
feedback

I think the 3rd line doesn't need a g at the end; the end-of-line occurs only once in the line :)

link|improve this answer
2  
The last line does not need it either. The beginning of line only occurs once. – Kevin Panko Dec 1 '09 at 22:35
feedback

You should be able to find how to do it in awk:

See the link below:

http://unixnotes.wordpress.com/2006/03/15/awk-one-liners/

link|improve this answer
feedback

This Perl script should be much much faster

s/\s*|\s*/|/go;
s/\s *$//o;
s/^|/null|/o;

Basically, make sure your regexes are compiled once (the 'o' flag), and no need need to use 'g' on regexes that apply only to end and beginning of line.

Also, [\s\t]* is equivalent to \s*

link|improve this answer
The "o" flag is redundant in that context. Perl always compiles a regexp once unless it has a variable inside it. – Kevin Panko Dec 1 '09 at 22:26
feedback

This might work. I've only tested it a little.

awk  'BEGIN {FS="|"; OFS="|"} {for (i=1; i<=NF; i++) gsub("[ \t]", "", $i); $1=$1; if ( $1 == "" ) $1 = "null"; print}'
link|improve this answer
Preliminary testing shows this to execute at about the same speed as the sed versions. – Dennis Williamson Dec 1 '09 at 22:35
feedback

use gawk, not sed.

awk -vFS='|' '{for(i=1;i<=NF;i++) gsub(/ +|\t+/,"",$i)}1' OFS="|"  file
link|improve this answer
feedback

My testing indicated that sed can become cpu bound pretty easily on something like this. If you have a multi-core machine you can try spawning off multiple sed proc's with a script that looks something like this:

#!/bin/sh
INFILE=data.txt
OUTFILE=fixed.txt
SEDSCRIPT=script.sed
SPLITLIMIT=`wc -l $INFILE | awk '{print $1 / 20}'`

split -d -l $SPLITLIMT $INFILE x_

for chunk in ls x_??
do
  sed -f $SEDSCRIPT $chunk > $chunk.out &
done

wait 

cat x_?? >> output.txt

rm -f x_??
rm -f x_??.out
link|improve this answer
Useless use of ls. Do this instead: for chunk in x_?? and globbing is sorted so no need for a loop here: cat x_??.out > output.txt – Dennis Williamson Dec 2 '09 at 13:12
Edited to inclued Dennis' comments. – Drewfer Dec 3 '09 at 14:35
feedback

Try doing it in one command:

sed 's/[^|]*(|.*|).*/\1/'
link|improve this answer
Has no effect at all. – Dennis Williamson Dec 1 '09 at 22:00
Can you provide some test data? It's hard to write a regexp correctly without testing :) – static_rtti Dec 2 '09 at 13:50
feedback

Have you tried Perl? It may be faster.

#!/usr/local/bin/perl -p

s#[\t ]+\|#|#g;
s#\|[\t ]+#|#g;
s#[\t ]*$##;
s#^\|#null|#;

Edit: Actually, it seems to be about three times slower than the sed program. Strange...

link|improve this answer
feedback

How about Perl:

#!/usr/bin/perl

while(<>) {
	s/\s*\|\s*/|/g;
	s/^\s*//;
	s/\s*$//;
	s/^\|/null|/;
	print;
}

EDIT: changed approach significantly. On my machine this is almost 3x faster than your sed script.

If you really need the best speed possible, write a specialized C program to do this task.

link|improve this answer
On my machine this is a little slower than the OP's sed script and takes twice as long as a more optimized version of the OP's sed script. – Dan Moulding Dec 2 '09 at 2:58
feedback

Your Answer

 
or
required, but never shown

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