Creates a cluster object for managing AWS Fargate workers using Future backend
Usage
starburst_cluster(
workers = 10,
cpu = 4,
memory = "8GB",
platform = "X86_64",
region = NULL,
timeout = 3600
)Examples
# \donttest{
if (starburst_is_configured()) {
cluster <- starburst_cluster(workers = 20)
results <- cluster$map(data, function(x) x * 2)
}
# }
