I have an app which is connected on a Firebase Realtime Database. This app deal with a lot of data so i would like to cleanup the old data every 24h. So, what is the best solution to achieve this ? I heard of Google Cloud Scheduler or App Engine Cron
ps : I already tried Firebase Cloud Function Triggers (onCreate, onWrite), but there is too much data in the database, and the trigger quickly reach the max query limit.
Thanks