Here are some basic technical concepts used in Apache Kylin, please check them for your reference. For terminology in domain, please refer to: Terminology
Table - This is definition of hive tables as source of cubes, which must be synced before building cubes.
Data Model - This describes a STAR SCHEMA data model, which defines fact/lookup tables and filter condition.
Cube Descriptor - This describes definition and settings for a cube instance, defining which data model to use, what dimensions and measures to have, how to partition to segments and how to handle auto-merge etc.
Cube Instance - This is instance of cube, built from one cube descriptor, and consist of one or more cube segments according partition settings.
Partition - User can define a DATE/STRING column as partition column on cube descriptor, to separate one cube into several segments with different date periods.
Cube Segment - This is actual carrier of cube data, and maps to a HTable in HBase. One building job creates one new segment for the cube instance. Once data change on specified data period, we can refresh related segments to avoid rebuilding whole cube.
Aggregation Group - Each aggregation group is subset of dimensions, and build cuboid with combinations inside. It aims at pruning for optimization.
Mandotary - This dimension type is used for cuboid pruning, if a dimension is specified as “mandatory”, then those combinations without such dimension are pruned.
Hierarchy - This dimension type is used for cuboid pruning, if dimension A,B,C forms a “hierarchy” relation, then only combinations with A, AB or ABC shall be remained.
Derived - On lookup tables, some dimensions could be generated from its PK, so there‘s specific mapping between them and FK from fact table. So those dimensions are DERIVED and don’t participate in cuboid generation.
Count Distinct(HyperLogLog) - Immediate COUNT DISTINCT is hard to calculate, a approximate algorithm - HyperLogLog is introduced, and keep error rate in a lower level.
Count Distinct(Precise) - Precise COUNT DISTINCT will be pre-calculated basing on RoaringBitmap, currently only int or bigint are supported.
Top N - For example, with this measure type, user can easily get specified numbers of top sellers/buyers etc.