Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

dask-optimizationDASK 优化

Agent Skill

dask-optimization 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

303

周安装

13

GitHub Stars

9

下载量

106
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dask-optimization(DASK 优化)
来源仓库:https://github.com/tondevrel/scientific-agent-skills
仓库路径:skills/dask-optimization
安装命令:
npx skills add https://github.com/tondevrel/scientific-agent-skills --skill dask-optimization
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tondevrel/scientific-agent-skills --skill dask-optimization

简介

dask-optimization 针对分布式计算场景优化 Dask 作业性能和资源利用率。

  • 重点解决通信开销和网络 I/O 瓶颈,避免“KilledWorker”或内存溢出错误。
  • 当 Dask Dashboard 显示大量 red(通信)或 gray(空闲)时间时适用。
  • 适用于处理远大于集群总内存的数据集,需权衡计算与数据传输成本。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Dask - Advanced Optimization & Cluster Tuning

Parallel computing is not "free". In a distributed environment, the cost of moving data (network I/O) and scheduling tasks can often exceed the computation time. This guide focuses on minimizing overhead and maximizing throughput.

When to Use

  • Your Dask jobs are failing with "KilledWorker" or "OutOfMemory" errors.
  • The Dask Dashboard shows a lot of "red" (communication) or "gray" (idle) time.
  • You need to process datasets that are 10x-100x larger than the total RAM of your cluster.
  • You are building custom distributed algorithms using dask.delayed or Futures.
  • You need to optimize resource allocation (CPU vs. Threads) for specific workloads.

Reference Documentation

Core Principles

1. Communication is the Killer

The fastest distributed task is the one that doesn't need data from another machine. Aim for data locality.

2. The Goldilocks Chunk Size

  • Too small: Scheduler is overwhelmed by millions of tiny tasks (Task Overhead).
  • Too large: Tasks don't fit in memory, causing disk spilling or worker crashes.
  • Target: 100MB - 300MB per chunk for most numeric data.

3. Computation vs. Serialization

Every object sent to a worker must be serialized (pickled). Large Python objects (like complex dicts) passed as arguments can slow down the cluster significantly.

Quick Reference: Performance Profiling

from dask.distributed import Client, performance_report

client = Client("tcp://scheduler-address:8786")

# Generate a detailed HTML report of the computation
with performance_report(filename="dask-report.html"):
    result = big_computation.compute()

# Tip: Check the "Task Stream" for gaps. Gaps mean workers are idle
# waiting for the scheduler or network.

Critical Rules

✅ DO

  • Use client.scatter - If multiple tasks need the same large piece of data, send it to workers once.
  • Prefer map_partitions - In DataFrames, this allows you to run a single optimized pandas operation per chunk instead of row-wise logic.
  • Use persist() for branching - If you use the same intermediate result in two different computations, persist() it in memory to avoid re-calculating the entire graph twice.
  • Profile with the Dashboard - Watch the "Memory" and "Task Stream" tabs in real-time.
  • Match Threads to Workload - Use many threads for I/O bound tasks (web scraping, reading files) and 1 thread per worker for CPU-bound tasks (NumPy math, ML training) to avoid Global Interpreter Lock (GIL) issues.

❌ DON'T

  • Don't use compute() in loops - This pulls data to the local machine and destroys parallel efficiency.
  • Don't pass Large Data as Arguments - Instead of delayed(func)(large_df), use large_future = client.scatter(large_df) then delayed(func)(large_future).
  • Don't ignore Data Skew - If one worker has 10GB of data and others have 100MB, the cluster is only as fast as the slowest worker. Use repartition or rechunk.
  • Don't use list(dask_collection) - This forces an immediate compute of all elements into local memory.

Data Locality & Communication

Using scatter and Futures

# ❌ BAD: Large object sent to every task (High Overhead)
large_lookup = load_heavy_dict()
results = [delayed(process)(x, large_lookup) for x in data]

# ✅ GOOD: Scatter once, use reference
[large_future] = client.scatter([large_lookup], broadcast=True)
results = [delayed(process)(x, large_future) for x in data]

Memory Management Tuning

Fighting the "KilledWorker"

Worker memory has thresholds:

  • Target (0.6): Dask tries to stay below this.
  • Spill (0.7): Dask starts moving data to disk.
  • Pause (0.8): Worker stops accepting new tasks.
  • Terminate (0.95): OS or Dask kills the worker.
# Adjusting worker limits via config (distributed.yaml or code)
import dask
dask.config.set({"distributed.worker.memory.target": 0.45})
dask.config.set({"distributed.worker.memory.spill": 0.55})

Task Graph Optimization

Fusing Operations

Dask automatically "fuses" many operations into one task to reduce scheduler overhead.

# Multiple operations on a DataArray
da = da + 1
da = da * 2
da = da.sum()

# When computing, Dask optimizes the graph
# You can inspect it:
da.visualize(filename='graph.pdf', optimize_graph=True)

Practical Workflows

1. Optimizing Large Joins (Shuffling)

Joins are expensive because they require moving data between workers (shuffling).

def optimized_join(left_ddf, right_ddf):
    # 1. Ensure right side is small enough to be broadcasted
    # or ensure both are partitioned by the join key.

    # If one DF is small (e.g. < 100MB)
    # result = left_ddf.map_partitions(lambda df: df.merge(small_df_local, on='key'))

    # 2. If both are large, set the index first (triggers a shuffle once)
    left_ddf = left_ddf.set_index('key')
    right_ddf = right_ddf.set_index('key')

    # 3. Subsequent joins will be "locally aligned" (Zero communication)
    return left_ddf.merge(right_ddf, left_index=True, right_index=True)

2. High-Throughput I/O with Parquet

def fast_save(ddf, path):
    # 1. Categorical columns save massive space
    ddf = ddf.categorize()

    # 2. Write with efficient compression
    # 'snappy' is usually the best balance for speed
    ddf.to_parquet(path, engine='pyarrow', compression='snappy',
                   write_metadata_file=True)

3. Managing a Long-running Cluster

# Prevent a "dirty" cluster from slowing down
def clean_cluster_state():
    client.cancel(list(client.futures)) # Clear all references
    client.restart() # Hard reset all workers
    import gc
    gc.collect() # Local cleanup

Advanced Configuration

Resource Tagging

Tell Dask to run specific tasks only on specific workers (e.g., those with a GPU).

# Start worker with: dask-worker ... --resources "GPU=1"

# Submit task requesting resource
future = client.submit(my_gpu_function, data, resources={'GPU': 1})

Common Pitfalls and Solutions

The "Zombie Worker" (serialization error)

If your task requires a library that isn't installed on the workers, the task will fail repeatedly.

# ✅ Solution: Use pip_install or conda_install via client
from dask.distributed import PipInstall
client.register_plugin(PipInstall(packages=["scikit-learn"]))

Unmanaged Memory

Python's garbage collector isn't immediate. Sometimes workers appear full because "Unmanaged Memory" hasn't been freed.

# ✅ Solution: Manually trigger GC on workers
def worker_gc():
    import gc
    return gc.collect()

client.run(worker_gc)

Too Many Partitions

If you have 10,000 partitions for a 1GB dataset, you'll spend more time scheduling than calculating.

# ✅ Solution: Repartition to fewer pieces
ddf = ddf.repartition(npartitions=20)

Dask Optimization is the art of balancing resources. By understanding the flow of data through the network and the mechanics of worker memory, you can scale Python logic to planetary-scale datasets with industrial reliability.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.07%
按下载量换算37

Claude

32.21%
按下载量换算34

Cursor

20.97%
按下载量换算22

Gemini CLI

9.42%
按下载量换算10

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills