Parquet: Repetition Level
This lesson talks about Repetition Levels in Parquet.
We'll cover the following...
Repetition Level
Now, we’ll dive into repetition levels. Repetition levels help Parquet compactly store data in columnar format, even for nested data-structures. We’ll reprint the car schema below for easy reference:
message Car {
required string make;
required int year;
repeated group part {
required string name;
optional int life;
repeated string oem;
}
}
The group part in the above schema can repeat and holds information about ...
Access this course and 1400+ top-rated courses and projects.