[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

20020415: PIPE processing for large products



>From: Joe Van Andel <address@hidden>
>Organization: National Center for Atmospheric Research
>Keywords: 200204151621.g3FGLRa22170 LDM PIPE

Joe,

>If I call a processing routine via 'PIPE -close' in pqact.conf, am I 
>guarenteed that my 'decoder' is only invoked once, no matter what the 
>size of the product?

No.  If, for some reason, the decoding process does not read all of the
product from the PIPE before it exits, the LDM process 'pqact' will think
that there was an error and will try to run the process one more time.

>I'd like to know that when my decoder gets end-of-file from the pipe 
>that the entire product is available.

It should be, yes.

>This would allow my decoder to invoke other processing on the completed file.

We do this kind of processing all of the time:

o PIPE the product to an executable shell script
o read all of the product in the shell script; I typically use 'cat' to
  redirect STDIN to a disk file
o finally, run one or more processes after successfully reading all of the
  product and writing it to disk.

>Thanks!

Tom Yoksas