Databases

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.

library(sixtyfour)

All database related functions in sixtyfour should start with aws_db.

Redshift

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.

my_security_group <- aws_vpc_sg_with_ingresss("redshift")

Notes on the parameters used in the example below:

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

con <- aws_db_redshift_con(
  user = "your-username",
  pwd = "your-pwd",
  id = "some-id"
)

List tables, create a table, etc

library(DBI)
dbListTables(con)
dbWriteTable(con, "mtcars", mtcars)
dbListTables(con)
dbReadTable(con, "mtcars")

Use dplyr/et al.

library(dplyr)
tbl(con, "mtcars") %>%
  filter(mpg == 4)

Important: Remember to delete your cluster when your done!

RDS

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:

Let’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:

aws_db_rds_create(
  id = "myinstance",
  class = "db.t3.micro",
  engine = "mariadb",
  wait = TRUE
)

Connect to the instance

con <- aws_db_rds_con(id = "myinstance")

List tables, create a table, etc

library(DBI)
dbListTables(con)
dbWriteTable(con, "mtcars", mtcars)
dbListTables(con)
dbReadTable(con, "mtcars")

Use dplyr/et al.

library(dplyr)
tbl(con, "mtcars") %>%
  filter(mpg == 4)