<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Delta Shared catalog use cost allocation in Databricks Free Edition Help</title>
    <link>https://community.databricks.com/t5/databricks-free-edition-help/delta-shared-catalog-use-cost-allocation/m-p/160531#M834</link>
    <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;Hi. I have the following scenario on AWS Databricks:&lt;/P&gt;&lt;P&gt;I have a catalog that I need to Delta Share to external systems (both other dbks accounts and other non-dbks systems).&lt;BR /&gt;All tables on this catalog are MANAGED type, with all the files sitting in the same S3 bucket.&lt;BR /&gt;This catalog sees really heavy use internally (inside our dbks account), and we expect heavy external use as well once we start sharing it.&lt;/P&gt;&lt;P&gt;My worry:&lt;BR /&gt;I understand that Delta Share doesn't incur extra cost on itself, but the queries from external systems against this catalog will trigger the GetObject action on the underlying bucket. Also, there will be network egress costs for each query.&lt;BR /&gt;How can I attribute the cost for the use of this catalog? I need to know which is internal use, and be able to identify each of the external systems individually so I can chargeback to the respective teams.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 25 Jun 2026 14:00:37 GMT</pubDate>
    <dc:creator>PumpItUpper</dc:creator>
    <dc:date>2026-06-25T14:00:37Z</dc:date>
    <item>
      <title>Delta Shared catalog use cost allocation</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/delta-shared-catalog-use-cost-allocation/m-p/160531#M834</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;Hi. I have the following scenario on AWS Databricks:&lt;/P&gt;&lt;P&gt;I have a catalog that I need to Delta Share to external systems (both other dbks accounts and other non-dbks systems).&lt;BR /&gt;All tables on this catalog are MANAGED type, with all the files sitting in the same S3 bucket.&lt;BR /&gt;This catalog sees really heavy use internally (inside our dbks account), and we expect heavy external use as well once we start sharing it.&lt;/P&gt;&lt;P&gt;My worry:&lt;BR /&gt;I understand that Delta Share doesn't incur extra cost on itself, but the queries from external systems against this catalog will trigger the GetObject action on the underlying bucket. Also, there will be network egress costs for each query.&lt;BR /&gt;How can I attribute the cost for the use of this catalog? I need to know which is internal use, and be able to identify each of the external systems individually so I can chargeback to the respective teams.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 25 Jun 2026 14:00:37 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/delta-shared-catalog-use-cost-allocation/m-p/160531#M834</guid>
      <dc:creator>PumpItUpper</dc:creator>
      <dc:date>2026-06-25T14:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Delta Shared catalog use cost allocation</title>
      <link>https://community.databricks.com/t5/databricks-free-edition-help/delta-shared-catalog-use-cost-allocation/m-p/160621#M835</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As you've rightly said the cost of delta sharing is not in the compute but in the egress costs. I would also ignore the GetObject costs as these again will probably be negligible, around $0.0004 per 1000 get object requests.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;So the egress charges is where you may need a solution. Has this been rolled out yet? and do you have a concept of the scale of the likely egress bill. Again you have a certain amount of egress for free, so it may be worth monitoring to see if it's actually a sizeable amount. Remember you'll only be paying egress if it's to a different cloud/region. if you do need to so this I think you would look to query the system audit table for query numbers by user by table. I would then create a reference table of all the relative table sizes in my catalog and use this to apportion costs.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Query to get to how many times a user has used the delta share&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;SELECT

 event_time,

 event_date,

 action_name,

 user_identity.email                          AS recipient_email,

 source_ip_address,

 request_params['share']                      AS share_name,

 request_params['schema']                     AS schema_name,

 request_params['name']                       AS table_name,

 response.status_code                         AS status_code,

 response.error_message                       AS error_message

FROM system.access.audit

WHERE action_name LIKE 'deltaSharing%'

 -- Uncomment and set a share name to filter to a specific share:

 -- AND request_params['share'] = '&amp;lt;your_share_name&amp;gt;'

 AND event_date &amp;gt;= current_date() - INTERVAL 30 DAYS

ORDER BY event_time DESC&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following is a reference of the actions:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="emma_s_0-1782462000790.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/28311i609CAFDEB4C29BB2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="emma_s_0-1782462000790.png" alt="emma_s_0-1782462000790.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Emma&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2026 08:20:16 GMT</pubDate>
      <guid>https://community.databricks.com/t5/databricks-free-edition-help/delta-shared-catalog-use-cost-allocation/m-p/160621#M835</guid>
      <dc:creator>emma_s</dc:creator>
      <dc:date>2026-06-26T08:20:16Z</dc:date>
    </item>
  </channel>
</rss>

