Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm interested to know if anyone is using Spider for MySQL engine to scale MySQL. I need to be able to scale my database beyond the 1TB limit of Amazon RDS and Spider seems like a good solution, allowing you to query the server in the "cluster" as if it was one big database.

There isn't any in-depth documentation and talk about this technology and I wonder how good it is?

share|improve this question

1 Answer

up vote 5 down vote accepted
+50

Spider for MySQL has no documentation and the code has no test suite. It seems to be developed by a single developer.

The project hasn't had any release since 2012-02 (9 months ago as of this writing), and its last release was version 2.28 for MySQL 5.5.14 (the current release is MySQL 5.5.28). Launchpad shows no code commits since 2011-05 (18 months ago).

This makes me wonder if the final changes for 2.28 were never actually committed to source control. This makes me doubt the software quality.

While Spider for MySQL is a valiant proof of concept, I would consider it an abandoned experiment.
Given all of the above, I would not recommend it for production use.

As for your scaling problem, I think you have these choices:

  • Adapt your application architecture to support multiple db instances.
  • Trim down your data so it fits within 1TB.
    • Archive less-used data and indexes.
    • Choose more space-efficient data types.
    • Compress bulky BLOB and TEXT data.
  • Move off of Amazon RDS, for instance to Amazon EC2 so you can manage your own storage.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.