Ingest records with dynamic schemas
Storing records with dynamic schemas in a table with a fixed schema.
Some domains (e.g., logging) generate records where each record can have a different set of keys, whereas Pinot tables have a relatively static schema. For records with varying keys, it's impractical to store each field in its own table column. However, most (if not all) fields may be important, so fields should not be dropped unnecessarily.
The SchemaConformingTransformer is a RecordTransformer that can transform records with dynamic schemas such that they can be ingested in a table with a static schema. The transformer primarily takes record fields that don't exist in the schema and stores them in a type of catchall field.
For example, consider this record:
Let's say the table's schema contains the following fields:
timestamp
hostname
level
message
tags.platform
tags.service
indexableExtras
unindexableExtras
Without this transformer, the HOSTNAME
field and the entire tags
field would be dropped when storing the record in the table. However, with this transformer, the record would be transformed into the following:
Notice that the transformer does the following:
Flattens nested fields which exist in the schema, like
tags.platform
Drops some fields like
HOSTNAME
, whereHOSTNAME
must be listed as a field in the config optionfieldPathsToDrop
Moves fields that don't exist in the schema and have the suffix
_noIndex
into theunindexableExtras
fieldMoves any remaining fields that don't exist in the schema into the
indexableExtras
field
The unindexableExtras
field allows the transformer to separate fields that don't need indexing (because they are only retrieved, not searched) from those that do.
SchemaConformingTransformer Configuration
To use the transformer, add the schemaConformingTransformerConfig
option in the ingestionConfig
section of your table configuration, as shown in the following example.
For example:
Available configuration options are listed in SchemaConformingTransformerConfig.
Last updated