Worker 配置
1. Worker 存储
配置 Page Store 位置
spec:
worker:
pagestore:
# 默认 hostPath: /mnt/alluxio/pagestore,指向节点的本地文件系统
size: 100Gi
reservedSize: 10Gispec:
worker:
pagestore:
type: persistentVolumeClaim
storageClass: "" # 默认为 "standard";空字符串表示静态绑定
size: 100Gi
reservedSize: 10Gidocker run ... \
-v /data/alluxio-cache:/data/alluxio-cache \
-e ALLUXIO_JAVA_OPTS=" \
-Dalluxio.worker.page.store.dirs=/data/alluxio-cache \
-Dalluxio.worker.page.store.sizes=<CACHE_SIZE>" \
alluxio/alluxio-enterprise workeralluxio.worker.page.store.dirs=/data/alluxio-cache
alluxio.worker.page.store.sizes=<CACHE_SIZE>Page Store 容量规划
多盘配置
异构 Worker
2. 资源与 JVM 调优
内存限制公式
诊断 OOM
症状
根因
修复
3. Worker 网络配置
将 Worker 绑定到指定网卡
Last updated