Join
Operators in the Join category
Home > Data Cleaning > Join
Operators
| Operator | Description |
|---|
| Cartesian Product | Append fields together to get the cartesian product of two inputs |
| Hash Join | Join two inputs |
| Interval Join | Join two inputs with left table join key in the range of [right table join key, right table join key + constant value] |
Total: 3 operators
1 - Cartesian Product
Append fields together to get the cartesian product of two inputs
Home > Data Cleaning > Join
Output Ports
2 - Hash Join
Join two inputs
Home > Data Cleaning > Join
| Property | Requirement | Type | Default | Description |
|---|
| Left Input Attribute | ✓ | String | - | Attribute to be joined on the Left Input |
| Right Input Attribute | ✓ | String | - | Attribute to be joined on the Right Input |
| Join Type | ✓ | inner, left outer, right outer, full outer | inner | Select the join type to execute |
Output Ports
3 - Interval Join
Join two inputs with left table join key in the range of [right table join key, right table join key + constant value]
Home > Data Cleaning > Join
| Property | Requirement | Type | Default | Description |
|---|
| Interval Constant | ✓ | Long | 10 | Left attri in (right, right + constant) |
| Include Left Bound | ✓ | Boolean | true | Include condition left attri = right attri |
| Include Right Bound | ✓ | Boolean | true | Include condition left attri = right attri |
| Time interval type | | TimeIntervalType | day | Year, Month, Day, Hour, Minute or Second |
| Left Input attr | ✓ | String (integer, long, double, timestamp) | - | Choose one attribute in the left table |
| Right Input attr | ✓ | String | - | Choose one attribute in the right table |
Output Ports