Skip to content

Commit 7799bb9

Browse files
authored
Merge pull request #109248 from djpmsft/docUpdates
join typo
2 parents d2f997e + 5fc0856 commit 7799bb9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/data-factory/data-flow-join.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Inner join only outputs rows that have matching values in both tables.
2727
Left outer join returns all rows from the left stream and matched records from the right stream. If a row from the left stream has no match, the output columns from the right stream are set to NULL. The output will be the rows returned by an inner join plus the unmatched rows from the left stream.
2828

2929
> [!NOTE]
30-
> The Spark engine used by Data Flows will occasionally possible cartesian products in your join conditions. When that is the case, you can switch to a custom cross join and manually enter your join condition. This may result in slower performance in your data flows as the execution engine may need to calculate all rows from both sides of the relationship and then filter rows.
30+
> The Spark engine used by data flows will occasionally fail due to possible cartesian products in your join conditions. If this occurs, you can switch to a custom cross join and manually enter your join condition. This may result in slower performance in your data flows as the execution engine may need to calculate all rows from both sides of the relationship and then filter rows.
3131
3232
### Right Outer
3333

@@ -101,11 +101,11 @@ The data flow script for this transformation is in the snippet below:
101101
TripData, TripFare
102102
join(
103103
hack_license == { hack_license}
104-
&& TripData@medallion == TripFare@medallion
105-
&& vendor_id == { vendor_id}
106-
&& pickup_datetime == { pickup_datetime},
107-
joinType:'inner',
108-
broadcast: 'left'
104+
&& TripData@medallion == TripFare@medallion
105+
&& vendor_id == { vendor_id}
106+
&& pickup_datetime == { pickup_datetime},
107+
joinType:'inner',
108+
broadcast: 'left'
109109
)~> JoinMatchedData
110110
```
111111

@@ -123,7 +123,7 @@ The data flow script for this transformation is in the snippet below:
123123
LeftStream, RightStream
124124
join(
125125
leftstreamcolumn > rightstreamcolumn,
126-
joinType:'cross',
126+
joinType:'cross',
127127
broadcast: 'none'
128128
)~> JoiningColumns
129129
```

0 commit comments

Comments
 (0)