Johnny Ray Austin
Johnny Ray Austin
We're currently running workloads which need to do perform local filesystem data calculations. Since we can't mount EBS/EFS, we're forced to download data explicitly _all_ from S3 to the filesystem...
@FernandoMiguel interesting. If I understand correctly, there would still need to be a download step to load the data in a volume, but it would only happen once, and other...
@Akramio Ideally, the ECS tasks would use a pre-provisioned EBS volume. We'd introduce a data processing step which creates the volume and subsequently-launched tasks would "discover" it. Hope that makes...
Yes, with the option for setting a bucket ``` javascript var s3Prod = papercut.schema(function(schema) { schema.set("storage", "s3"); schema.set("bucket", "production_bucket"); }); var s3Dev = papercut.schema(function(schema) { schema.set("storage", "s3"); schema.set("bucket", "development_bucket"); });...