-
Notifications
You must be signed in to change notification settings - Fork 1
joinTR
The purpose of this transformer is to make a join (equivalent of a SQL join) between 2 data sources. It returns only one dataset in output which is the result of this join.
The specific configuration (as a Datasource) in the configuration file section parameters includes the following parameters:
- join: Join type (can be one of this value : inner, left, right or outer)
- left: Left dataset id and left dataset columns keys (in an sorted array)
- right: Right dataset id and right dataset columns keys (in an sorted array)
Data sources configuration
- Inputs : 2 inputs
- Outputs : 1 output
Configuration example:
"transformers": [ {
"id": "T1",
"classname": "pipelite.transformers.joinTR",
"inputs" : [ "E1", "E2" ],
"outputs" : [ "L1" ],
"parameters" : {
"join" : "inner",
"left" : { "dsid" : "E1",
"keys" : ["col2"] },
"right" : { "dsid" : "E2",
"keys" : ["tcol1"] }
}
} ],
... ] ...
π Home
π Main concepts
π» Installation
π¨ Configuration
π Running
Supported Data Sources
π CSV File
π XES File
π Excel File
π€ ODBC
π’ SAP
π’ ABBYY Timeline
Supported Transformations
π Pass Through
πΆ Dataset Profiling
π Concat 2 Data sources
π SubString
π Column Transformation
π Join data sources
π Lookup
π€ Rename Column Name
Extending pipelite
β
how to
β
Adding new Data sources
β
Adding new Transformers
β
Adding new Pipelines