You can use Zorder with indexes for data skipping. Data skipping information is collected automatically when you write to delta table.
Delta lake uses this information to provide faster query.
You dont need to configure anything for data skipping as this feature is activated when applicable. However, the effectiveness depends on the layout of the data. By default Delta Lake collects statistics on the first 32 columns (which can be changed using the property the delta.dataSkippingNumIndexedCols Adding more columns would add more overhead as you write files.
Collecting statistics on long strings is an expensive operation. We should avoid that by not collecting statistics on long strings. You can either configure the table property delta.dataSkippingNumIndexedCols to avoid such columns or move such columns containing to a column greater than delta.dataSkippingNumIndexedCols