Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Images object not sorted after repartition #319

Closed
boazmohar opened this issue May 25, 2016 · 0 comments · Fixed by #320
Closed

Images object not sorted after repartition #319

boazmohar opened this issue May 25, 2016 · 0 comments · Fixed by #320

Comments

@boazmohar
Copy link
Contributor

After repartition(), calling first() gives the wrong record. Probably the RDD need to be sorted.

data = td.images.fromarray(np.ones(shape=( 100, 2, 2)),engine=sc, npartitions=10)
def func(kv):
    k, v = kv
    v = k*v
    return v
data = data.map(func, with_keys=True)
data.first()
out: array([[ 1.,  1.],
       [ 1.,  1.]])
data = data.repartition(25)
data.first()
out: array([[ 20.,  20.],
       [ 20.,  20.]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant