Closed d-v-b closed 8 years ago
@d-v-b great idea! Was just discussing with @jwittenbach that this alone might be responsible for a few of the performance regressions we've been seeing.
@jwittenbach is doing some large-scale testing now to confirm
Closed by #339
great, thanks!
When creating an
images
object using thefromList
method, the underlyingbolt.array
object appears to have_ordered == False
, which results in anyrdd
operation on that array requiring asortByKey
, which isn't so great when therdd
is actually ordered in the first place. The default value for_ordered
should probably beTrue
in this case.