0007-00000202

更新时间:
复制 MD 格式

Problem description

The upload callback process times out. This indicates the callback server did not respond to OSS within the required time limit.

Causes

OSS requires the callback server to complete processing and return a result within 5 seconds. If the server exceeds this limit, OSS determines that a timeout error occurs.

Examples

None.

Solutions

Switch the callback server's processing logic to asynchronous processing so that the server responds to OSS within 5 seconds. Move time-consuming operations—such as database writes or downstream API calls—to a background job or message queue, then return the result to OSS immediately.

References