We are using ai_parse_document on ~4k pdf files. We noticed the load is taking quite a bit of time and when we looked into our intermediate table, we are seeing several errors like this:
[
{
"error_message":"pdf rendering timed out after 1800 seconds.",
"page_id":0
}
]
30 minutes is quite a long time for this and larger files than the ones that failed were successfully parsed. My question is: is there a way to catch these timeout errors earlier or change the default timeout setting?
Thanks