# Help needed - My solution with 10K users, consuming 5K updates per day

**URL:** https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564
**Category:** Ask for Help
**Tags:** data-sync, custom-code, actions
**Created:** [April 14, 2024, 9:45am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564 "2024-04-14T09:45:26Z")
**Posts on this page:** 10
**Page:** 1

<div class="post-metadata">

### Author: ![Darren\_Teoh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_teoh/32/61016_2.png) [@Darren\_Teoh](https://community.glideapps.com/u/Darren_Teoh)
#### Post date: [April 14, 2024, 9:45am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564/1 "2024-04-14T09:45:26Z")

</div>

Dear Fellow Glide Experts,

Urgent help needed here. I just launch a pilot program with 10K users in plan (currently 500). I found that my updates are consuming too fast. First day of launching have consumes 5K updates for 500 users (i’d think this is reasonable as users are updating their profile, adding personal details and take pictures.). However, I found that my updates consumed too fast because I am using QuickChart to plot a graph to show the incremental of users in my app. Each user might query this charts multiple times to see the latest usage for FUN, but this will consume my updates. Of course i can turn this features off, but what is the points to use Glide if I cant even perform simple query?

---

<div class="post-metadata">

### Author: ![Eric\_Penn](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/eric_penn/32/73888_2.png) [@Eric\_Penn](https://community.glideapps.com/u/Eric_Penn)
#### Post date: [April 14, 2024, 9:53am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564/2 "2024-04-14T09:53:46Z")

</div>

How are you calling quick chart? Just use template column

---

<div class="post-metadata">

### Author: ![Darren\_Teoh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_teoh/32/61016_2.png) [@Darren\_Teoh](https://community.glideapps.com/u/Darren_Teoh)
#### Post date: [April 14, 2024, 10:10am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564/3 "2024-04-14T10:10:12Z")

</div>

Yes, I am using template col. Also it is more complex which I am using Javascript to query information from other glide table, and then construct a HTML2PDD with Replit so that my chart can be placed into a PDF as final report.

---

<div class="post-metadata">

### Author: ![nathanaelb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/nathanaelb/32/43079_2.png) [@nathanaelb](https://community.glideapps.com/u/nathanaelb)
#### Post date: [April 14, 2024, 10:30am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564/4 "2024-04-14T10:30:30Z")

</div>

> [@Darren\_Teoh](#):
>
> Of course i can turn this features off, but what is the points to use Glide if I cant even perform simple query?

Updates are sometimes a little overlooked. I think it’s worth scoping number of rows, users _and_ updates to see how these will affect pricing but also features of the app.

Let’s take the Maker plan as an example. Unlimited users, 500 monthly updates. That’s roughly 15-20 daily updates across the app for unlimited users. That’s around 1 daily update with 20 users. That’s 0.1 daily updates or 1 update every 10 days if there are 200 users. And so on.

Note that on each plan, additional updates cost $0.02.

In general, as a general rule of thumb, if you want to limit costs related to updates, use Glide Tables and avoid 3rd-party integrations that would otherwise incur syncs.

---

<div class="post-metadata">

### Author: ![Darren\_Teoh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_teoh/32/61016_2.png) [@Darren\_Teoh](https://community.glideapps.com/u/Darren_Teoh)
#### Post date: [April 14, 2024, 10:31am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564/5 "2024-04-14T10:31:38Z")

</div>

I found that this Drop Down selection is consuming update. Whenever user pick different choice, it will write to glide table and count as 1 update, however, i need this value to perform query for my chart. Is there any workaround?

![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/8/7/878b9866a07eceff830c7905dcf9e831252fb3cf.png)

---

<div class="post-metadata">

### Author: ![Darren\_Teoh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_teoh/32/61016_2.png) [@Darren\_Teoh](https://community.glideapps.com/u/Darren_Teoh)
#### Post date: [April 14, 2024, 10:38am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564/6 "2024-04-14T10:38:12Z")

</div>

Thank you, Nathan. I am using Glide Tables. Understand that in pilot launch, it could be consuming more updates, and it could be lesser when in normal run time. However, I need to use integration for image compression, else my glide table might be exceeding storage limit with 2MB image per capture.

I just found out that I have used Form element - Choice a lot for user to query different date from tables. Every change value of this cost 1 update. How can I workaround this?

---

<div class="post-metadata">

### Author: ![nathanaelb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/nathanaelb/32/43079_2.png) [@nathanaelb](https://community.glideapps.com/u/nathanaelb)
#### Post date: [April 14, 2024, 10:41am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564/7 "2024-04-14T10:41:00Z")

</div>

What plan are you using? You will see this in the Glide dashboard just below the name of the team where you app lives in the panel on the left-hand side.

> [@Darren\_Teoh](#):
>
> Whenever user pick different choice, it will write to glide table and count as 1 update

If you do this in a team that you created recently with any of the following plans – Free, Maker, Team, Business – then normally writing to a Glide Table via a choice component should not incur an update.

If you are on a legacy plan, then updates are counted differently:

> #### Updates on Legacy Free Plans
> 
> The following consumes updates on the legacy free plan. Note that data changes consume updates per row changed. Changes to Glide Tables and Big Tables are counted.
> 
> - adding, editing, and deleting data
> - syncing external data
> - actions and computed columns from integrations
> 
> If your team hits the quota of updates allotted to your plan, you can enable Unlimited Usage to keep using updates during that billing period. Depending on which legacy plan you have, updates will be charged to your account in one of two ways:
> 
> 1. $0.01 per update used over your quota
> 2. $10 per 1,000 updates used over your quota
> 
> The unlimited usage modal on the billing and usage pages will indicate which unlimited updates billing structure your team is on.

---

<div class="post-metadata">

### Author: ![Darren\_Teoh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_teoh/32/61016_2.png) [@Darren\_Teoh](https://community.glideapps.com/u/Darren_Teoh)
#### Post date: [April 14, 2024, 11:04am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564/8 "2024-04-14T11:04:54Z")

</div>

Hi, Nathan,

Just found out that I am legacy start plan now… thank you for your help. Will upgrade my plan accordingly. 🙂

---

<div class="post-metadata">

### Author: ![nathanaelb](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/nathanaelb/32/43079_2.png) [@nathanaelb](https://community.glideapps.com/u/nathanaelb)
#### Post date: [April 14, 2024, 11:07am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564/9 "2024-04-14T11:07:49Z")

</div>

Before you do so, have a close look at the difference between the Legacy Starter plan and the Maker-Team-Business plans.

Once you stop your subscription to your Starter plan, you won’t be able to get it back.

You could also try one of the others for a few days or weeks to see what works best for your use case.

> **[Legacy Pricing | Glide](https://www.glideapps.com/pricing/legacy)**

> **[Flexible Pricing Plans That Scale With Your Business | Glide](https://www.glideapps.com/pricing)**
>
> Find a flexible plan that scales with your business needs. Start for free and upgrade for more. Build AI-powered no code apps today.

---

<div class="post-metadata">

### Author: ![system](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/system/32/53398_2.png) [@system](https://community.glideapps.com/u/system)
#### Post date: [April 21, 2024, 11:07am UTC](https://community.glideapps.com/t/help-needed-my-solution-with-10k-users-consuming-5k-updates-per-day/72564/10 "2024-04-21T11:07:52Z")

</div>

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
