Page 1 of 1

Pipe Broken

Posted: Mon Feb 05, 2007 10:22 pm
by ragunathan13
Hi..

I got a fatel error in my server job.

"Pipe Broken"

Any one help me pls. why it is come.

Regards,
Ragunathna J

Posted: Mon Feb 05, 2007 10:26 pm
by paddu
Can you please tell what is your design and please post complete log message .

Posted: Mon Feb 05, 2007 10:27 pm
by narasimha
Please elaborate on the problem. The error message you have given is not sufficient to get you a valid answer. We can just guess.
Give the scenario in which you get this error message.
Also copy and paste the entire error/warning message, rather than typing it out.

Posted: Mon Feb 05, 2007 11:09 pm
by ragunathan13
Hi..

Actuly i write a records into flat file, using sequential file stage as "Pre_CDC_namedPipe_write" And also read records from same flat file , using sequential file stage as "Pre_CDC_namedPipe_read" by parallel.

when i was run this job i get the following error.

Fatal ds_setup:error in 'write()'-Broken pipe
Info AiSfaEcmsPrmntlAct.Pre_CDC_namedPipe_read.Valid_source:Run stopes after 700 rows

Regards,
Ragunathan J

Posted: Tue Feb 06, 2007 12:13 am
by narasimha
An exact search on "Broken pipe" gave quite a few matches. Check if they are of any help to you.
Or we can wait for sombody who has seen/resolved this issue. :roll:

Posted: Tue Feb 06, 2007 7:52 am
by bkerebel
hi,
in a lot of situations, abort after 700 rows is the same about 0 rows, job treating 700 rows each time. then I think you have aborted directly

then, pipe file is not a file you want to write in, but it's only a null file, always 0 bytes, where your data is traveling but never it stops..

your design have then to be like

entrance_stage -> flat_file_stage_pipe_option -> ending_stage

if you put the ending_stage in pipe_option, it can't work

Bertrand