I've run into a... situation... with a web app running off a hosting company's servers. Said hosting company provides users with 100 MySQL databases, each of which can be up to 100M in size. As new features have been added, this app's appetite for data has also increased significantly, to the point of now having one table which is around 120M. This is obviously an issue.

The hosting company has been contacted and they have stated that they provide no options for obtaining larger databases short of migrating everything to a different server.

So, in the interest of avoiding an unneccesary migration, is there any existing module (or well-documented technique that I could turn into a module) which would allow me to combine several of those distinct 100M databases into a virtual n00M database without needing to deal with managing a flock of database handles myself and figuring out which data goes where? (Note that simply putting each table into a separate database is not sufficient, as there's already one >100M table and another is likely to break the 100M barrier within the next several months.)


In reply to Virtual/distributed database with DBI by dsheroh

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.