Last active
February 20, 2021 09:52
-
-
Save mGalarnyk/31d2df3d44e2d06cc9712f18084bdf86 to your computer and use it in GitHub Desktop.
Taken from Stephanie Wang's gist: https://gist.github.com/stephanie-wang/7400fd3b50bef0c8ce2d5b29f58c2530#file-pyspark_on_ray-py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ray | |
from ray.util.dask import ray_dask_get | |
import dask | |
import dask.dataframe as dd | |
import pandas as pd | |
import numpy as np | |
dask.config.set(scheduler=ray_dask_get) # Sets Ray as the default backend. | |
ray.init() | |
df = pd.DataFrame(np.random.randint(0, 100, size=(2**10, 2**8))) | |
df = dd.from_pandas(df, npartitions=10) | |
print(df.head(10)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment