Worker Configuration
1. Worker Storage
Configuring Page Store Location
spec:
worker:
pagestore:
# Defaults to hostPath: /mnt/alluxio/pagestore on the node's filesystem.
size: 100Gi
reservedSize: 10Gispec:
worker:
pagestore:
type: persistentVolumeClaim
storageClass: "" # defaults to "standard"; empty string = static binding
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>Sizing the Page Store
Multi-Disk Configuration
Heterogeneous Workers
2. Resource and JVM Tuning
Memory Limit Formula
Diagnosing OOM
Symptom
Root Cause
Fix
3. Worker Network Configuration
Binding the Worker to a Specific NIC
Last updated