Paul,
I have used the ODBC interface as a rough test to experiment with application 
compatibility with MySQL.  I would not consider using ODBC at all to load in a 
production environment.

I want to develop a loading method that is as fast as possible.  If I were to use LOAD 
FILE, my application 1. parses the binary file, 2. converts/outputs a text format, 3. 
MySQL parses this text format, and 4. converts to its own internal storage.  It seems 
to me that if I could simply eliminate step 2 and 3 the load time would decrease 
dramatically, especially considering the volume of data.  Disk I/O alone for writing 
and then reading such a large temp file seems to me to be a waste.  I have converted 
these files to text before and they can inflate 10x.. from 10M to 100M!

I know I am taking a more difficult path, but load time must be extremely fast for my 
application.  How could I implement this functionality in my application, or extend 
MySQL to do it?

thanks,
casey

> -----Original Message-----
> From: Paul DuBois [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, July 08, 2003, 9:46 PM
> To: [EMAIL PROTECTED], [EMAIL PROTECTED]
> Subject: Re: Bulk loading data
> 
> At 21:36 -0700 7/8/03, cmars wrote:
> >Hi,
> >I want to insert massive amounts of data in near real-time into a 
> >MySQL database.  The data is in a structured binary format, and I 
> >have code that parses the data into logical data structures.
> >
> >Right now I can load into a MySQL database via ODBC, but I need to 
> >improve throughput.  How can I bulk insert the data more efficiently?
> >
> >I would prefer not to use LOAD FILE because it involves converting 
> >the binary format to text, which will have a much larger footprint. 
> >To illustrate the pain of text files in my application, a single 
> >binary file might contain up to a million rows!  And I might load 
> >hundreds, if not thousands of these files in a day!
> >
> >How can I load data directly into the database at a lower more 
> >direct level than LOAD FILE?  What are my options to integrate my 
> >data parser with MySQL?
> 
> I'm curious why you're concerned about the efficiency of LOAD FILE
> when you're using ODBC, an API known to add a fair amount of overhead.
> 
> Have you actually tried LOAD FILE and found it empirically to be slower than
> ODBC?
> 
> 
> 
> >
> >thanks,
> >casey
> 
> 
> -- 
> Paul DuBois, Senior Technical Writer
> Madison, Wisconsin, USA
> MySQL AB, www.mysql.com
> 
> Are you MySQL certified?  http://www.mysql.com/certification/
> 

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to