• 1 Post
  • 9 Comments
Joined 1 year ago
cake
Cake day: July 22nd, 2023

help-circle




  • Would there be a way to 3D print plastic part of a battery and just fill it with standard battery types (cylindrical batteries) and make them swapable? Because as far as i know there isn’t really any electronics in batteries, just different voltages based on number of batteries in series and different mounting mechanism. It just seems like a silly vendor lock-in.






  • You definitely shouldn’t overprovision cores (logical cores, 16 in your case), especially for gamming VM. Because you are not going to get more performance, you are only going to increase overhead of context switching. One way to “pin” VM to half of cores is to give your VM 8 vCPU and increase vCPU units value (default is 1000). vCPU units determines VM priority in case of more work than CPU can handle.

    https://forum.proxmox.com/threads/cpu-units.1047/

    Basicaly if you have 2 VMs with default value of 1000 and CPU can’t handle everything, proxmox will give both VMs equal cpu time (50/50).

    But if for example you give first VM 3000 vCPU units, then under heavy load CPU time will be divided 75/25.

    Time on CPU will be proportional to given vCPU units (under load).

    So if you want to “pin” VM to 8 logical cores, then give VM 8 vCPUs and increase vCPU units (depending how big of priority you want).