<div dir="ltr"><div>Hi,</div><div><br></div><div><div>(I'm reading your question as "how to pin an Erlang process to a CPU _core_)</div><div><br></div><div>There is an option to erlang:spawn_opt - {scheduler, SchedNum} to pin a process to a specific scheduler in the VM. However, this option is undocumented so it's probably exposed on "caveat emptor" basis. We get the possible scheduler numbers by doing lists:seq(1, erlang:system_info(schedulers_online)) and we've been using the flag in OTP versions 20-22.<br></div></div><div><br></div><div>The scheduler itself is just a thread from the perspective of the OS so I assume it shouldn't be difficult to pin to a core.</div><div><br></div><div>All the best,</div><div>Karl<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, 20 Feb 2020 at 17:05, Satish Patel <<a href="mailto:satish.txt@gmail.com">satish.txt@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Folks,<br>
<br>
Can i tell erlang to not load-balance process or migrate process to<br>
different CPU?<br>
</blockquote></div>