Re: [Boston.pm] LARGE MySQL Database

2006-05-11 Thread Alex Brelsfoard
Thanks all for the feedback. It's comforting to know that other people have had large mysql databases. As things stand, my database is setup well enough (I'm confident with the indexes and normalization). As for the proper engine to use for my situation, I found this quote: "InnoDB has been desig

Re: [Boston.pm] LARGE MySQL Database

2006-05-11 Thread Alex Brelsfoard
t might in the long > term. > > On May 9, 2006, at 5:52 PM, Steve Revilak wrote: > > >> Date: Mon, 8 May 2006 17:24:17 -0400 > >> From: Alex Brelsfoard > >> To: boston-pm@mail.pm.org > >> Subject: [Boston.pm] LARGE MySQL Database > > > >

Re: [Boston.pm] LARGE MySQL Database

2006-05-09 Thread Ben Tilly
On 5/9/06, Aaron Sherman <[EMAIL PROTECTED]> wrote: > Steve Revilak wrote: [...] > > If you haven't normalized the pants out of the table, that's probably > > a good place to start. Anything you can do to trim a few bytes off > > the row size will make a big difference in the size of the overall >

Re: [Boston.pm] LARGE MySQL Database

2006-05-09 Thread Aaron Sherman
Steve Revilak wrote: >> Basically I am dealing with using, storing, and sorting a LOT of data in a >> mysql database. >> With all the data in the table it makes for 404.8 Million rows. In a backup >> sql file that makes just under 80GB. >> OK, so you're dealing with a tiny database. mysql> s

Re: [Boston.pm] LARGE MySQL Database

2006-05-09 Thread Allen Day
You might considering partitioning the table dependent on one of the column's values. The canonical example is splitting a sales table by date range. This has the effect of decreasing load time and query time by making the indexes smaller. You would have to make a series of rules though if you

Re: [Boston.pm] LARGE MySQL Database

2006-05-09 Thread Mike Kruckenberg
elsfoard >> To: boston-pm@mail.pm.org >> Subject: [Boston.pm] LARGE MySQL Database > >> Basically I am dealing with using, storing, and sorting a LOT of >> data in a >> mysql database. >> With all the data in the table it makes for 404.8 Million rows. >

Re: [Boston.pm] LARGE MySQL Database

2006-05-09 Thread Steve Revilak
> Date: Mon, 8 May 2006 17:24:17 -0400 > From: Alex Brelsfoard > To: boston-pm@mail.pm.org > Subject: [Boston.pm] LARGE MySQL Database > Basically I am dealing with using, storing, and sorting a LOT of data in a > mysql database. > With all the data in the table it makes f

[Boston.pm] LARGE MySQL Database

2006-05-09 Thread Alex Brelsfoard
Howdy all, I know this isn't specifically a Perl question. But I AM using Perl with this project. Basically I am dealing with using, storing, and sorting a LOT of data in a mysql database. With all the data in the table it makes for 404.8 Million rows. In a backup sql file that makes just u