gpt4 book ai didi

python - 获取详细的 Impyla 错误消息

转载 作者:太空宇宙 更新时间:2023-11-04 05:32:15 25 4
gpt4 key购买 nike

当我使用 Python/Impyla 在 Impala 中执行 SQL 语句时,我只是收到一个异常,其中包含一条通用错误消息,如“”Operation is in ERROR_STATE”。如何获得有关所发生错误的更多详细信息?

最佳答案

游标对象有一个_last_operation 字段,可用于获取更详细的信息。例如

        try:
cur.execute(sql)
except Exception, e:
op = cur._last_operation
abort(400,"ERROR: %s"%op.get_log())

输出可能是:

Complete (0 out of 0)
Error while flushing Kudu session
Already present: key already present

关于python - 获取详细的 Impyla 错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36760236/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com