The Driver record resulting out of the Match Transforms is observed to be picked up randomly. Is there any way to specify the record that should be used as Driver and rest of records in that group be identified as Passenger or Unique record?
Ex: The output is expected to have record coming from source S1 as Driver 'D match_status' record and records from any other sources should be 'P'. Something like below
Table1 :
Address | Source | Match_Status | Match_Score |
---|---|---|---|
abc address | S1 | D | |
abc address | S2 | P | 100 |
bcd address | S1 | D | |
bc address | S3 | P | 98 |
But Match_status is assigned D to a random record within a group. Something like below
Table2:
Address | Source | Match_Status | Match_Score |
---|---|---|---|
abc address | S1 | P | 100 |
abc address | S2 | D | |
bcd address | S1 | D | |
bc address | S3 | P | 98 |
How to achieve the Match transform output as in Table1? Any thoughts?