You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An edge case after #319 and PR #320.
If I call tordd() after repartition() but before any other command that forces a task, I will get an unsorted rdd. @jwittenbach, @freeman-lab What do you guys think about this? we could
Add a warning in tordd if the sorted property in bolt is False
Force a sort in tordd
Any other suggestions?
The text was updated successfully, but these errors were encountered:
I think I'd rather put a sort() method in bolt, as you say, it's really only relevant to the distributed case, which bolt is there to handle.
We might also want to call it order() or at least make it all consistent, e.g. order() and _ordered or sort() and _sorted. And instead of isordered() you can just add an @property that returns the value, check out how we do shape in bolt (see the example here)
But we can definitely add the warning mentioned in (3) to thunder now if you want to put in a PR for that.
An edge case after #319 and PR #320.
If I call
tordd()
afterrepartition()
but before any other command that forces a task, I will get an unsorted rdd.@jwittenbach, @freeman-lab What do you guys think about this? we could
tordd
if thesorted
property in bolt isFalse
tordd
Any other suggestions?
The text was updated successfully, but these errors were encountered: