111 lines
5.7 KiB
Markdown
111 lines
5.7 KiB
Markdown
---
|
||
title: InfluxDB Cloud limits and adjustable quotas
|
||
list_title: Limits and adjustable quotas
|
||
description: >
|
||
InfluxDB Cloud has adjustable service quotas and global (non-adjustable) system limits.
|
||
weight: 110
|
||
menu:
|
||
influxdb_cloud:
|
||
parent: Account management
|
||
name: Adjustable quotas and limits
|
||
related:
|
||
- /flux/v0.x/stdlib/experimental/usage/from/
|
||
- /flux/v0.x/stdlib/experimental/usage/limits/
|
||
- /influxdb/cloud/write-data/best-practices/resolve-high-cardinality/
|
||
alt_links:
|
||
cloud-serverless: /influxdb3/cloud-serverless/admin/billing/limits/
|
||
---
|
||
|
||
InfluxDB Cloud applies (non-adjustable) global system limits and adjustable service quotas on a per organization basis.
|
||
|
||
{{% warn %}}
|
||
All __rates__ (data-in (writes), queries (reads), and deletes) are accrued within a fixed five-minute window.
|
||
Once a rate is exceeded, an error response is returned until the current five-minute window resets.
|
||
{{% /warn %}}
|
||
|
||
Review adjustable service quotas and global limits to plan for your bandwidth needs:
|
||
|
||
- [Adjustable service quotas](#adjustable-service-quotas)
|
||
- [Global limits](#global-limits)
|
||
- [UI error messages](#ui-error-messages)
|
||
- [API error responses](#api-error-responses)
|
||
|
||
## Adjustable service quotas
|
||
|
||
To reduce the chance of unexpected charges and protect the service for all users, InfluxDB Cloud has adjustable service quotas applied per account.
|
||
|
||
### Free Plan
|
||
|
||
- **Data-in**: Rate of 5 MB per 5 minutes (average of 17 kb/s)
|
||
- Uncompressed bytes of normalized [line protocol](/influxdb/cloud/reference/syntax/line-protocol/)
|
||
- **Read**: Rate of 300 MB per 5 minutes (average of 1000 kb/s)
|
||
- Bytes in HTTP in response payload
|
||
- **Cardinality**: 10k series (see [how to measure and resolve high cardinality](/influxdb/cloud/write-data/best-practices/resolve-high-cardinality/))
|
||
- **Available resources**:
|
||
- 2 buckets (excluding `_monitoring` and `_tasks` buckets)
|
||
- 5 dashboards
|
||
- 5 tasks
|
||
- **Alerts**:
|
||
- 2 checks
|
||
- 2 notification rules
|
||
- Unlimited Slack notification endpoints
|
||
- **Storage**: 30 days of data retention (see [retention period](/influxdb/cloud/reference/glossary/#retention-period))
|
||
|
||
{{% note %}}
|
||
To write historical data older than 30 days, retain data for more than 30 days, increase rate limits, or create additional organizations, upgrade to the Cloud [Usage-Based Plan](/influxdb/cloud/account-management/pricing-plans/#usage-based-plan).
|
||
{{% /note %}}
|
||
|
||
### Usage-Based Plan
|
||
|
||
- **Data-in**: Rate of 300 MB per 5 minutes
|
||
- Uncompressed bytes of normalized [line protocol](/influxdb/cloud/reference/syntax/line-protocol/)
|
||
- **Read**: Rate of 3 GB data per 5 minutes
|
||
- Bytes in HTTP in response payload
|
||
- **Cardinality**: 1M series (see [how to measure and resolve high cardinality](/influxdb/cloud/write-data/best-practices/resolve-high-cardinality/))
|
||
- **Unlimited resources**
|
||
- dashboards
|
||
- tasks
|
||
- buckets
|
||
- users
|
||
- **Alerts**
|
||
- Unlimited checks
|
||
- Unlimited notification rules
|
||
- Unlimited notification endpoints for [all endpoints](/flux/v0/tags/notification-endpoints/)
|
||
- **Storage**: Set your retention period to unlimited or up to 1 year by [updating a bucket’s retention period in the InfluxDB UI](/influxdb/cloud/admin/buckets/update-bucket/#update-a-buckets-retention-period-in-the-influxdb-ui), or [set a custom retention period](/influxdb/cloud/admin/buckets/update-bucket/#update-a-buckets-retention-period) using the [`influx` CLI](/influxdb/cloud/reference/cli/influx/).
|
||
|
||
## Global limits
|
||
|
||
InfluxDB Cloud applies global (non-adjustable) system limits to all accounts, which protects the InfluxDB Cloud infrastructure for all users. As the service continues to evolve, we'll continue to review these global limits and adjust them as appropriate.
|
||
|
||
Limits include:
|
||
|
||
- **Write request limits**:
|
||
- 50 MB maximum HTTP request batch size (compressed or uncompressed--defined in the `Content-Encoding` header)
|
||
- 250 MB maximum HTTP request batch size after decompression
|
||
- **Query processing time**: 90 seconds
|
||
- **Total query time**: 1500 seconds of _total_ query time every 30 seconds
|
||
- **Task processing time**: 150 seconds
|
||
- **Total task time**: 1500 seconds of _total_ task time every 30 seconds
|
||
- **Delete request limit**: Rate of 300 every 5 minutes
|
||
|
||
{{% note %}}
|
||
**Tip:**
|
||
Combine delete predicate expressions (if possible) into a single request. InfluxDB limits delete requests by number of requests (not points per request).
|
||
{{% /note %}}
|
||
|
||
## UI error messages
|
||
|
||
The {{< product-name >}} UI displays a notification message when service quotas or limits are exceeded. The error messages correspond with the relevant [API error responses](#api-error-responses).
|
||
|
||
Errors can also be viewed in the [Usage page](/influxdb/cloud/account-management/data-usage/) under **Limit Events**, e.g. `event_type_limited_query`, `event_type_limited_write`,`event_type_limited_cardinality`, or `event_type_limited_delete_rate`.
|
||
|
||
## API error responses
|
||
|
||
The following API error responses occur when your plan's service quotas are exceeded.
|
||
|
||
| HTTP response code | Error message | Description |
|
||
| :----------------------------- | :----------------------------------------- | :----------- |
|
||
| `HTTP 413 "Request Too Large"` | cannot read data: points in batch is too large | If a **write** request exceeds the maximum [global limit](#global-limits) |
|
||
| `HTTP 429 "Too Many Requests"` | Retry-After: xxx (seconds to wait before retrying the request) | If a **read** or **write** request exceeds your plan's [adjustable service quotas](#adjustable-service-quotas) or if a **delete** request exceeds the maximum [global limit](#global-limits) |
|
||
| `HTTP 429 "Too Many Requests"` | Series cardinality exceeds your plan's service quota | If **series cardinality** exceeds your plan's [adjustable service quotas](#adjustable-service-quotas) |
|