- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2026 05:55 AM
Hi everyone,
I am currently building a cost-tracking dashboard, but I’ve run into a major reconciliation issue between the Azure Portal and Databricks.
The Numbers (Current Month):
Azure Cost Management Portal: $2,041.79 (Total cost as per specific adb component).
Databricks System Tables (Query): $3,365.959 (Calculated using system.billing.usage joined with system.billing.list_prices).
The Methodology: I am joining system.billing.usage with system.billing.list_prices on sku_name and matching the usage_start_time within the price_start_time and price_end_time windows. I am using the pricing.effective_list.default value for the calculation.
The Problem: My Databricks system table calculation cost is HIGHER than what Azure is actually billing us.
Negotiated Discounts: Does system.billing.list_prices reflect Enterprise Agreement (EA) or MACC discounts? Or is it strictly the public MSRP?
Infrastructure Costs: Typically, Azure should be higher because it includes VMs/Storage. Since my Databricks calculation is higher, does this confirm that the DBU "List Price" in the system table is ignoring our contract's negotiated unit rate?
Reconciliation: How are you guys handling this? Are you applying a manual "Discount Multiplier" in SQL, or is there a way to pull the "Actual Billed Price" directly into Unity Catalog?
Any insights from folks who have reconciled these two sources would be greatly appreciated!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2026 09:49 AM
Hi,
Yes you're correct in your conclusion the Databricks tables just use list price and therefore don't apply any negotiated discounts. They also won't include the underying VM cost when using classic compute. Most of our customers just handle the discount by applying a fixed percentage discount in the SQL. If you haven't tried it, it's pretty easy to use Genie Code to build a version of the dashboard for you with the discount applied. Some people do engineer pipelines that brings in their cloud billing data into databricks, but in my opinion for most cases this is overkill.
Thanks,
Emma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2026 04:55 AM
does this include the DBU cost as well for the workspaces in azure cost management ?