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'd like to use AsyncJob to unload data to S3 asynchronously.
Our service may be killed any time and session can be closed.
It seems all queries are canceled when the session is closed
Is there way to run async job and keep it even when session is closed?
Thank you
The text was updated successfully, but these errors were encountered:
github-actionsbot
changed the title
Can I keep async queries running when closing session?
SNOW-830895: Can I keep async queries running when closing session?
Jun 1, 2023
Hi @hota911 -- Yes when the .close() method is called, the jobs will be killed... so don't call the .close() method. The server won't kill the jobs if the client disconnects.
Hi,
I'd like to use AsyncJob to unload data to S3 asynchronously.
Our service may be killed any time and session can be closed.
It seems all queries are canceled when the session is closed
snowpark-java-scala/src/main/scala/com/snowflake/snowpark/Session.scala
Line 1197 in b5679a3
Is there way to run async job and keep it even when session is closed?
Thank you
The text was updated successfully, but these errors were encountered: