Skip to content

Commit

Permalink
cache obv dupe pairs for performance
Browse files Browse the repository at this point in the history
  • Loading branch information
vikasgupta78 committed Jul 28, 2023
1 parent dce9feb commit db7e734
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ protected ZFrame<D,R,C> getObvDupePairs(ZFrame<D,R,C> blocked) {
return null;
}

ZFrame<D, R, C> obvDupePairs = blocked.joinOnCol(prefixedColsDF, obvDupeDFFilter);
ZFrame<D, R, C> obvDupePairs = blocked.joinOnCol(prefixedColsDF, obvDupeDFFilter).cache();
obvDupePairs = obvDupePairs.filter(obvDupePairs.gt(ColName.ID_COL));
obvDupePairs = massageAllEquals(obvDupePairs);

Expand Down

0 comments on commit db7e734

Please sign in to comment.