I'm seeing some confusing metrics and would love clarification on how backend bulk operations are billed.
What happened: My scheduled action performed 13,723 records upserts ÷ 1,000 per chunk = ~14 bulk calls operations on a model today at 4:30 PM (development env.).
What I'm seeing: for today 24.02. OPS dashboard: - Database writes: 13,752 write queries, 20.6 MB written - Outbound bandwidth: Only 100 KB , 155 Route requests
My confusion: According to the billing docs, there are separate line items for: - DB write compute(GB written to Postgres) - Frontend edge bandwidth(GB served from edge)
Questions: 1. Do backend bulk operations (like
api.myModel.bulkUpsert()
api.myModel.bulkUpsert()
) count toward "edge requests/bandwidth" as platform credits? 2. Why do I see Edge bandwidth: 0.46 GB but only 100 KB of bandwidth?
I expected bulk upserts to mainly hit DB write compute and CPU time, but the high "edge requests" number is confusing me. Just trying to understand where this 0.46 GB is coming from! Environment: Development (synplex-inventory-planner)