Chris Roth
05/18/2020, 8:07 PMdagster.yaml
, but i get Undefined field "loggers" at the root. Expected:
...
so i'm not sure where to put thisprha
05/18/2020, 8:08 PMChris Roth
05/18/2020, 8:09 PMprha
05/18/2020, 8:09 PMChris Roth
05/18/2020, 8:10 PMprha
05/18/2020, 8:10 PMChris Roth
05/18/2020, 8:10 PMrepository.yaml
, dagster.yaml
, the playground execution yaml, celery.yaml
, scheduler.yaml
prha
05/18/2020, 8:14 PMcompute_logs
section in your instance yaml (dagster.yaml
)?ComputeLogManager
that stores the compute logs remotely… check the dagster-aws
package for the S3ComputeLogManager
dagster.yaml
would then include a section like this:
compute_logs:
module: dagster_aws.s3.compute_log_manager
class: S3ComputeLogManager
config:
bucket: "my-bucket"
prefix: "my-prefix"
Chris Roth
05/18/2020, 8:17 PMcompute_logs:
module: dagster_aws.s3.compute_log_manager
class: S3ComputeLogManager
config:
bucket: myp-pipeline
prefix: logs
prha
05/18/2020, 8:18 PMChris Roth
05/18/2020, 8:18 PMcontext.resources.s3.download_file
which is using dagster_aws.s3.resources
for example and it works correctly)prha
05/18/2020, 8:21 PMChris Roth
05/18/2020, 8:21 PMprha
05/18/2020, 8:22 PMChris Roth
05/18/2020, 8:23 PMprha
05/18/2020, 8:25 PMChris Roth
05/18/2020, 8:25 PMprha
05/18/2020, 8:49 PMChris Roth
05/18/2020, 9:04 PM