You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot find an option to configure the header size on the client side. (In fact I don't know if this is the problem caused by the limit on the client or server side)
using legacy_prepared_statements=False (which does not solve the issue for me)
EXECUTE IMMEDIATE which does not work with DESCRIBE OUTPUT as the latter requires a prepared named statement.
Question
What is the current recommended solution for this problem (ideally on the client side). Particularly, is there a way to execute DESCRIBE OUTPUT immediately without going through the PREPARE step?
Thanks!
The text was updated successfully, but these errors were encountered:
Problem Statement
For moderately complex PREPARE queries I am seeing
trino.exceptions.Http502Error: error 502: bad gateway
:This is how the query is run as part of the ibis project:
Searching for similar issues on trino and trino-client side it turns out that it's a known problem caused by the header size limit of 4KB
I cannot find an option to configure the header size on the client side. (In fact I don't know if this is the problem caused by the limit on the client or server side)
legacy_prepared_statements=False
(which does not solve the issue for me)EXECUTE IMMEDIATE
which does not work withDESCRIBE OUTPUT
as the latter requires a prepared named statement.Question
What is the current recommended solution for this problem (ideally on the client side). Particularly, is there a way to execute DESCRIBE OUTPUT immediately without going through the PREPARE step?
Thanks!
The text was updated successfully, but these errors were encountered: