|
Home > Archive > BizTalk Server Applications Integration > February 2004 > biztalk -CPU,Memeory isssue
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
biztalk -CPU,Memeory isssue
|
|
| divihari 2004-02-10, 1:39 am |
| HI
it seems biztalk using more CPU,RAM when processing files.
we have a box with 1GB RAM and we have split processing
logic for large file handling and testing >100MB text file
and it seems biztalk the folloing error
An error occurred in BizTalk Server.
Details:
------------------------------
[0x8007000e] Not enough storage is available to complete
this operation.
[0x0128] The next scheduled work item cannot be obtained
for processing.
[0x172e] There was a serious error within the BizTalk
Server scheduler component. The server is being shut down.
Resolve this problem and then restart the server.
any clue how to over come
we have requirement sometimes >500 MB flat files
any ideas and architecture issues can u guys share
thanks
divi
| |
| R.Balaji 2004-02-10, 1:39 am |
| Hi,
Do you log all the inbound/outbound documents in the biztalk tracking
database?
For large size files, this document logging should be disabled.
Regards,
R.Balaji
"divihari" <divihari@yahoo.com> wrote in message
news:dd6201c3efe4$376dcab0$a401280a@phx.gbl...
> HI
> it seems biztalk using more CPU,RAM when processing files.
> we have a box with 1GB RAM and we have split processing
> logic for large file handling and testing >100MB text file
> and it seems biztalk the folloing error
> An error occurred in BizTalk Server.
>
> Details:
> ------------------------------
> [0x8007000e] Not enough storage is available to complete
> this operation.
>
> [0x0128] The next scheduled work item cannot be obtained
> for processing.
>
> [0x172e] There was a serious error within the BizTalk
> Server scheduler component. The server is being shut down.
> Resolve this problem and then restart the server.
>
>
> any clue how to over come
> we have requirement sometimes >500 MB flat files
> any ideas and architecture issues can u guys share
> thanks
> divi
| |
| divihari 2004-02-10, 4:38 am |
| hi
we turned off SQLserver logging completely and no logging
anywhere .we have a dual processor box .
we have a preprocessor splits say 100 mb into 50 of 2 mbs
and ssubmits files to biztalk using Submit method and all
files are in work queue and biztalk is not processing
them and if we see in event log ,its full of messages
with error i posted.we have installed sp2 too
any issues
divi
>-----Original Message-----
>Hi,
>
>Do you log all the inbound/outbound documents in the
biztalk tracking
>database?
>
>For large size files, this document logging should be
disabled.
>
>Regards,
>R.Balaji
>
>
>"divihari" <divihari@yahoo.com> wrote in message
>news:dd6201c3efe4$376dcab0$a401280a@phx.gbl...
files.[color=blue]
file[color=blue]
complete[color=blue]
obtained[color=blue]
down.[color=blue]
>
>
>.
>
| |
| Jan Eliasen 2004-02-10, 6:35 pm |
| On Tue, 10 Feb 2004 09:39:05 -0800, "divihari" <divihari@yahoo.com>
wrote:
I think R.Balaji wasn't talking about logging in the SQL-server, but
the logging done in BizTalk.
Look at your channel-configurations. Are you logging the inbound
and/or outbound document?
Are you running low on disc space on the machine?
How large is the InterchangeDTA database? (Not just the database, but
the files that contain the database, ie. InterchangeDTA.mdf and
Interchange_Log.ldf ? Have you installed the stored procedure that
purges the InterchangeDTA database? If not, look at the BizTalk
documentation to find out how it works.
[color=blue]
>hi
> we turned off SQLserver logging completely and no logging
>anywhere .we have a dual processor box .
>we have a preprocessor splits say 100 mb into 50 of 2 mbs
>and ssubmits files to biztalk using Submit method and all
>files are in work queue and biztalk is not processing
>them and if we see in event log ,its full of messages
>with error i posted.we have installed sp2 too
>any issues
>divi
>biztalk tracking
>disabled.
>files.
>file
>complete
>obtained
>down.
--
Jan Eliasen, representing himself and not the company he works for.
MCP in Microsoft BizTalk Server
| |
| divihari 2004-02-11, 2:40 am |
| Hi
there is no logging enabled even in channel level.
thanks
divi
>-----Original Message-----
>On Tue, 10 Feb 2004 09:39:05 -0800, "divihari"
<divihari@yahoo.com>
>wrote:
>
>I think R.Balaji wasn't talking about logging in the SQL-
server, but
>the logging done in BizTalk.
>
>Look at your channel-configurations. Are you logging the
inbound
>and/or outbound document?
>
>Are you running low on disc space on the machine?
>
>How large is the InterchangeDTA database? (Not just the
database, but
>the files that contain the database, ie.
InterchangeDTA.mdf and
>Interchange_Log.ldf ? Have you installed the stored
procedure that
>purges the InterchangeDTA database? If not, look at the
BizTalk
>documentation to find out how it works.
>
>
logging[color=blue]
mbs[color=blue]
all[color=blue]
processing[color=blue]
>
>--
>Jan Eliasen, representing himself and not the company he
works for.
> MCP in Microsoft BizTalk Server
>.
>
| |
| Nick Malik 2004-02-11, 3:37 pm |
| 100 MB files are not supported in Biztalk 2002
The following article has some info.
http://support.microsoft.com/?kbid=821913
You are stuck at 20MB for Unicode XML files, which usually means less than
7MB for ASCII flat files (since BTS converts everything to Unicode XML).
Is your preprocessor breaking things down below that size?
Also, there's a possibility that Biztalk is trying to put through some very
large transactions, and that kills your free memory. You said that you have
a preprocessor that is breaking up the files. I assume that the
preprocessor is also submitting to Biztalk, and has a connection open to a
database (any OLEDB database)? If so, all of the submissions are in a
single transaction. This is default behavior for objects running in a COM+
context, where your preprocessor is running. To prevent this, in your
connection string, set Enlist=False. See the following link.
http://msdn.microsoft.com/library/d...transaction.asp
Hope this helps,
--- Nick Malik
Biztalk Bum
"divihari" <divihari@yahoo.com> wrote in message
news:dd6201c3efe4$376dcab0$a401280a@phx.gbl...
> HI
> it seems biztalk using more CPU,RAM when processing files.
> we have a box with 1GB RAM and we have split processing
> logic for large file handling and testing >100MB text file
> and it seems biztalk the folloing error
> An error occurred in BizTalk Server.
>
> Details:
> ------------------------------
> [0x8007000e] Not enough storage is available to complete
> this operation.
>
> [0x0128] The next scheduled work item cannot be obtained
> for processing.
>
> [0x172e] There was a serious error within the BizTalk
> Server scheduler component. The server is being shut down.
> Resolve this problem and then restart the server.
>
>
> any clue how to over come
> we have requirement sometimes >500 MB flat files
> any ideas and architecture issues can u guys share
> thanks
> divi
|
|
|
|
|