Skip to content

[POC][DNM] Experimental to/from_worker_storage API#1299

Draft
rjzamora wants to merge 66 commits intorapidsai:branch-24.02from
rjzamora:shuffle-parquet
Draft

[POC][DNM] Experimental to/from_worker_storage API#1299
rjzamora wants to merge 66 commits intorapidsai:branch-24.02from
rjzamora:shuffle-parquet

Conversation

@rjzamora
Copy link
Copy Markdown
Member

I ran into a few road blocks while exploring "p2p" shuffling with RAPIDS, and ultimately decided it was worthwhile to explore a dedicated API for persisting/loading a DataFrame collection to/from distributed local storage.

Note on Shuffling

In addition to adding a new to_worker_storage/from_worker_storage API, this PR also adds an explicit-comms mechanism to shuffle a DataFrame collection directly to distributed/local disk. This shuffle_to_parquet function shuffles and writes the data to storage in rounds, so that you can process significantly larger-than-memory data. The performance of this new function is not good compared to in-memory shuffling, but it is certainly much faster than "p2p".

This API can not be embedded within a lazy dask.dataframe query like the "tasks" or "p2p" shuffle can. However, this API can be used to explicitly compose workflows that are known to require large shuffle operations (e.g. NeMo Data Curator). E.g.

from dask_cuda.explicit_comms.dataframe.utils import to_worker_storage, from_worker_storage

ddf = ...

local_path = "/raid/persisted_ddf"
to_worker_storage(ddf, local_path, shuffle_on="id")
shuffled_ddf = from_worker_storage(local_path)

TODO:

  • Significant cleanup needed (this is very rough)
  • Better design description/discussion needed
  • Better API description/discussion needed
  • Significant testing needed

raydouglass and others added 30 commits October 17, 2019 15:03
* Add ucx-py dependency to CI
[REVIEW] Backport TLS files missing fix
raydouglass and others added 27 commits June 7, 2022 11:44
@copy-pr-bot
Copy link
Copy Markdown

copy-pr-bot Bot commented Dec 13, 2023

This pull request requires additional validation before any workflows can run on NVIDIA's runners.

Pull request vetters can view their responsibilities here.

Contributors can view more details about this message here.

@github-actions github-actions Bot added the python python code needed label Dec 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

python python code needed

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants