Is there a way to make MySQL connect to a completly seperate server instance on a completly different computer on a completly diferent subnet from said MySQL server and have it move data to that server based on a set of conditions.
Basicaly, my company has a hit counter that is eating more and more space on our co-located MySQL server, but we have hundreds of gigabytes of storage space sat on our internal staging server.
We intend to rebuild our client query tool to make it only analyse the past two months of data unless specificaly requested to access all historical data - then it would go about retreiving the data from our internal server (2Mb ADSL connection accessing around 300 000 rows of data - but they can't say they didn't ask for it Must remember to make the calls asynchronous)
It would be lovely if we could run
but in the grand scheme of things, that would be just a little too easy and no where near as satisfying as the huge list of operations, changes and caveats I'm about to get off you good folk
Go ahead, confuse me.
Yet another unchecked rambling brought to you by:
Oddball
Basicaly, my company has a hit counter that is eating more and more space on our co-located MySQL server, but we have hundreds of gigabytes of storage space sat on our internal staging server.
We intend to rebuild our client query tool to make it only analyse the past two months of data unless specificaly requested to access all historical data - then it would go about retreiving the data from our internal server (2Mb ADSL connection accessing around 300 000 rows of data - but they can't say they didn't ask for it Must remember to make the calls asynchronous)
It would be lovely if we could run
Code:
REPLICATE * FROM page_hits WHERE MONTH(time) < MONTH(NOW) - 1 TO <conString>
but in the grand scheme of things, that would be just a little too easy and no where near as satisfying as the huge list of operations, changes and caveats I'm about to get off you good folk
Go ahead, confuse me.
Yet another unchecked rambling brought to you by:
Oddball