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
cmd = Command.find(hive_command_response.id)
while not Command.is_done(cmd.status):
time.sleep(Qubole.poll_interval)
cmd = Command.find(hive_command_response.id)
print('current jobs status is: ' + cmd.status)
then once it is finished, I want to get the results:
res = hive_command_response.get_results()
except that variable is empty, but if i do:
res = hive_command_response.get_log()
I see the correct log, and if I log in to the web app I can see my results.
why am I not seeing them with the python call?
The text was updated successfully, but these errors were encountered:
Hey, so I launched a query:
then I wait for the query to finish:
then once it is finished, I want to get the results:
except that variable is empty, but if i do:
I see the correct log, and if I log in to the web app I can see my results.
why am I not seeing them with the python call?
The text was updated successfully, but these errors were encountered: