c1ebe18e2a
The new "cpu-pinning" element optimizes the amphora image for better vertical scaling. When an amphora flavor with multiple vCPUs is configured it will configure the kernel to isolate (isolcpus) all vCPUs except the first one. Furthermore, it uninstalls irqbalance and sets the IRQ affinity to the first CPU. That way the other CPUs are free to be used by HAProxy exclusively. A new customized TuneD profile applies some more tweaks for improving network latency. This new feature is disabled by default in diskimage-create.sh. Story: 2010236 Task: 46042 Change-Id: I1a0591de79be867483a044705e866b2368b2a567
24 lines
456 B
Bash
24 lines
456 B
Bash
#!/bin/sh
|
|
|
|
# Comment the line in ...tuned/functions that fails on the amp:
|
|
# DISKS_SYS="$(command ls -d1 /sys/block/{sd,cciss,dm-,vd,dasd,xvd}* 2>/dev/null)"
|
|
sed -i 's/^DISKS_SYS=/#&/' /usr/lib/tuned/functions
|
|
. /usr/lib/tuned/functions
|
|
|
|
start() {
|
|
setup_kvm_mod_low_latency
|
|
disable_ksm
|
|
|
|
return "$?"
|
|
}
|
|
|
|
stop() {
|
|
if [ "$1" = "full_rollback" ]; then
|
|
teardown_kvm_mod_low_latency
|
|
enable_ksm
|
|
fi
|
|
return "$?"
|
|
}
|
|
|
|
process $@
|