Skip to content

Commit

Permalink
Merge pull request #626 from zinggAI/obviousDupes
Browse files Browse the repository at this point in the history
cache obv dupe pairs for performance
  • Loading branch information
sonalgoyal committed Jul 28, 2023
2 parents a8dc931 + db7e734 commit bb3102c
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 bb3102c

Please sign in to comment.