Field
Field features are great for entity enrichments from one-to-one or many-to-one relations. It is commonly used to enrich an entity with simple, non aggregate fields from related assets or entities.
Main use cases
Add a field feature from a data asset with the same level of granularity as the entity (one-to-one relationship)
Add a field feature from a related entity with one-to-one relationship
Add a feature from a parent entity (many-to-one relationship)
Simple field feature
In this example, we define two simple field
features for the entity customer
:
type
type
The feature type.
In case of field features, it should be set to field
.
name
name
Give the field feature a name.
asset
asset
The data asset with the field to be added as feature to our entity.
asset
should be the full path: "db.schema.name".
asset
has to be related to our entity (see related data asset).
join_name
[optional]
join_name
[optional]In case multiple join patterns are defined between an entity and a data asset, join_name
is used to determine which join path to use for a specific feature.
In the example above, we are joining the entity customer
to the geos
asset using the login_geo
join path name. For more information about using multiple join paths between an entity and a data asset, visit the related data assets page.
data_type
[optional]
data_type
[optional]Specify the feature data type.
If no data_type specified, Lynk will assume the data type is string
.
The options for data types are:
string
For any type of string data type
number
For any type of number data type. For example: integer, float, decimal etc..
bool
For boolean data type.
datetime
For any type of time-based data type. For example: date, timestamp, datetime etc..
field
field
The name of the field we would like to get from the related asset, in order to enrich our entity.
field
can be any SQL expression which does not include aggregate functions.
filters
filters
Custom filters to be applied on the data asset. See filters page for in depth information on how to apply filters.
Last updated