lookup error

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
suryadev
Premium Member
Premium Member
Posts: 211
Joined: Sun Jul 11, 2010 7:39 pm

lookup error

Post by suryadev »

this is the error in job,used look up for two copy stages.

can anyone help me with this error?

Lookup_55,0: Error writing table file "/opt/IBM/InformationServer/Server/Datasets/lookuptable.20100805.3pn2g5c": No space left on device
Thanks,
Surya
anbu
Premium Member
Premium Member
Posts: 596
Joined: Sat Feb 18, 2006 2:25 am
Location: india

Post by anbu »

You don't have enough space in Dataset directory /opt/IBM/InformationServer/Server/Datasets.

Remove the old files and run your job.
You are the creator of your destiny - Swami Vivekananda
suryadev
Premium Member
Premium Member
Posts: 211
Joined: Sun Jul 11, 2010 7:39 pm

Post by suryadev »

how can I do that ?

please let me know!!!
Thanks,
Surya
kris007
Charter Member
Charter Member
Posts: 1102
Joined: Tue Jan 24, 2006 5:38 pm
Location: Riverside, RI

Post by kris007 »

The error message says it all. You are out of space. You need to increase your scratch disk space or use a join stage instead. What is the volume of the data the job is processing?
Kris

Where's the "Any" key?-Homer Simpson
suryadev
Premium Member
Premium Member
Posts: 211
Joined: Sun Jul 11, 2010 7:39 pm

Post by suryadev »

I cannot use a join stage as the job is invoked as a webservice so only lookup supports this situation.

how can I increase the scratch disk space or remove the old files?

I have no clue about this situation

can you elaborate your answer?
Thanks,
Surya
kris007
Charter Member
Charter Member
Posts: 1102
Joined: Tue Jan 24, 2006 5:38 pm
Location: Riverside, RI

Post by kris007 »

The easier part is to request for additional space from your System Admin. To remove the old files from the Datasets you need to be careful so that you do not remove any descriptor files that actually belong to other datasets within your project. One approach can be, you can start looking at how old the files are in the Datasets directory and then make an educated decision after talking to the required people rather than just go in and delete those files.
Kris

Where's the "Any" key?-Homer Simpson
suryadev
Premium Member
Premium Member
Posts: 211
Joined: Sun Jul 11, 2010 7:39 pm

Post by suryadev »

thanks,
Do you mean the dataset files are in this folder

director--->tools----->dataset management----->files
Thanks,
Surya
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

This out of space error refers not to disk space, but to available memory for the lookup file set.
Try to reduce the memory needed in the reference data:
- remove unnecessary columns
- declare all string as unterminated ones, removing the length definitions; since a value of "Hello" in a VarChar(32) takes 26 bytes and with a VarChar() definition will only take 7.
Sreenivasulu
Premium Member
Premium Member
Posts: 892
Joined: Thu Oct 16, 2003 5:18 am

Post by Sreenivasulu »

Alternatively you can go the configurations folder in /opt/IBM/InformationServer/Server and change the mount names to the ones which have space left in default.apt (if your project uses some other apt file then use that)

Regards
Sreeni
Post Reply