Re: Question on bucketing vs sorting
Thank you Peyman for clarifying this for me. Would you say there's a case for using bucketing in this case at all, or should I simply focus completely on the sorting solution? If so, when would you say bucketing is the preferred solution? Patrik Iselind On Thu, Dec 31, 2020 at 4:15 PM P
Question on bucketing vs sorting
e example -- Partition 1 A|B|C = 0|?|? 0|?|? 1|?|? 0|?|? 1|?|? 2|?|? 1|?|? -- Partition 2 A|B|C = 0|?|? 0|?|? 0|?|? 1|?|? 2|?|? ``` Where the A value varies. Patrik Iselind