Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cloud record size limit doc #36521

Merged
merged 3 commits into from
Mar 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,23 @@ products: cloud

Understanding the following limitations will help you more effectively manage Airbyte Cloud.

* Max number of workspaces per user: 3*
* Max number of instances of the same source connector: 10*
* Max number of destinations in a workspace: 20*
* Max number of streams that can be returned by a source in a discover call: 1K
* Max number of streams that can be configured to sync in a single connection: 1K
* Size of a single record: 20MB
- Max number of workspaces per user: 3\*
- Max number of instances of the same source connector: 10\*
- Max number of destinations in a workspace: 20\*
- Max number of streams that can be returned by a source in a discover call: 1K
- Max number of streams that can be configured to sync in a single connection: 1K
- Size of a single record: 20MB\*\*

*Limits on workspaces, sources, and destinations do not apply to customers of [Powered by Airbyte](https://airbyte.com/solutions/powered-by-airbyte). To learn more [contact us](https://airbyte.com/talk-to-sales)!
---

\* Limits on workspaces, sources, and destinations do not apply to customers of
[Powered by Airbyte](https://airbyte.com/solutions/powered-by-airbyte). To learn more
[contact us](https://airbyte.com/talk-to-sales)!

\*\* The effective maximum size of the record may vary based per destination. Some destinations may
fail to sync if a record cannot be stored, but Destinations which support
[typing and deduping](/using-airbyte/core-concepts/typing-deduping) will adjust your record so that
the sync does not fail, given the database/file constraints. For example, the maximum size of a
record in MongoDB is 16MB - records larger than that will need to be modified. At the very least,
primary keys and cursors will be maintained. Any modifications to the record will be stored within
`airbyte_meta.changes` for your review within the destination.
Loading