ds server error

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
ppalka
Participant
Posts: 118
Joined: Thu Feb 10, 2005 7:25 am
Contact:

ds server error

Post by ppalka »

Does anybody know what can be a reason of such error message:

Code: Select all

---------------------------------------------------------------------------
LABEL:          CORE_DUMP_FAILED
IDENTIFIER:     FAA1D46F

Date/Time:       Mon Jul 31 15:51:32 DFT 2006
Sequence Number: 4979
Machine Id:      00CB764F4C00
Node Id:         lpar2
Class:           S
Type:            PERM
Resource Name:   SYSPROC         

Description
SOFTWARE PROGRAM ABNORMALLY TERMINATED

Probable Causes
INTERNAL SOFTWARE ERROR
SYSTEM RUNNING OUT OF PAGING SPACE

User Causes
USER GENERATED SIGNAL

Failure Causes
CORE DUMP FAILED - SEE A REASON CODE BELOW

        Recommended Actions
        DEFINE ADDITIONAL PAGING SPACE
        RERUN THE APPLICATION PROGRAM
        IF PROBLEM PERSISTS THEN DO THE FOLLOWING
        CONTACT APPROPRIATE SERVICE REPRESENTATIVE

Detail Data
SIGNAL NUMBER
           4
USER'S PROCESS ID:
                446716
REASON CODE
           1
USER ID
         204
PROCESSOR ID
           0
CORE FILE NAME
/dsqs/datastage/Ascential/DataStage/Projects/CBDK_TEST/core
PROGRAM NAME
dsapi_slave
Thanks in advance.
Best regards,
Piotrek

Polish DataStage consulting company:
<a href="http://www.etlpro.pl">ETL PRO</a>
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

What tool did you use to generate that display?

Have you checked your physical and virtual memory and seen to your paging space?
SYSTEM RUNNING OUT OF PAGING SPACE
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Something you've tried to do from a DataStage client (through a dsapi_slave process on the server) has hit this limit. Keep the core file in case you need to report the problem to support.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
ppalka
Participant
Posts: 118
Joined: Thu Feb 10, 2005 7:25 am
Contact:

Post by ppalka »

Where can I find some logs of ds server running? I would like to get info such: new client connection, is that connection was succesful/not, how many clients are connected?
Is that possible?
And how to connect to ds server on unix to run DS.TOOLS app?
Best regards,
Piotrek

Polish DataStage consulting company:
<a href="http://www.etlpro.pl">ETL PRO</a>
loveojha2
Participant
Posts: 362
Joined: Thu May 26, 2005 12:59 am

Post by loveojha2 »

Where can I find some logs of ds server running? I would like to get info such: new client connection, is that connection was succesful/not, how many clients are connected?
Is that possible?
And how to connect to ds server on unix to run DS.TOOLS app?


How this is related to your topic posted :?
Success consists of getting up just one more time than you fall.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

There is no log. You need to take snapshots using netstat or, perhaps, list_readu | grep :

I'm guessing you want to spot the culprit. The list_readu report will show the identity of the client machine as well as the pid of the dsapi_slave process.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
ppalka
Participant
Posts: 118
Joined: Thu Feb 10, 2005 7:25 am
Contact:

Post by ppalka »

loveojha2 wrote: How this is related to your topic posted :?
I didn't want to make a new topic.
I think that logging errors of ds server engine and resolving some error is related in some way ...
Best regards,
Piotrek

Polish DataStage consulting company:
<a href="http://www.etlpro.pl">ETL PRO</a>
ppalka
Participant
Posts: 118
Joined: Thu Feb 10, 2005 7:25 am
Contact:

Post by ppalka »

ArndW wrote:What tool did you use to generate that display?
I don't know. I got that error in email from my colleague.
Have you checked your physical and virtual memory and seen to your paging space?
SYSTEM RUNNING OUT OF PAGING SPACE
It is probably cause of the problem. It is running out of memory during use of informix stage.
Best regards,
Piotrek

Polish DataStage consulting company:
<a href="http://www.etlpro.pl">ETL PRO</a>
Ultramundane
Participant
Posts: 407
Joined: Mon Jun 27, 2005 8:54 am
Location: Walker, Michigan
Contact:

Post by Ultramundane »

Is this AIX?

How much real memory do you have and how much paging space? Reason I ask is because IBM still recommends that you have more paging space then real memory. If not, you can run into many problems. Including, not being able to generate dumps, running out of paging space, cannot fork processes, etc...

Check real memory.
$ lscfg | grep mem
+ mem0 Memory

Determine size of mem0
$ lsattr -El mem0 | grep goodsize
goodsize 16384 Amount of usable physical memory in Mbytes False

I have 16384 MB of real memory.

Check paging space size.
$ lsps -s
Total Paging Space Percent Used
17408MB 2%

And, 17408 MB of paging space.
Post Reply