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
LookerSDKStream methods do not begin a true stream from a Looker instance to a client. The Transport class uses HttpResponse#receive which reads all contents of the response synchronously. This can cause issues for query task endpoints that may return millions of rows e.g. run_sql_query.
I purpose that LookerSDKStream methods take an optional execution block that would allow for true streamed responses. The example in the Ktor docs is nice. I'd like to be able to do something like this:
LookerSDKStream methods do not begin a true stream from a Looker instance to a client. The Transport class uses HttpResponse#receive which reads all contents of the response synchronously. This can cause issues for query task endpoints that may return millions of rows e.g.
run_sql_query
.I purpose that
LookerSDKStream
methods take an optional execution block that would allow for true streamed responses. The example in the Ktor docs is nice. I'd like to be able to do something like this:The text was updated successfully, but these errors were encountered: