Skip to content

Commit a1d86a9

Browse files
jordanhunt22Convex, Inc.
authored andcommitted
Update read/write limits in docs (#36484)
GitOrigin-RevId: 229c594eed4123b6ba31a1c51863301098ceb0d4
1 parent 38dfce1 commit a1d86a9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

npm-packages/docs/docs/production/state/limits.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ Applied per document and to any nested `Object` unless stated otherwise.
6262
| Function calls | 1,000,000/month | 25,000,000/month included<br/>$2 per additional 1,000,000 | Explicit client calls, scheduled executions, subscription updates, and file accesses count as function calls. |
6363
| Action execution | 20 GiB-hours | 250 GiB-hours included<br/>$0.30/GiB-hour additional | Convex runtime: 64 MiB RAM.<br/>Node.js runtime: 512 MiB RAM. |
6464
| Code size | 32 MiB | 32 MiB | Per deployment. |
65-
| Function argument size | 8 MiB | 8 MiB | |
66-
| Function return value size | 8 MiB | 8 MiB | |
65+
| Function argument size | 16 MiB | 16 MiB | |
66+
| Function return value size | 16 MiB | 16 MiB | |
6767
| HTTP action response size | 20 MiB | 20 MiB | There is no specific limit on request size |
6868
| Length of a console.log line | 4 KiB | 4 KiB | |
6969
| [Log streaming](/docs/production/integrations/log-streams/log-streams.mdx) limits | 4096 logs, flushed every 10 seconds | 4096 logs, flushed every 10 seconds | How many logs can be buffered when streaming |
@@ -88,7 +88,7 @@ Number of functions you can run at a time for each function type.
8888
| Query/mutation execution time | 1 second | Limit applies only to user code and doesn’t include database operations. |
8989
| Action execution time | 10&nbsp;minutes | |
9090
| Scheduled functions | 1000 | The number of other functions a single mutation can schedule. |
91-
| Total size of scheduled functions' arguments | 8 MiB | Applies only to mutations. |
91+
| Total size of scheduled functions' arguments | 16 MiB | Applies only to mutations. |
9292
| Concurrent IO operations per function | 1000 | The number of IO operations a single function can perform, e.g., a database operation, or a fetch request in an action. |
9393
| Outstanding scheduled functions | 1,000,000 | |
9494

@@ -98,11 +98,11 @@ These limits apply to each `query` or `mutation` function.
9898

9999
| | | Notes |
100100
| -------------------------- | ------ | --------------------------------------------------------- |
101-
| Data read | 8 MiB | Data not returned due to a `filter` counts as scanned |
102-
| Data written | 8 MiB |
103-
| Documents scanned | 16,384 | Documents not returned due to a `filter` count as scanned |
104-
| Documents written | 8,192 |
105-
| Function return value size | 8 MiB |
101+
| Data read | 16 MiB | Data not returned due to a `filter` counts as scanned |
102+
| Data written | 16 MiB |
103+
| Documents scanned | 32,000 | Documents not returned due to a `filter` count as scanned |
104+
| Documents written | 16,000 |
105+
| Function return value size | 16 MiB |
106106

107107
## Environment Variables
108108

0 commit comments

Comments
 (0)