Maximum size of input text file

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
evanmaas
Charter Member
Charter Member
Posts: 60
Joined: Tue Apr 22, 2003 5:19 am
Location: Belgium

Maximum size of input text file

Post by evanmaas »

Hi,

I have a DS job that read a input txt file of 4 GB and it's running for 15 hours and do nothing.

Can someone tell me if there is a limit or maximum size of a input txt file that DataStage van read?

Regards,

Erik
sun786
Participant
Posts: 34
Joined: Mon Feb 07, 2005 5:48 am

Post by sun786 »

How many records are there in the file?
try to view the data for first 100 reocrds. check for any error.
did you try spliting the file into 1GB ( four files ) then tried to read/load the file.

I can load a file of 3 GB without any issue with 13 Millions records.

Regards
Siraz
m_keerthi2005
Participant
Posts: 22
Joined: Thu Jun 02, 2005 5:12 am

Post by m_keerthi2005 »

I have loaded the 5 GB file without any issues. It completed within 4 hours. When you click the view data it should come within seconds. Please check the options you have selected. It will work.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

There is no limit on the size of a Sequential File that DataStage can read.

From the other posters' experiences I would suggest that the delay is not in reading the text file, but elsewhere in your job design.

You can prove this easily enough. Construct a job as follows.

Code: Select all

Sequential File  ----->  Transformer  ----->  Sequential File
Put @FALSE as the constraint on the Transformer stage output link and/or append the output to /dev/null. This will show you how fast DataStage can read the large file.

Everything you add from there will increase the total elapsed time.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Prashantoncyber
Participant
Posts: 108
Joined: Wed Jul 28, 2004 7:15 am

Post by Prashantoncyber »

pls check if there are any warnings in log.

I have experienced that warning has impact on job performance.

Also what file system are u using?
kcbland
Participant
Posts: 5208
Joined: Wed Jan 15, 2003 8:56 am
Location: Lutz, FL
Contact:

Post by kcbland »

Please describe the job design, stages, etc. What if it's not stuck reading the file, but writing to the target? Is there a before/after stage/job routine call that's the true problem? Viewing the data on the Sequential file proves that the definitions are valid.
Kenneth Bland

Rank: Sempai
Belt: First degree black
Fight name: Captain Hook
Signature knockout: right upper cut followed by left hook
Signature submission: Crucifix combined with leg triangle
Post Reply