[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: PASOE agent log has scary messages (stget: out of storage)

Status
Not open for further replies.
G

gus bjorklund

Guest
the message "stget out of storage" comes when the 4gl runtime is allocating dynamic memory and the allocation fails. there are several reasons why this might happen: 0) there is no more available address space - you are attempting to exceed the per process limit. 1) the 4gl are attempting to allocate a large chunk of memory for something and the address space is so fragmented that the largest contiguous chunk is smaller than the requested amount. 2) the application is allocating memory for various things and does not delete the items that are no longer needed. 3) you have too many 4gl sessions in one app server agent. 4) other nstuff that i cant think of at the moment.

Continue reading...
 
Status
Not open for further replies.
Top