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: 

What are the recommendations around collecting stats on long strings in a Delta Table

aladda
Honored Contributor II
Honored Contributor II

It is best to avoid collecting stats on long strings. You typically want to collect stats on column that are used in filter, where clauses, joins and on which you tend to performance aggregations - typically numerical values

You can avoid collecting stats on long strings and improve table processing time by either moving string columns outside of the first 32 columns of a delta table on which stats are collected by default

  • alter table change column col after col32

Alternatively you can set stats collection columns to a smaller number using the dataSkippingNumIndexedCols setting

  • set spark.databricks.delta.properties.defaults.dataSkippingNumIndexedCols = 3

0 REPLIES 0
Join 100K+ Data Experts: Register Now & Grow with Us!

Excited to expand your horizons with us? Click here to Register and begin your journey to success!

Already a member? Login and join your local regional user group! If there isn’t one near you, fill out this form and we’ll create one for you to join!