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
Currently we only support the JSON Lines output format and (IIRC) load the whole response into memory to serialize it before forwarding it to the client.
It would be nice to be able to:
return the response as CSV (e.g. selected with the Accept header, possibly using the GET API in order to cache the CSV file on the CDN)
probably setting the Content-Disposition header so that it's a standard download in the browser
support gzip compression?
stream the query result into the CSV writer instead of buffering it in memory
The text was updated successfully, but these errors were encountered:
Currently we only support the JSON Lines output format and (IIRC) load the whole response into memory to serialize it before forwarding it to the client.
It would be nice to be able to:
The text was updated successfully, but these errors were encountered: