Elixir migrating running process

Suppose we are running distributed elixir with multiple nodes: n1, n2, n3, n4.

Suppose furthermore process p1 is running on node n1.

Is there any builtin function to migrate p1 from n1 to n3 ?

Context: n1 is under heavy CPU utilization, n3 is not.

1 Like

No, there is no such functionality as it is in general very hard topic. You need to handle it on your own.

2 Likes