You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: wiki/newdesign.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -542,14 +542,14 @@ init :: Int -> ([NodeId] -> Process ()) -> IO ()
542
542
543
543
It takes a number of (OS) processes to fork and the initial (CH) process gets passes a corresponding number of remote `NodeId`s.
544
544
545
-
For the backend that deals with VMs in the cloud, it might have two initialisation functions, one for the master controller node and one for slave nodes.
545
+
For the backend that deals with VMs in the cloud, it might have two initialisation functions, one for the controller node and one for worker nodes.
546
546
547
547
{% highlight haskell %}
548
-
initMaster :: MasterConfig -> Process () -> IO ()
549
-
initSlave :: SlaveConfig -> IO ()
548
+
initController :: ControllerConfig -> Process () -> IO ()
549
+
initWorker :: WorkerConfig -> IO ()
550
550
{% endhighlight %}
551
551
552
-
Additionally it might have actions for firing up new VMs and running the program binary in slave mode on that VM:
552
+
Additionally it might have actions for firing up new VMs and running the program binary in worker mode on that VM:
0 commit comments