开发者

out of memory using java mail

does java mail API uses streaming? where can i get the source code to confirm this. also i am tryign to send the mail using raw and non-raw mode. in raw mode i can pass an input Stream to MimeMessage constructor:[/b]

new MimeMessage(session, doc.getBodyInputStream());

In Non-raw mode, i have to do the following Since there can be any mime type, so i have to use DataHandler and DataSource. Since the DataSource interface contracts says of providing the fresh inputStream everytime we invoke getInputStream(), we need to keep the data in the byte[] which will throw OOM for large size or documents Is there a way to avoid this?

MimeMessage msg = new MimeMessage(session);
byte[] bArr = do开发者_如何学Cc.getBody();
ByteArrayInputStream ins = new ByteArrayInputStream(
    bArr != null && bArr.length > 0 ?  bArr : "".getBytes());
msg.setDataHandler(new DataHandler( new ByteArrayDataSource(ins, mimeType)));


Does the problem occur if you just process a single mail or do you get OOM after processing (and caching!) several mails?

Increasing heap size is an option, but if it just increases the time until you get hurt by the next OOM, then you think about alternatives to keeping the raw byte arrays in memory.

And you should use the ByteArrayDataSource(byte[] bArr, String type) constructor, this prevents from duplicating the complete byte array in memory, because the bArr is just stored in the DataSource as it is. The other constructor starts with an 8k byte array and doubles its size each time more space is needed - this wastes a lot of memory and may be the cause of your problem. (source)


Regarding the OOM, in general your mails should not be larger than 10MB, which in turn should not be keeping more than 10MB in the byte array.

Is this a theoretical question? Or are you actually seeing this happen?

If you are seeing it happen, then increase your heap size, since the above code looks more or less correct.


Is it possible to dump the body to a (temporary) file, let the dumped bArr get out of scope (or set to null) and then use the FileDataSource?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜