โ11-05-2021 11:45 AM
Situation: we have one partion per date, and it just so happens that each partition ends up (after optimize) as *a single* 128mb file. We partition on date, and zorder on userid, and our query is something like "find max value of column A where userid=X and date>=somedate".
Does zordering help in any way in this scenario? It is clear that we will have to read every partition after $somedate, but does the zordering on userid somehow help spark when reading inside each of those partitions (remember that each partition is a single file), or do we have to read *and scan* all 128mb of each of the remaining partitions even when we zoptimize?
โ11-07-2021 10:52 PM
Z-Order will make sure that in case you need to read multiple files, these files are co-located.
For a single file this does not matter as a single file is always local to itself.
If you are certain that your spark program will only read a single file, you do not need z-ordering.
But it might be the case that your delta lake table is also read by another program, not using the partition filter. then it will become interesting, or if you have multiple files per partition.
Z-Ordering and partitioning are complementary techniques.
Z-Ordering is especially interesting for columns on which you cannot/don't want to partition (high cardinality)
โ11-07-2021 12:34 PM
@Kaniz Fatmaโ I have read the documentation. The question is not about general guidelines regarding partitions and zordering, it is very specifically about the (potential) benefit of zordering when reading single files. To rephrase: is the only advantage of zordering that it allows the skipping of whole files, or is there also some benefit to it after a file has been selected to be read. Does it allow faster searching inside the selected files, or maybe reading only chunks of the files?
โ11-07-2021 10:43 AM
ZORDER BY
Colocate column information in the same set of files. Co-locality is used by Delta Lake data-skipping algorithms to dramatically reduce the amount of data that needs to be read. You can specify multiple columns for ZORDER BY as a comma-separated list. However, the effectiveness of the locality drops with each additional column.
it is from https://docs.databricks.com/spark/latest/spark-sql/language-manual/delta-optimize.html
So for delta files once partition disappear it is really important to have Z-order as it will handle effectively your query, so you need:
OPTIMIZE data ZORDER BY (userid, date)
โ11-07-2021 12:33 PM
@Hubert Dudekโ i don't know what you mean by "when the partition dissappear". I clearly asked this question in a confusing way, but hopefully my answer to @Kaniz Fatmaโ helped clarify.
โ11-07-2021 10:52 PM
Z-Order will make sure that in case you need to read multiple files, these files are co-located.
For a single file this does not matter as a single file is always local to itself.
If you are certain that your spark program will only read a single file, you do not need z-ordering.
But it might be the case that your delta lake table is also read by another program, not using the partition filter. then it will become interesting, or if you have multiple files per partition.
Z-Ordering and partitioning are complementary techniques.
Z-Ordering is especially interesting for columns on which you cannot/don't want to partition (high cardinality)
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