https://prefect.io logo
Title
k

Kyrylo Zaitsev

12/23/2021, 10:24 AM
Hi. I'd like to embed a markdown artifact in my pipeline, but I'm facing the issue with the artifact size limit:
requests.exceptions.HTTPError: 413 Client Error: Payload Too Large for url: <http://0.0.0.0:4200/>
This markdown I obtained by converting an HTML page in .md format. I deployed prefect using docker-compose, is there any way to increase GraphQL payload size limit?
a

Anna Geller

12/23/2021, 10:37 AM
There isn’t. But you can solve it differently. This payload limit is only for a single artifact. You could split your artifacts into multiple ones and attach those smaller ones to various tasks.
Alternatively, if your artifact is really large, you could deploy it as a public website hosted on S3 and use artifacts API to only include a link to that - a bit more work though and much less convenient.
👍 1