I’m encountering the following issue, I have a “Notification” base, which is essentially an “extended” base, which has 3 tables that are synced tables from another base.
The goal of the setup is to run asynchronous automations into a different base, due to the 25 automations limit of Airtable. This way, I can have 25 asynchronous automations in this secondary base.
It’s mostly about sending notifications, emails, slack, etc. Stuff that doesn’t need to happen immediately.
That being said, we noticed the sync doesn’t always work, when changes are made in the main base, they are not synched into the secondary “Notifications” base at a 5mn interval rate.
I believe it’s due to “Automatic syncs will eventually stop on bases that don’t have any recent activity. To keep automatic syncs active make sure that some kind of action is being performed in the base on a regular basis.” - Source
So, my question is, what is an activity? Because we do perform API reads regularly on the secondary base. But, those automations seem to be triggered as soon as one of us opens the base.
Is there additional documentation about how this “freeze” behavior works? Aren’t API reads considered as an action towards a base?