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

cugraph.dask.common.input_utils.get_distributed_data Drops Column Names #3420

Closed
Tracked by #3256
alexbarghi-nv opened this issue Apr 5, 2023 · 3 comments
Closed
Tracked by #3256
Assignees
Labels
bug Something isn't working

Comments

@alexbarghi-nv
Copy link
Member

While investigating a bug involving concatenation of cudf series objects in cugraph.dask.uniform_neighbor_sample, another bug was found where after calling get_distributed_data, the column names of the returned dask future were removed. For some reason, calling merge instead of concat before get_distributed_data did not produce this bug.

s1 = ...
s2 = ...
df = dask_cudf.concat([s1, s2], axis=1)

ddf = get_distributed_data(ddf)
wait(ddf)
ddf = ddf.worker_to_parts

print(ddf[0][0].result().columns)

Expected:

["s1", "s2"]

Actual:

Int64Index([0, 1])
@alexbarghi-nv alexbarghi-nv self-assigned this Apr 5, 2023
@alexbarghi-nv alexbarghi-nv added the bug Something isn't working label Apr 5, 2023
@alexbarghi-nv alexbarghi-nv added this to the 23.06 milestone Apr 5, 2023
@rlratzel
Copy link
Contributor

This should be combined with another story for removing get_distributed_data.

@BradReesWork BradReesWork removed this from the 23.06 milestone Jul 24, 2023
@rlratzel rlratzel changed the title [BUG] cugraph.dask.common.input_utils.get_distributed_data Drops Column Names cugraph.dask.common.input_utils.get_distributed_data Drops Column Names Aug 8, 2023
@rlratzel
Copy link
Contributor

rlratzel commented Aug 8, 2023

@alexbarghi-nv mentioned we're removing cugraph.dask.common.input_utils.get_distributed_data, which should resolve this issue.

@alexbarghi-nv
Copy link
Member Author

Issue no longer relevant

@alexbarghi-nv alexbarghi-nv closed this as not planned Won't fix, can't repro, duplicate, stale Nov 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants