如何捕获Google Video Intelligence DeadlineExceeded异常?

问题描述 投票:0回答:1

我正在迭代一大堆视频,并通过Google Video Intelligence运行每个视频。它适用于大多数视频,但如果视频返回异常,代码(Python 3.x)应跳过它而不停止迭代(添加了一些代码以将发生错误的视频的名称写入CSV文件稍后检查)。

我使用了try / except例程,但即使我没有调用特定的异常,也应该捕获任何异常,它会破坏迭代。

这是代码:

from google.cloud import videointelligence
from google.api_core.exceptions import *

(...)

operation = video_client.annotate_video(input_content=input_content, 
                                        features=features, 
                                        video_context=context,
                                        retry=None)
try:
    result = operation.result(timeout=600)
except:
    result = False
    pass

这是一个例外:

  File "/home/bernardo/.local/lib/python3.6/site-packages/google/api_core/grpc_helpers.py", line 57, in error_remapped_callable
    return callable_(*args, **kwargs)
  File "/home/bernardo/.local/lib/python3.6/site-packages/grpc/_channel.py", line 549, in __call__
    return _end_unary_response_blocking(state, call, False, None)
  File "/home/bernardo/.local/lib/python3.6/site-packages/grpc/_channel.py", line 466, in _end_unary_response_blocking
    raise _Rendezvous(state, None, None, deadline)
grpc._channel._Rendezvous: <_Rendezvous of RPC that terminated with:
    status = StatusCode.DEADLINE_EXCEEDED
    details = "Deadline Exceeded"
    debug_error_string = "{"created":"@1556638076.747183038","description":"Error received from peer","file":"src/core/lib/surface/call.cc","file_line":1039,"grpc_message":"Deadline Exceeded","grpc_status":4}"
>

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "annotate_videos.py", line 153, in <module>
    main()
  File "annotate_videos.py", line 149, in main
    process_videos(videos)
  File "annotate_videos.py", line 127, in process_videos
    result = annotate_videos_alternative(fallback_url)
  File "annotate_videos.py", line 59, in annotate_videos_alternative
    retry=None)
  File "/home/bernardo/.local/lib/python3.6/site-packages/google/cloud/videointelligence_v1/gapic/video_intelligence_service_client.py", line 282, in annotate_video
    request, retry=retry, timeout=timeout, metadata=metadata
  File "/home/bernardo/.local/lib/python3.6/site-packages/google/api_core/gapic_v1/method.py", line 143, in __call__
    return wrapped_func(*args, **kwargs)
  File "/home/bernardo/.local/lib/python3.6/site-packages/google/api_core/timeout.py", line 214, in func_with_timeout
    return func(*args, **kwargs)
  File "/home/bernardo/.local/lib/python3.6/site-packages/google/api_core/grpc_helpers.py", line 59, in error_remapped_callable
    six.raise_from(exceptions.from_grpc_error(exc), exc)
  File "<string>", line 3, in raise_from
google.api_core.exceptions.DeadlineExceeded: 504 Deadline Exceeded
python-3.x google-cloud-platform
1个回答
0
投票

查看堆栈跟踪,似乎异常来自该行

operation = video_client.annotate_video(input_content=input_content, 
                                        features=features, 
                                        video_context=context,
                                        retry=None)

尝试移动你的try语句一行。

© www.soinside.com 2019 - 2024. All rights reserved.