cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

How to calculate the individual file count, file size and number of rows on a Delta table?

shan_chandra
Databricks Employee
Databricks Employee

There are instances where we need to know the individual file size or file count present in the delta table rather than the average size. we can use the below query to determine that. 

%sql
select count(*) as rows, file_path, file_size from (select * , _metadata.file_path, _metadata.file_size from  <table_name or delta.`file_path`>) group by file_path, file_size

 

0 REPLIES 0

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local communityโ€”sign up today to get started!

Sign Up Now