Alibaba Cloud RDS vs. IBM Cloud Database vs. Oracle Cloud Database

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS SQL Server Serverless,2-4RCU 50GB 3个月
推荐场景:
云数据库 RDS SQL Server,基础系列 2核4GB
简介: This article provides a technical review of the cloud-based database offerings from Alibaba Cloud, Oracle, and IBM.

DataWarehouse_FriendlyDatabaseDesign

When moving applications to the cloud, or creating new cloud-native apps, the database that stores your information is vitally important, and this should be a core decision that drives the application design.

This article provides a technical review of the cloud-based database offerings from Alibaba Cloud, Oracle, and IBM. We’ll look at both SQL and NoSQL options.

Cloud Database Overview

More and more companies are building cloud-native applications and migrating workloads from internal data centers to the public cloud for all the benefits moving to the cloud offers.

Any application has data it collects and generates, which needs to be stored then retrieved at a later time, and to be reported on or displayed for the application client. Databases have long been the solution for storing and retrieving data at scale. Every cloud provider has a database offering that can be used as a base.

Alibaba Cloud, IBM Cloud, and Oracle Cloud all have traditional SQL-based RDBMS (relational database management systems) available as of this writing. Only IBM Cloud and Alibaba Cloud have NoSQL offerings; Oracle Cloud NoSQL has not been launched yet.

SQL Database Options

IBM Cloud’s database as a service (DBaaS) is DB2 on Cloud. This service is based on the latest version of DB2. DB2 is most often seen within organizations that already have an investment in IBM software and hardware, and is the sixth most popular database platform in use.

The Oracle Cloud DBaaS is named Oracle Cloud Database. The service runs one of several versions of Oracle’s database software depending on your requirements. Unlike most cloud database providers, Oracle allows clients to use older releases of its database software which is appealing to enterprises that want to experiment with moving existing applications. Oracle is also the most widely used database in the world.

Alibaba Cloud has three different databases available under its ApsaraDB for RDS product. Depending on your requirements and preference, the choices are MySQL, PostgreSQL, and Microsoft SQL Server. MySQL is available in all 16 regions; PostgreSQL and Microsoft SQL Server are available in 13 regions. MySQL, Microsoft SQL Server, and PostgreSQL are the second, third, and fourth most popular database platforms in use today.

Technical Similarities:
-Relational database management system that supports ACID transactions.
-Uses tables with rows and columns
-Supports primary keys and secondary indexes
-Triggers and Storage Procedures are supported
-SQL syntax for interacting
-JDBC and ODBC support
-Has clients for a wide variety of languages including C/C++, C#, Node.js, Java, PHP, Python, and Ruby
-XML Query support

The differences in the five databases available are extremely varied and depend on application requirements and any existing requirements. A comparison of the three databases used most often in enterprises is available on db-engines.com: DB2 vs SQL Server vs Oracle.

Most new applications being developed as cloud-native, using containers, and built on a microservices architecture are using MySQL or PostgreSQL to hit the ground running. These database platforms have proven their ability to support applications as they scale out and support millions or billions of users. At some point all application architectures need to be revisited and potentially migrated to other platforms for specific features, but there is no reason to start with the more expensive and “high-end” solutions available in the cloud today.

NoSQL Database Options

IBM’s service is Cloudant, which is a proprietary offering that is only available as part of IBM’s hosted service.

Alibaba Cloud has an ApsaraDB for MongoDB product which is based on MongoDB, the top open source NoSQL database in use, and fifth most popular database software in use.

Similarities:
-Document-based using JSON
-Allow primary and secondary indexes
-Official support for Java, Node.js, Python, and Swift
-Support sharding for high availability and performance scaling
-Service includes backup and restore functionality

Differences:
IBM Cloudant
-Native REST API
-Triggers

Alibaba Cloud ApsaraDB for MongoDB
-Supports client libraries for 10+ languages
-Supports ReplicaSet in addition to sharding as a clustering option
-Available for as low as $0.04 USD per hour

Cloud Regions Available

Alibaba Cloud, IBM Cloud, and Oracle Cloud are three of the four visionaries in the Gartner 2017 Cloud Infrastructure as a Service Magic Quadrant, designating all their platforms among the top tier of global players.

IBM and Oracle both have strong presences in the private cloud space within large enterprises. IBM is by far the leader in this category. Oracle has eight active cloud regions with more planned. IBM has five data centers designated to host public cloud services out of their over 60 data centers available globally.

Alibaba Cloud is focused on being a top-tier public cloud provider. It has a larger footprint of public cloud regions than IBM or Oracle with 16 data centers globally; nine of them are outside of China. Alibaba Cloud is also the fastest growing of these three.

Conclusion

All three cloud database providers listed in this article will be able to support your general-purpose cloud platform needs. The selection of a database service provider can be based as much on personal preference as limitations that the development project has defined (like requiring JDBC). The industry has been trending towards open-source based solutions like MongoDB, MySQL, and PostgreSQL over the last couple of years, and these options are all available on Alibaba Cloud. To get started today, Alibaba Cloud offers a $300 credit for new users, which provides the opportunity to discover how easily Alibaba Cloud RDS will work with the rest of your application development software stack.

Bio
Vincent Power
Vince Power is an Enterprise Architect at Medavie Blue Cross. His focus is on cloud adoption and technology planning in key areas like core computing (IaaS), identity and access management, application platforms (PaaS), and continuous delivery.

相关实践学习
快速体验PolarDB开源数据库
本实验环境已内置PostgreSQL数据库以及PolarDB开源数据库:PolarDB PostgreSQL版和PolarDB分布式版,支持一键拉起使用,方便各位开发者学习使用。
目录
相关文章
|
4月前
|
SQL Oracle 关系型数据库
WARNING: Too Many Parse Errors With error=911 When Running a JDBC Application Connected to an Oracle 19c database
WARNING: Too Many Parse Errors With error=911 When Running a JDBC Application Connected to an Oracle 19c database (
55 2
|
4月前
|
Oracle 关系型数据库
19c 开启Oracle Database Vault
19c 开启Oracle Database Vault
118 1
|
1月前
|
Oracle 关系型数据库 MySQL
Mysql和Oracle数据库死锁查看以及解决
【8月更文挑战第11天】本文介绍了解决MySQL与Oracle数据库死锁的方法。MySQL可通过`SHOW ENGINE INNODB STATUS`查看死锁详情,并自动回滚一个事务解除死锁;也可手动KILL事务。Oracle则通过查询V$LOCK与V$SESSION视图定位死锁,并用`ALTER SYSTEM KILL SESSION`命令终止相关会话。预防措施包括遵循ACID原则、优化索引及拆分大型事务。
|
19天前
|
缓存 关系型数据库 MySQL
【缓存大对决】Memcached VS MySQL查询缓存,谁才是真正的性能之王?
【8月更文挑战第24天】在现代Web应用中,缓存技术对于提升性能与响应速度至关重要。本文对比分析了Memcached与MySQL查询缓存这两种常用方案。Memcached是一款高性能分布式内存对象缓存系统,支持跨服务器共享缓存,具备灵活性与容错性,但受限于内存大小且不支持数据持久化。MySQL查询缓存内置在MySQL服务器中,简化了缓存管理,特别适用于重复查询,但功能较为单一且扩展性有限。两者各有所长,实际应用中可根据需求单独或结合使用,实现最佳性能优化。
42 0
|
26天前
|
关系型数据库 MySQL 数据库
探究数据库开源协议:PostgreSQL vs MySQL
探究数据库开源协议:PostgreSQL vs MySQL
|
2月前
|
SQL Oracle 关系型数据库
MySQL、SQL Server和Oracle数据库安装部署教程
数据库的安装部署教程因不同的数据库管理系统(DBMS)而异,以下将以MySQL、SQL Server和Oracle为例,分别概述其安装部署的基本步骤。请注意,由于软件版本和操作系统的不同,具体步骤可能会有所变化。
120 3
|
3月前
|
关系型数据库 MySQL 测试技术
《阿里云产品四月刊》—瑶池数据库微课堂|RDS MySQL 经济版 vs 自建 MySQL 性能压测与性价比分析
阿里云瑶池数据库云原生化和一体化产品能力升级,多款产品更新迭代
|
4月前
|
SQL Oracle 关系型数据库
Connect to Autonomous Database Using Oracle Database Tools
Connect to Autonomous Database Using Oracle Database Tools
43 1
|
3月前
|
Oracle 关系型数据库 Linux
Requirements for Installing Oracle Database/Client 19c on OL8 or RHEL8 64-bit (x86-64) (Doc ID 2668780.1)
Requirements for Installing Oracle Database/Client 19c on OL8 or RHEL8 64-bit (x86-64) (Doc ID 2668780.1)
27 0
|
3月前
|
SQL Oracle 关系型数据库
mysql和oracle 命令行执行sql文件 数据库执行sql文件 执行sql语句
mysql和oracle 命令行执行sql文件 数据库执行sql文件 执行sql语句
58 0

推荐镜像

更多