I have a database of logs which I use to track events in my app.
I have a very long list of them ~400 000 elements.
I want to create a workflow / datatrigger that will delete all records older than 1 month. (delete a list where elements created date is older than current date minus 1 month)

What will be the price if I want to delete so many items? Will I be charged for every single thing I delete if it will be a delete a list workflow?

What if I delete them from editor panel - will there be a price for that as well? As I may also resolve to this solution as I create way less records now.

What is the best approach costwise / performance wise?

You’ll be charged 0.5 WU per Thing deleted.

Delete a list of Things WU cost =

0.5 WU per thing in the list (deletion)
0.3 WU for search to find the things to delete
0.015 WU per thing in the list (search results returned)
0.6 WU for server-side workflow action

1 Like

Yes, cost to delete each item, but I don’t there is any other costs

Thanks for those amazing responses! bubble community is amazing!