There are many databases available in AWS services. This package deals with a subset of them, including:
We only handle a subset as sixtyfour
aims to be an
opinionated package providing easy to use interfaces - achieving that
goal means supporting the subset of the most well troden paths.
All database related functions in sixtyfour
should start
with aws_db
.
The aws_db_redshift_create
function creates a cluster
for you (a Redshift instance is called a “cluster”).
There’s an important distinction between Redshift and RDS. Redshift uses IAM username/password, whereas with RDS you can use username/password setup for each instance of a RDS database, or do authentication through IAM. However, with RDS you can’t simply pass your IAM username/password (see notes below).
First, let’s create a security group with an ingress rule so you can access your Redshift cluster.
Notes on the parameters used in the example below:
id
: this is an ID you come up with, it must be unique
for all clusters within your AWS accountuser
/pwd
: your IAM username and
passwordsecurity_group_ids
: it’s best to first create a
security group to handle permissions to your Redshift cluster. See
example above for how to do that. Pass in it’s identifier herewait
: Since we’re using wait=TRUE
the call
to aws_db_redshift_create
will likely take about 3 minutes
to run. You can set wait=FALSE
and not wait, but then
you’ll want to check yourself when the instance is available.aws_db_redshift_create(
id = "some-id",
user = "your-username",
pwd = "your-pwd",
security_group_ids = list(my_security_group),
wait = TRUE
)
Connect to the cluster
List tables, create a table, etc
library(DBI)
dbListTables(con)
dbWriteTable(con, "mtcars", mtcars)
dbListTables(con)
dbReadTable(con, "mtcars")
Use dplyr/et al.
Important: Remember to delete your cluster when your done!
The process for MariaDB, MySQL, and Postgres are more or less the same, so we’ll only demonstrate MariaDB.
In a future version of this package you’ll be able to use IAM to
authenticate with RDS, but for now sixtyfour
does not
support IAM for RDS. The current “happy path” (read: easy) process of
starting an RDS instance with aws_db_rds_create
is as
follows:
To connect to your RDS instance, you use aws_db_rds_con
.
The “happy path” for connecting is:
MariaDBConnection
for MariaDBLet’s walk through the steps with some code.
First, create an RDS instance - in this case for MariaDB.
Notes on the parameters used in the example below:
id
: this is an ID you come up with. see
?aws_db_rds_create
for constraintsclass
: The compute and memory capacity of the instance;
see the AWS
docs for instance class options. The default for this parameter
(db.t3.micro
) gives you an instance with relatively small
capacity in terms of memory and compute - but is set that way to
minimize costs in case you forget to turn it off if you’re not using
it!engine
: the default is mariadb
; other
options are mysql or postgreswait
: Since we’re using wait=TRUE
(the
default for this function) the call to aws_db_rds_create
will likely take about 5 minutes to run. You can set
wait=FALSE
and not wait, but then you’ll want to check
yourself when the instance is available.Connect to the instance
List tables, create a table, etc
library(DBI)
dbListTables(con)
dbWriteTable(con, "mtcars", mtcars)
dbListTables(con)
dbReadTable(con, "mtcars")
Use dplyr/et al.