header-logo
Getting started with WixBuild your website and business with Wix. Try using our AI tools to create your website, customize templates, or hire professionals to build or enhance your online presence.
Creating a websiteRead how to use the Wix Editor and manage content on your site. Discover how to protect your visitors' privacy and make your site accessible.
Account & billingReview your account settings, manage your subscriptions and plans and understand your invoices.
Using the Wix mobile appsUse our mobile apps to run your business efficiently on the go and set up a dedicated app for your site members to stay in touch.
Connecting a domainFollow our step-by step guides to learn how to purchase, connect or transfer a domain for your site, and find out how to keep your site’s data secure.
Managing your businessGet tools to grow your business and web presence. Find the right tools for your specific needs, set up online payments and keep track of your site's analytics.
Promoting your siteLearn to make your site more visible promoting it on search engines, sending emails and running paid ads. Improve your online presence with practical tips.
Studio, Partners & EnterpriseGet the most out of your Studio or Enterprise account with advanced features that'll help you work more efficiently.
Need more help?Find solutions for site performance and technical issues, learn about issues we’re working to fix or contact us for help.
placeholder-preview-image
Wix LearnImprove your skills with our courses and tutorials.
Wix BlogGet tips for web design, marketing and more.
SEO Learning HubLearn to increase organic site traffic from search engines.
Website developmentBuild a custom site using our full-stack platform.
Hire a ProfessionalGet matched with a specialist to help you reach your goals.
placeholder-preview-image
In this article
  • Quota Overview
  • Requests Per Minute
  • What can I do?
  • Individual Request Timeout
  • What can I do?
  • Collection Storage
  • Other Storage Quotas
  • What can I do?
  • Contact Support

Velo: About Data Quotas

In this article
  • Quota Overview
  • Requests Per Minute
  • What can I do?
  • Individual Request Timeout
  • What can I do?
  • Collection Storage
  • Other Storage Quotas
  • What can I do?
  • Contact Support
NoteThis article deals with data quotas. There is a separate article for backend request quotas.
Wix places quotas on data requests made by your site. These quotas affect the processing time and volume of requests that sites can make, as well as the overall collection storage a site can have. Data quotas apply to anything making data requests on your site, including the Content Management System (CMS), Datasets, Wix Forms, and Velo’s Wix Data API. This article focuses on how these quotas work when using Velo.
If data requests from your Velo code are not behaving as expected, your site may be exceeding one of the quotas. Some of these quotas can be increased. Contact support for more information.

Quota Overview

NameLimitCan it be increased?
Requests Per MinuteRead: 3000 / minute

Write: 1500 / minute
Yes
Individual Request Timeout5 secondsNo
Collection Storage10 GBYes

Requests Per Minute

Wix limits the number of read and write requests you can make from your site per minute. The maximum number for read requests is 3000 and the maximum for write requests is 1500. We can increase these quotas in certain cases. To find out more, contact support.
The following API functions count as 1 request towards the read quota:
The following API functions count as 1 request towards the write quota:
NoteEach use of include in a query counts towards the request quota. For example, the following query counts as 3 read requests:
1  wixData.query(‘Movies’)
2    .include(‘director’)
3    .include(‘studio’)
4    .find()
For each request that exceeds the quota, the request fails and the following error appears in your site log:
WDE0014: Requests per minute quota exceeded.

What can I do?

You can take the following steps to try and reduce the number of data requests in your code:
  • Use the ‘bulk’ functions If you are inserting or updating multiple items, use the bulkInsert and bulkUpdate functions instead of writing each item individually. These functions only count as 1 request toward the quota.
  • Only make requests when you need the data
    Don’t make requests for data you don’t use. For example, if you store extra store product data in a separate collection, only query this collection when you need the data.
  • Contact support
    Contact support to ask for more resources.

Individual Request Timeout

Each data request you make from your site can run for up to 5 seconds. After this, the request times out and the following error message appears in your site log:
WDE0028: Operation time limit exceeded.

What can I do?

You can take the following steps to try and reduce the processing time of individual requests:
  • Process data in chunks Timeouts can happen when you process too much data with one request. Breaking your request into smaller pieces means that each individual one will complete before the time limit.
  • Only request data you need Avoid fetching more items from your collection than you need at one time. Also avoid including reference items in your queries if you don’t need their data. Both of these increase processing time.
  • Use indexes Querying with an index is faster than querying items directly. All _id and _createdDate fields are indexed by default.
  • Use an external database The request timeout quota doesn't apply to external databases. If none of the other options works for you, store your data in an external database and integrate it with your site. You can still access this data using Velo and the Wix Data API.

Collection Storage

The overall amount of collection storage for each Wix site is 10 GB. This quota only includes data stored in collections. It does not include media or other files stored on your site, which have separate limits. Documents and multimedia content referenced from a collection are also not included. We can increase the storage quota in certain cases. To find out more, contact support.
If you try to add data to a collection once you have reached the 10 GB quota, the data is not added and the following error message appears in your site log:
WDE0091: Database quota exceeded. Delete some data and try again.
NoteIf your site exceeds the quota and you delete data to free up space, it may take up to 24 hours before you can add new data to your collections.

Other Storage Quotas

  • Each Wix site can have a maximum of 1000 collections.
  • The maximum size for a single collection item is 512 KB. If you try to add an item larger than this to a collection, the following error message appears in your site log:
    WDE0009: Document is too large.
  • There are also some limits that are specific to certain field types.

What can I do?

You can take the following steps to try and reduce the amount of storage your site uses:
  • Delete data you don’t need Make sure your collections only contain data that you need for your site.
  • Use an external database The collection storage quota doesn't apply to external databases. If none of the other options works for you, store your data in an external database and integrate it with your site. You can still access this data using Velo and the Wix Data API.
  • Contact support Contact support to ask for more resources.

Contact Support

If your site is exceeding one of the quotas, you can  contact Wix Customer Care and ask for more resources.

Helpmate

Hello

Need a bit more guidance?
Unlock personalized helpLog in to get the most out of Helpmate.