Reputation: 4660
I have a bluemix app that is currently setup with the ClearDB MySQL 3rd party bluemix service through PHP. The service works well, however I noticed that there is a limit of 5mb of space for the free version (you can upgrade from there). I recently looked into Bluemix's own SQL Database service and it offers up to 100mb of space free per instance running on Bluemix. What are the advantages of the ClearDB service? To me it seems that Bluemix's own service would be a lot more cost effective. What are the considerations?
Thank you,
--
Upvotes: 0
Views: 235
Reputation: 3233
They are based on different RDBMS: ClearDB is based on MySQL while SQL Database is powered by IBM DB2, so that should be the first thing to consider when choosing between them. For example if you are deploying an existing application that works on MySQL you may want to use the same DBMS. If the underlying technology is not important (or you don't have any constraint on it) please note that, as you can see in the Bluemix Catalog, ClearDB is a Third Party while SQL Database is an IBM service. This means that the latter is developed by IBM and you can get a quicker support when experiencing issues with your database.
Upvotes: 1