-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.json
More file actions
56 lines (56 loc) · 2.88 KB
/
Copy pathsettings.json
File metadata and controls
56 lines (56 loc) · 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"scraper": {
"max_retries": 5,
"timeout": 30,
"retry_delay_min": 2,
"retry_delay_max": 5
},
"network": {
"proxy_file": "config/proxies.txt"
},
"integrations": {
"feishu": {
"default_bot": "amazon_bot"
}
},
"rate_limits": {
"entry_limits": {
"cli_workflow": { "concurrent_jobs": 5, "cooldown_seconds": 0 },
"feishu_workflow": { "concurrent_jobs": 10, "per_chat_concurrent": 2, "cooldown_seconds": 5 },
"feishu_explore": { "concurrent_jobs": 3, "per_chat_concurrent": 1, "cooldown_seconds": 15 }
},
"tenant_quotas": {
"free": { "daily_requests": 50 },
"pro": { "daily_requests": 500 },
"enterprise": { "daily_requests": 999999 }
},
"source_limits": {
"xiyouzhaoci": { "requests_per_minute": 60, "burst": 5 },
"sellersprite": { "requests_per_minute": 40, "burst": 3, "login_cooldown_seconds": 60 },
"amazon_scraper": { "requests_per_minute": 12, "burst": 3 },
"amazon_ads": {
"default": { "requests_per_second": 2.0, "burst": 10 },
"createReport": { "requests_per_second": 0.5, "burst": 1 },
"getReport": { "requests_per_second": 0.0167, "burst": 5 },
"listCampaigns": { "requests_per_second": 5.0, "burst": 10 },
"listAdGroups": { "requests_per_second": 5.0, "burst": 10 },
"listKeywords": { "requests_per_second": 5.0, "burst": 10 },
"listSponsoredProducts": { "requests_per_second": 5.0, "burst": 10 },
"getBidRecommendations": { "requests_per_second": 2.0, "burst": 5 },
"getChangeHistory": { "requests_per_second": 2.0, "burst": 5 }
},
"tiktok": { "requests_per_minute": 12, "burst": 3 },
"sp_api": {
"default": { "requests_per_second": 0.5, "burst": 3 },
"createReport": { "requests_per_second": 0.0167, "burst": 1 },
"getReport": { "requests_per_second": 0.0222, "burst": 10 },
"getReportDocument": { "requests_per_second": 0.0222, "burst": 5 },
"getInventorySummaries": { "requests_per_second": 2.0, "burst": 2 },
"getOrderMetrics": { "requests_per_second": 0.5, "burst": 5 },
"getShipments": { "requests_per_second": 1.0, "burst": 5 },
"getCatalogItem": { "requests_per_second": 2.0, "burst": 10 },
"listInboundPlans": { "requests_per_second": 2.0, "burst": 5 }
}
}
}
}