Re: Streaming LOB Data

2007-01-19 Thread Konstantin Osipov
* Robert DiFalco <[EMAIL PROTECTED]> [06/04/30 03:09]: > Thanks Sergei, it's nice to know for sure. Do you know if there is any > documentation on how memory is used to store LOB data? For example, is > it a percentage of the total buffer pool size or is it allocated from > available memory un-all

RE: Streaming LOB Data

2006-05-08 Thread Robert DiFalco
TECTED] Sent: Monday, May 08, 2006 3:16 PM To: 'Jeremy Cole'; Robert DiFalco Cc: 'Sergei Golubchik'; [EMAIL PROTECTED]; mysql@lists.mysql.com Subject: RE: Streaming LOB Data Related inequalities: Given a blob of N bytes: max_allowed_packet > N innodb_log_file_size > 10 *

RE: Streaming LOB Data

2006-05-08 Thread Rick James
May 08, 2006 2:55 PM > To: Robert DiFalco > Cc: Sergei Golubchik; [EMAIL PROTECTED]; mysql@lists.mysql.com > Subject: Re: Streaming LOB Data > > Hi Robert, > > > Anyone know for sure if the memory needed to insert a LOB is a > > percentage of the system's avai

Re: Streaming LOB Data

2006-05-08 Thread Jeremy Cole
Hi Robert, Anyone know for sure if the memory needed to insert a LOB is a percentage of the system's available memory or if it is allocated from the innodb_buffer_pool_size? IOW, how should my configuration settings be modified to allow the insertion of larger blobs? :) The majority of the mem

Re: Streaming LOB Data

2006-05-02 Thread Sergei Golubchik
Hi! On Apr 29, Robert DiFalco wrote: > Thanks Sergei, it's nice to know for sure. Do you know if there is any > documentation on how memory is used to store LOB data? For example, is > it a percentage of the total buffer pool size or is it allocated from > available memory un-allocated to the buff

RE: Streaming LOB Data

2006-05-02 Thread Robert DiFalco
From: Robert DiFalco [mailto:[EMAIL PROTECTED] Sent: Saturday, April 29, 2006 9:49 AM To: Sergei Golubchik Cc: [EMAIL PROTECTED]; mysql@lists.mysql.com Subject: RE: Streaming LOB Data Thanks Sergei, it's nice to know for sure. Do you know if there is any documentation on how memory is used to stor

RE: Streaming LOB Data

2006-04-29 Thread Robert DiFalco
ssage- From: Sergei Golubchik [mailto:[EMAIL PROTECTED] Sent: Saturday, April 29, 2006 9:34 AM To: Robert DiFalco Cc: [EMAIL PROTECTED]; mysql@lists.mysql.com Subject: Re: Streaming LOB Data Hi! On Apr 28, Robert DiFalco wrote: > It appears (for InnoDB at least) that while INSERTing a LOB that al

Re: Streaming LOB Data

2006-04-29 Thread Sergei Golubchik
Hi! On Apr 28, Robert DiFalco wrote: > It appears (for InnoDB at least) that while INSERTing a LOB that all LOB > data must be loaded into memory before it is written to disk. Or is it > just the size of the combined log files? Looking at Task Manager, it > looks like it DOES try to load the whole

Streaming LOB Data

2006-04-28 Thread Robert DiFalco
It appears (for InnoDB at least) that while INSERTing a LOB that all LOB data must be loaded into memory before it is written to disk. Or is it just the size of the combined log files? Looking at Task Manager, it looks like it DOES try to load the whole thing into memory before streaming it to disk