Tabs, UI elements and Glide syncs

Since Tabs (component not container) requires a column to write to - does every ‘click’ of the tab header count as a sync / edit row?

Trying to figure out how using UI features (drop down menus that write to column for reporting visibility is another example) drive the cost of the App.

Thanks

Matt

It does if it’s writing to an external data source. Glide tables and Big tables don’t incur update usage for CRUD operations triggered by the user.

4 Likes

So…..just to be clear updates are syncs and sel-col-val and add-row are operations that drive syncs on google tables and air tables but NOT Big Tables and Glide tables (which are basically free of sync surcharges)

.

A sync is any time there is communication between glide and google whether or not there are changes to the data. That communication can be triggered from either glide or google. Note that this count will increase significantly if you have Extra sync mode enabled which triggers every few minutes instead of on app load or when data changes. I doubt people use that Extra option much anymore, unless there is a lot of logic on the Google side that you need to ensure makes it to Glide.

I can’t say for sure if every edit causes a sync. They may or may not be grouped into one update. I’ve never cared enough to analyze and determine what causes those counts to increment.

Yes, Glide tables and Big tables are much cheaper to run.

1 Like