About 2,110,000 results
Open links in new tab
  1. python - Why does Dask perform so slower while multiprocessing …

    Sep 6, 2019 · 36 dask delayed 10.288054704666138s my cpu has 6 physical cores Question Why does Dask perform so slower while multiprocessing perform so much faster? Am I using …

  2. python - Difference between dask.distributed LocalCluster with …

    Sep 2, 2019 · What is the difference between the following LocalCluster configurations for dask.distributed? Client(n_workers=4, processes=False, threads_per_worker=1) versus …

  3. Unable to use dask-sql due to 'dask_expr.io' module

    Jul 7, 2025 · However, since dask 2025.1.0 release, dask-expr was merged in Dask. It is possible that latest versions of dask or dask-expr package are not well supported by dask-sql.

  4. dask: difference between client.persist and client.compute

    Jan 23, 2017 · More pragmatically, I recommend using persist when your result is large and needs to be spread among many computers and using compute when your result is small and …

  5. Dask does not use all workers and behaves differently with …

    Apr 21, 2023 · Workers: 15 Threads: 15 Memory: 22.02 GiB Dask Version: 2023.2.0 Dask.Distributed Version: 2023.2.0 10 nodes If I use 10 nodes the calculations interrupted …

  6. dask dataframe how to convert column to to_datetime

    Sep 20, 2016 · When using black-box methods like map_partitions, dask.dataframe needs to know the type and names of the output. There are a few ways to do this listed in the docstring …

  7. Dask DataFrame.to_parquet fails on read - Stack Overflow

    Mar 15, 2022 · Use dask.dataframe.read_parquet or other dask I/O implementations, not dask.delayed wrapping pandas I/O operations, whenever possible. Giving dask direct access …

  8. dask - Make Pandas DataFrame apply () use all cores? - Stack …

    As of August 2017, Pandas DataFame.apply() is unfortunately still limited to working with a single core, meaning that a multi-core machine will waste the majority of its compute-time when you …

  9. Converting an DataFrame from pandas to dask - Stack Overflow

    Oct 22, 2020 · I followed this documentation dask.dataframe.from_pandas and there are optional arguments called npartitions and chunksize. So I try write something like this: import …

  10. Strategy for partitioning dask dataframes efficiently

    Jun 20, 2017 · The documentation for Dask talks about repartioning to reduce overhead here. They however seem to indicate you need some knowledge of what your dataframe will look …