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 many columns does Delta Engine collect stats on for a Delta Table

aladda
Honored Contributor II
Honored Contributor II
 
1 ACCEPTED SOLUTION

Accepted Solutions

aladda
Honored Contributor II
Honored Contributor II

by default a delta table has stats collected on the first 32 columns. This setting can be configured using the following.

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

However there's a time trade-off to having a large number of columns set for stats collection. You typically want to collect stats on column that are used in filter, where clauses joins and on which you tend to performance aggregations.

View solution in original post

1 REPLY 1

aladda
Honored Contributor II
Honored Contributor II

by default a delta table has stats collected on the first 32 columns. This setting can be configured using the following.

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

However there's a time trade-off to having a large number of columns set for stats collection. You typically want to collect stats on column that are used in filter, where clauses joins and on which you tend to performance aggregations.

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you wonโ€™t want to miss the chance to attend and share knowledge.

If there isnโ€™t a group near you, start one and help create a community that brings people together.

Request a New Group