Amazon Relational Database Services (RDS)
Amazon Relational Database Service (or Amazon RDS) is a distributed relational database service by Amazon Web Services (AWS), also included in the AWS Free Tier option.
You can create different types of DBs using AWS web page or AWS CLI.
Regarding possible cost while learning AWS RDS, just be aware that you will be able to stop AWS RDS instances from AWS Management Console or AWS CLI for 7 days period at a time, but after those 7 days, it will be automatically started by AWS.[1] [2]
Basic AWS Cli Commands
Describe some basic parameters of RDS instances:
aws rds describe-db-instances --output text --query 'DBInstances[*].[DBInstanceArn,Engine,DBInstanceIdentifier,DBInstanceStatus]' arn:aws:rds:eu-central-1:4523523466:db:my_branches_name postgres my_branches_name available
Describe additional parameters of RDS instances:
/usr/bin/aws rds describe-db-instances --output text --query 'DBInstances[*].[DBInstanceArn,Engine,EngineVersion,AvailabilityZone,MultiAZ,DBInstanceIdentifier,DBInstanceClass,AllocatedStorage,DBInstanceStatus,PubliclyAccessible,MasterUsername]' arn:aws:rds:eu-central-1:4523523466:db:my_branches_name1 postgres 9.6.6 eu-central-1b True my_branches_name1 db.t2.micro 50 available False root arn:aws:rds:eu-central-1:4523523466:db:my_branches_name1 postgres 9.6.6 eu-central-1a False my_branches_name2 db.t2.medium 20 available False root
Readings
FAQs
- What is the maximum Database storage size?
- Can i limit the size of my Database under maximum AWS size?
- No.
- Do i have to stop my database to increase storage?
See Also
- Wikipedia: Amazon Relational Database Service
- https://aws.amazon.com/rds/
- https://aws.amazon.com/rds/faqs/
- https://github.com/open-guides/og-aws#rds
- Databases: Database management, SQL, NoSQL, Wide column, PostgreSQL, MariaDB, MySQL, Derby DB, MongoDB, Cassandra, SQLite, HSQL2, H2, RocksDB, Microsoft SQL Server, DB2, Oracle Database, Memcached, Berkeley DB, Collation, SingleStore, Amazon Aurora, Graph database, Amazon DynamoDB, PrestoDB, Cache hit ratio, ACID, WAL, ARIES, DBMS, OLTP, OLAP, Database Schema, CockroachDB, Tables, Views, Apache Druid, RDMS
- SQL, NewSQL, RDMS: GraphQL (2015), SQLite,
select, insert
,select count
, Distributed SQL, TablePlus, Cache hit ratio,pg_stat_user_tables
,EXPLAIN
, Index (PostgreSQL), DDL, SQL/MED, Group by, List users, SQL Injection, SQLAlchemy,CREATE USER, CREATE ROLE, EXPLAIN, ALTER DATABASE, REVOKE, NOLOCK, NOWAIT, EXISTS
, Unique constraint,.sql
- Aurora MySQL and PostgreSQL compatible relational database
Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy.
Source: wikiversity
- ↑ https://aws.amazon.com/about-aws/whats-new/2017/06/amazon-rds-supports-stopping-and-starting-of-database-instances/
- ↑ https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_StopInstance.html
- ↑ https://aws.amazon.com/about-aws/whats-new/2017/08/amazon-rds-for-sql-server-increases-maxiumum-database-storage-size-to-16-tb/
- ↑ https://aws.amazon.com/about-aws/whats-new/2015/06/amazon-rds-increases-storage-limits-to-6TB-for-piops-and-gp2/
- ↑ https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#Concepts.Storage.GeneralSSD
- ↑ https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html
- ↑ https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Status.html
Advertising: