Atlas使用速率限制来控制指定时间范围内发送到 V2 API端点的请求的速率,以防止过载并确保公平使用。Atlas使用令牌桶算法来限制其处理的请求数量。API响应标头可实时了解速率限制配额、当前使用情况和重置时间。
Overview
每个Atlas终结点都与定义其速率限制的终结点设立(股票相同速率限制的终结点集合)和范围(资源范围组织、项目、用户或IP解决)相关联。终结点的限制各不相同,因为只有同一终结点设立和范围内的终结点使用相同的令牌桶进行速率限制。因此, Atlas不会对Atlas组织或项目发出的所有API请求应用统一的API限制。
令牌桶算法
令牌桶算法的工作原理如下:
Atlas会填充存储桶,直至达到该存储桶的最大令牌数 (
capacity)。这反映了您可以发送的最大请求数。Atlas仅在令牌可用时允许请求。对终结点的每个请求都会消耗一个令牌。
Atlas会在特定时间间隔 (
refillDurationSeconds) 以固定速率 (refillRate) 向存储桶添加令牌,但不超过最大令牌数量 (capacity)。只要存储桶中有令牌,您就可以发送突发请求。如果存储桶中的令牌数量有限,则允许的突发限制为存储桶中的可用令牌数量。
当存储桶为空时, Atlas 管理 API会为任何其他请求返回 429(请求过多)HTTP状态代码。
{ "detail": "Rate limit exceeded for api/atlas/v2/orgs. Please retry after 55 seconds. Request capacity: 10. Refill rate: 5 per 60 seconds.", "error": 429, "errorCode": "RATE_LIMITED_TOKEN_BUCKET", "parameters": [ "api/atlas/v2/orgs", 55, 10, 5, 60 ], "reason": "Too Many Requests" }
要学习;了解详情,请参阅响应标头
响应标头
Atlas 管理 API 响应可能包含以下标头:
| 此端点允许的最大请求数(令牌桶容量)。 |
| 用户可以向此终结点发出的剩余请求数(令牌桶中剩余的令牌)。 |
| 重试请求之前等待的最短时间(以秒为单位)。仅当超过速率限制时才会返回此标头。 |
注意
Atlas可能并不总是返回响应标头。您必须妥善处理缺失的响应标头,而不是依赖它们的存在。
重试策略
当达到速率限制时, Atlas 管理 API会返回 429(请求过多)HTTP状态代码。我们建议:
在重试之前,至少等待
Retry-After标头指定的时间。如果重试失败,则等待时间明显更长。
例子
在第一次重试之前,请等待十秒钟。在第二次重试之前,请等待 20 秒。在第三次重试之前,等待 40 秒,依此类推。
即使您等待的时间与 Retry-After 标头指定的时间相同,您的速率仍可能受到限制。在这种情况下,我们建议您继续使用指数延迟(抖动)进行回退。为防止请求因并行重试操作而失败,我们还建议在计算的等待时间中添加随机延迟(抖动)。
例子
假设多个客户端对同一个Atlas项目使用同一终结点。客户端同时受到速率限制,等待的时间与 Retry-After 标头指定的时间相同。如果其中一个客户端成功提交请求并在其他客户端重试其请求之前再次耗尽令牌桶,则其他客户端仍将受到速率限制。
您还可以使用以下内容来计算存储桶何时可以再次达到满容量(假设在此期间没有其他请求消耗令牌):
(capacity / refill rate) * refill interval
如果需要更高的速率限制,请联系支持。
查看速率限制
您可以通过向 rateLimits资源发送 GET请求来查看所有终结点集和作用域的速率限制。
curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-03-12+json" \ --header "Content-Type: application/json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/rateLimits"
要查看适用于您的组织、项目、用户或IP地址的速率限制,请使用可选查询参数之一向 rateLimits 终结点发送 GET 请求,参数为 groupId、orgId、userId 或 ipAddress。
curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-03-12+json" \ --header "Content-Type: application/json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/rateLimits?groupId={groupId}"
要学习更多信息,请参阅 Atlas 管理 API 规范。
默认速率限制
重要
速率限制不是API合同的一部分,可能会发生变化,恕不另行通知。
AWS 集群 DNS
范围:群组
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/awsCustomDNS修补
/api/atlas/v2/groups/{groupId}/awsCustomDNS
accessLogs
范围:群组
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}获取
/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}
活动提要
范围:群组
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/activityFeed
范围:组织
容量:500
Refill: 250/60s
终结点:
获取
/api/atlas/v2/orgs/{orgId}/activityFeed
警报配置
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}获取
/api/atlas/v2/groups/{groupId}/alertConfigs获取
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}修补
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}发布
/api/atlas/v2/groups/{groupId}/alertConfigsPUT
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}
范围:USER
容量:300
Refill: 100/60s
终结点:
获取
/api/atlas/v2/alertConfigs/matchers/fieldNames
警报
范围:群组
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts获取
/api/atlas/v2/groups/{groupId}/alerts获取
/api/atlas/v2/groups/{groupId}/alerts/{alertId}获取
/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs修补
/api/atlas/v2/groups/{groupId}/alerts/{alertId}
Atlas Search部署
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment
Atlas Search 索引
范围:群组
容量:500
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes
审核
范围:群组
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/auditLog修补
/api/atlas/v2/groups/{groupId}/auditLog
云备份
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}删除
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints/{endpointId}删除
/api/atlas/v2/groups/{groupId}/backupCompliancePolicy删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}获取
/api/atlas/v2/groups/{groupId}/backup/exportBuckets获取
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}获取
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints获取
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints/{endpointId}获取
/api/atlas/v2/groups/{groupId}/backupCompliancePolicy获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}修补
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}发布
/api/atlas/v2/groups/{groupId}/backup/exportBuckets发布
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobsPUT
/api/atlas/v2/groups/{groupId}/backupCompliancePolicy
云迁移服务
范围:群组
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}获取
/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}发布
/api/atlas/v2/groups/{groupId}/liveMigrations发布
/api/atlas/v2/groups/{groupId}/liveMigrations/validatePUT
/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover
范围:组织
容量:500
Refill: 250/60s
终结点:
删除
/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens获取
/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects发布
/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens
云提供商访问
范围:群组
容量:2000
Refill: 1000/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}获取
/api/atlas/v2/groups/{groupId}/cloudProviderAccess获取
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}修补
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}发布
/api/atlas/v2/groups/{groupId}/cloudProviderAccess
集群日志监控
范围:群组
容量:10000
Refill: 5000/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz
集群中断模拟
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation
集群
范围:群组
容量:10000
Refill: 5000/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}获取
/api/atlas/v2/groups/{groupId}/clusters获取
/api/atlas/v2/groups/{groupId}/clusters/provider/regions获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/autoScalingConfiguration获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status获取
/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs发布
/api/atlas/v2/groups/{groupId}/clusters发布
/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade发布
/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:grantMongoDBEmployeeAccess发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:revokeMongoDBEmployeeAccess发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion发布
/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}
范围:USER
容量:300
Refill: 100/60s
终结点:
获取
/api/atlas/v2/clusters
集合级别指标
范围:群组
容量:300
Refill: 100/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements获取
/api/atlas/v2/groups/{groupId}/collStats/metrics获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpinPUT
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned
自定义数据库角色
范围:群组
容量:2000
Refill: 1000/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}获取
/api/atlas/v2/groups/{groupId}/customDBRoles/roles获取
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}修补
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}发布
/api/atlas/v2/groups/{groupId}/customDBRoles/roles
Data Federation
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}删除
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}删除
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}获取
/api/atlas/v2/groups/{groupId}/dataFederation获取
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}获取
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits获取
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}获取
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz获取
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds获取
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}修补
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}修补
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}发布
/api/atlas/v2/groups/{groupId}/dataFederation发布
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds
数据库用户
范围:群组
容量:10000
Refill: 5000/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}获取
/api/atlas/v2/groups/{groupId}/databaseUsers获取
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}修补
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}发布
/api/atlas/v2/groups/{groupId}/databaseUsers
使用客户密钥管理进行静态加密
范围:群组
容量:2000
Refill: 1000/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}获取
/api/atlas/v2/groups/{groupId}/encryptionAtRest获取
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints获取
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}修补
/api/atlas/v2/groups/{groupId}/encryptionAtRest发布
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints
事件(Events)
范围:群组
容量:300
Refill: 100/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/events获取
/api/atlas/v2/groups/{groupId}/events/{eventId}
范围:组织
容量:500
Refill: 250/60s
终结点:
获取
/api/atlas/v2/orgs/{orgId}/events获取
/api/atlas/v2/orgs/{orgId}/events/{eventId}
范围:USER
容量:300
Refill: 100/60s
终结点:
获取
/api/atlas/v2/eventTypes
联合身份验证
范围:组织
容量:500
Refill: 250/60s
终结点:
删除
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}删除
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}获取
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}获取
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings获取
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}获取
/api/atlas/v2/orgs/{orgId}/federationSettings修补
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}发布
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappingsPUT
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}
范围:USER
容量:300
Refill: 100/60s
终结点:
删除
/api/atlas/v2/federationSettings/{federationSettingsId}删除
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}删除
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks获取
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs获取
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders获取
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}获取
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml修补
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}发布
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders
弹性集群
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/flexClusters/{name}获取
/api/atlas/v2/groups/{groupId}/flexClusters获取
/api/atlas/v2/groups/{groupId}/flexClusters/{name}修补
/api/atlas/v2/groups/{groupId}/flexClusters/{name}发布
/api/atlas/v2/groups/{groupId}/flexClusters发布
/api/atlas/v2/groups/{groupId}/flexClusters:tenantUpgrade
Flex 恢复作业
范围:群组
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs获取
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs/{restoreJobId}发布
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs
FlexAtlas 备份快照
范围:群组
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshots获取
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshots/{snapshotId}发布
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/download
Atlas 全球集群
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces
IP 地址
范围:群组
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/ipAddresses
发票
范围:组织
容量:500
Refill: 100/60s
终结点:
获取
/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}获取
/api/atlas/v2/orgs/{orgId}/invoices获取
/api/atlas/v2/orgs/{orgId}/invoices/pending获取
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}获取
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv获取
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems:search发布
/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage
范围:USER
容量:300
Refill: 100/60s
终结点:
获取
/api/atlas/v2/skus获取
/api/atlas/v2/skus/{skuId}
LDAP 配置
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping获取
/api/atlas/v2/groups/{groupId}/userSecurity获取
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}修补
/api/atlas/v2/groups/{groupId}/userSecurity发布
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify
传统备份
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}
维护窗口
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/maintenanceWindow获取
/api/atlas/v2/groups/{groupId}/maintenanceWindow修补
/api/atlas/v2/groups/{groupId}/maintenanceWindow发布
/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer发布
/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer
MongoDB Cloud 用户
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/users/{userId}获取
/api/atlas/v2/groups/{groupId}/users获取
/api/atlas/v2/groups/{groupId}/users/{userId}发布
/api/atlas/v2/groups/{groupId}/users发布
/api/atlas/v2/groups/{groupId}/users/{userId}:addRole发布
/api/atlas/v2/groups/{groupId}/users/{userId}:removeRolePUT
/api/atlas/v2/groups/{groupId}/users/{userId}/roles
范围:组织
容量:500
Refill: 250/60s
终结点:
删除
/api/atlas/v2/orgs/{orgId}/users/{userId}获取
/api/atlas/v2/orgs/{orgId}/users获取
/api/atlas/v2/orgs/{orgId}/users/{userId}修补
/api/atlas/v2/orgs/{orgId}/users/{userId}发布
/api/atlas/v2/orgs/{orgId}/users发布
/api/atlas/v2/orgs/{orgId}/users/{userId}:addRole发布
/api/atlas/v2/orgs/{orgId}/users/{userId}:removeRolePUT
/api/atlas/v2/orgs/{orgId}/users/{userId}/roles
范围:USER
容量:2500
Refill: 2000/60s
终结点:
获取
/api/atlas/v2/users/byName/{userName}获取
/api/atlas/v2/users/{userId}发布
/api/atlas/v2/users
监控和日志
范围:群组
容量:300
Refill: 100/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics获取
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements获取
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements获取
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements获取
/api/atlas/v2/groups/{groupId}/processes获取
/api/atlas/v2/groups/{groupId}/processes/{processId}获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/databases获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/disks获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements
网络对等
范围:群组
容量:2000
Refill: 1000/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/containers/{containerId}删除
/api/atlas/v2/groups/{groupId}/peers/{peerId}获取
/api/atlas/v2/groups/{groupId}/containers获取
/api/atlas/v2/groups/{groupId}/containers/all获取
/api/atlas/v2/groups/{groupId}/containers/{containerId}获取
/api/atlas/v2/groups/{groupId}/peers获取
/api/atlas/v2/groups/{groupId}/peers/{peerId}获取
/api/atlas/v2/groups/{groupId}/privateIpMode修补
/api/atlas/v2/groups/{groupId}/containers/{containerId}修补
/api/atlas/v2/groups/{groupId}/peers/{peerId}修补
/api/atlas/v2/groups/{groupId}/privateIpMode发布
/api/atlas/v2/groups/{groupId}/containers发布
/api/atlas/v2/groups/{groupId}/peers
Online Archive
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives
组织设置
范围:组织
容量:10
Refill: 5/60s
终结点:
获取
/api/atlas/v2/orgs/{orgId}/settings修补
/api/atlas/v2/orgs/{orgId}/settings
组织
范围:组织
容量:500
Refill: 250/60s
终结点:
删除
/api/atlas/v2/orgs/{orgId}删除
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}获取
/api/atlas/v2/orgs/{orgId}获取
/api/atlas/v2/orgs/{orgId}/groups获取
/api/atlas/v2/orgs/{orgId}/invites获取
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}修补
/api/atlas/v2/orgs/{orgId}修补
/api/atlas/v2/orgs/{orgId}/invites修补
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}发布
/api/atlas/v2/orgs/{orgId}/invites
范围:USER
容量:300
Refill: 100/60s
终结点:
获取
/api/atlas/v2/orgs发布
/api/atlas/v2/orgs
性能顾问
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/managedSlowMs/disable获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/dropIndexSuggestions获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/schemaAdvice获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/suggestedIndexes获取
/api/atlas/v2/groups/{groupId}/managedSlowMs获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs获取
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes发布
/api/atlas/v2/groups/{groupId}/managedSlowMs/enable
私有端点服务
范围:群组
容量:4000
Refill: 2000/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}删除
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}获取
/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode获取
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService获取
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}获取
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}修补
/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService/{endpointServiceId}修补
/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode发布
/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService发布
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint
编程 API 密钥。
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}获取
/api/atlas/v2/groups/{groupId}/apiKeys修补
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}发布
/api/atlas/v2/groups/{groupId}/apiKeys发布
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}
范围:组织
容量:500
Refill: 250/60s
终结点:
删除
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}删除
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}获取
/api/atlas/v2/orgs/{orgId}/apiKeys获取
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}获取
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList获取
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}修补
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}发布
/api/atlas/v2/orgs/{orgId}/apiKeys发布
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList
项目 IP 访问列表
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}获取
/api/atlas/v2/groups/{groupId}/accessList获取
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}获取
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status发布
/api/atlas/v2/groups/{groupId}/accessList
项目
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}删除
/api/atlas/v2/groups/{groupId}/invites/{invitationId}删除
/api/atlas/v2/groups/{groupId}/limits/{limitName}获取
/api/atlas/v2/groups/{groupId}获取
/api/atlas/v2/groups/{groupId}/invites获取
/api/atlas/v2/groups/{groupId}/invites/{invitationId}获取
/api/atlas/v2/groups/{groupId}/limits获取
/api/atlas/v2/groups/{groupId}/limits/{limitName}获取
/api/atlas/v2/groups/{groupId}/mongoDBVersions获取
/api/atlas/v2/groups/{groupId}/settings修补
/api/atlas/v2/groups/{groupId}修补
/api/atlas/v2/groups/{groupId}/invites修补
/api/atlas/v2/groups/{groupId}/invites/{invitationId}修补
/api/atlas/v2/groups/{groupId}/limits/{limitName}修补
/api/atlas/v2/groups/{groupId}/settings发布
/api/atlas/v2/groups/{groupId}/access发布
/api/atlas/v2/groups/{groupId}/invites发布
/api/atlas/v2/groups/{groupId}:migrate
范围:USER
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups获取
/api/atlas/v2/groups/byName/{groupName}发布
/api/atlas/v2/groups
基于推送的日志导出
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}删除
/api/atlas/v2/groups/{groupId}/pushBasedLogExport获取
/api/atlas/v2/groups/{groupId}/logIntegrations获取
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}获取
/api/atlas/v2/groups/{groupId}/pushBasedLogExport修补
/api/atlas/v2/groups/{groupId}/pushBasedLogExport发布
/api/atlas/v2/groups/{groupId}/logIntegrations发布
/api/atlas/v2/groups/{groupId}/pushBasedLogExportPUT
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}
查询结构见解
范围:群组
容量:1200
Refill: 500/60s
终结点:
获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapeInsights/summaries获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapeInsights/{queryShapeHash}/details获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes获取
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes/{queryShapeHash}修补
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes/{queryShapeHash}
速率限制检查
范围:USER
容量:300
Refill: 100/60s
终结点:
获取
/api/atlas/v2/rateLimits获取
/api/atlas/v2/rateLimits/{endpointSetId}
资源策略
范围:组织
容量:500
Refill: 250/60s
终结点:
删除
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}获取
/api/atlas/v2/orgs/{orgId}/nonCompliantResources获取
/api/atlas/v2/orgs/{orgId}/resourcePolicies获取
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}修补
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}发布
/api/atlas/v2/orgs/{orgId}/resourcePolicies发布
/api/atlas/v2/orgs/{orgId}/resourcePolicies:validate
根
范围: IP
容量:400
Refill: 100/60s
终结点:
获取
/api/atlas/v2/unauth/controlPlaneIPAddresses
范围:USER
容量:300
Refill: 100/60s
终结点:
获取
/api/atlas/v2
服务账户
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}删除
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList/{ipAddress}删除
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secrets/{secretId}获取
/api/atlas/v2/groups/{groupId}/serviceAccounts获取
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}获取
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList修补
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}发布
/api/atlas/v2/groups/{groupId}/serviceAccounts发布
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList发布
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secrets发布
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}:invite
范围:组织
容量:500
Refill: 250/60s
终结点:
删除
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}删除
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList/{ipAddress}删除
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets/{secretId}获取
/api/atlas/v2/orgs/{orgId}/serviceAccounts获取
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}获取
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList获取
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/groups修补
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}发布
/api/atlas/v2/orgs/{orgId}/serviceAccounts发布
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList发布
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets
流
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId}删除
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}删除
/api/atlas/v2/groups/{groupId}/streams/{tenantName}删除
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}删除
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}获取
/api/atlas/v2/groups/{groupId}/streams获取
/api/atlas/v2/groups/{groupId}/streams/accountDetails获取
/api/atlas/v2/groups/{groupId}/streams/activeVpcPeeringConnections获取
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections获取
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId}获取
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections获取
/api/atlas/v2/groups/{groupId}/streams/{tenantName}获取
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs获取
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections获取
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}获取
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}获取
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors获取
/api/atlas/v2/groups/{groupId}/streams/{tenantName}:downloadOperationalLogs修补
/api/atlas/v2/groups/{groupId}/streams/{tenantName}修补
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}修补
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}发布
/api/atlas/v2/groups/{groupId}/streams发布
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections发布
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:accept发布
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:reject发布
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections发布
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor发布
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start发布
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startWith发布
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop发布
/api/atlas/v2/groups/{groupId}/streams:withSampleConnections
团队
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/teams/{teamId}获取
/api/atlas/v2/groups/{groupId}/teams获取
/api/atlas/v2/groups/{groupId}/teams/{teamId}修补
/api/atlas/v2/groups/{groupId}/teams/{teamId}发布
/api/atlas/v2/groups/{groupId}/teams
范围:组织
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/orgs/{orgId}/teams/{teamId}删除
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}获取
/api/atlas/v2/orgs/{orgId}/teams获取
/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}获取
/api/atlas/v2/orgs/{orgId}/teams/{teamId}获取
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users修补
/api/atlas/v2/orgs/{orgId}/teams/{teamId}发布
/api/atlas/v2/orgs/{orgId}/teams发布
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users发布
/api/atlas/v2/orgs/{orgId}/teams/{teamId}:addUser发布
/api/atlas/v2/orgs/{orgId}/teams/{teamId}:removeUser
第三方集成
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}获取
/api/atlas/v2/groups/{groupId}/integrations获取
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}发布
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index发布
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}PUT
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}
X509 身份验证
范围:群组
容量:1200
Refill: 500/60s
终结点:
删除
/api/atlas/v2/groups/{groupId}/userSecurity/customerX509获取
/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs发布
/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs
注意
如果您联系支持以获取更高的速率限制,则您的限制可能与上表中描述的不同。