15.08.2008, 04:15 | #1 |
Участник
|
memory leak in Axapta 3.0
Источник: http://alexvoy.blogspot.com/2008/08/...axapta-30.html
============== Recently having got an error message after using AOS for batch processing I started digging this problem and finally found out that was described in Fixlist of Service Pack 5. (Problem #1748 Processing some X++ code constructions resulted in a memory leak.) You may see the same error by creating a job like the following one as it was suggested in Fixlist in order to reproduce the message. I just increased the number of iteration and an info to see the progress. static void MemoryLeakTest(Args _args) { container custcont; int loop; Custtable custtable; ; select custtable; custcont = conins(custcont,1,custtable.data()); for(loop = 1; loop
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
15.08.2008, 11:56 | #2 |
Участник
|
Вообще-то, «to see the progress» гораздо лучше подходит print, а не добавление сообщений в infolog - с учетом того, что клиент больше 10000 сообщений (по умолчанию) даже и отобразить не пытается. В общем, с использованием print в данном job'е воспроизвести падение Аксапты из-за утечки памяти не удалось - даже при 500000 итерациях. Проверялось на ядре 3.0.1951.7609 (KR3). К слову, хорошая традиция на форуме - писать используемую версию ядра, приложения, СУБД, etc. Из сообщения я так и не понял, запускал ли авто свой тест на ядре ранее SP5 или более позднем.
|
|
|
|