Dee M
01/20/2021, 7:48 PMParameter validation failed: Invalid type for parameter containerDefinitions[0].logConfiguration.options.awslogs-create-group, value: True, type: <class 'bool'>, valid types: <class 'str'>
Zanie
01/20/2021, 7:57 PMMariia Kerimova
01/20/2021, 7:57 PMDee M
01/20/2021, 8:39 PMconfig = ECSRun(cpu=512, memory=1024,
env={
'FLOW_NAME': 'my-prefect'
})
executor = LocalDaskExecutor()
result = S3Result(bucket=prefect_bucket)
store = Docker(
registry_url="...",
image_name="my_prefect",
image_tag="my_prefect,
base_image="...",
python_dependencies=['boto3'],
files={
path="my_prefect.py",
stored_as_script=True,
ignore_healthchecks=True
)
with Flow("my-prefect",
storage=store,
run_config=config,
result=result,
executor=executor
) as flow:
raw = get_data()
df = transform_data(raw)
save_data(df)
Mariia Kerimova
01/20/2021, 8:52 PMDee M
01/20/2021, 8:59 PMrun_task_kwargs
?Mariia Kerimova
01/20/2021, 9:06 PMJim Crist-Harif
01/20/2021, 9:46 PMlogConfiguration
anywhere in the ECS agent - the error you're seeing seems to indicate that it's being set incorrectly, but we don't set it at all by default. Have you set it as a default on your agent?Dee M
01/20/2021, 9:50 PMJim Crist-Harif
01/20/2021, 9:53 PMregistry_url
related to the logConfiguration
of an ECS task definition?