How can sshd be configured to have high CPU priority

Solution 1:

Create a systemd override file setting the nice level to a high negative priority (maximum is -20, however some kernel processes require that for integrity).

/etc/systemd/system/ssh.service.d/nice_high.conf 

[Service]
Nice=-15

Run systemctl daemon-reload for this to have an effect.