Skip to content

Commit bd76864

Browse files
authored
Merge pull request #47 from haskell-distributed/jnm/update-tutorial-language
Update tutorial language to use controller/worker instead of master/slave
2 parents 2f55448 + 3d55621 commit bd76864

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

tutorials/2ch.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: tutorial
33
categories: tutorial
4-
sections: ['Overview', 'A Simple Example', 'Master Slave Configurations', 'Other Topologies and Backends']
4+
sections: ['Overview', 'A Simple Example', 'Controller Worker Configurations', 'Other Topologies and Backends']
55
title: 2. Managing Topologies
66
---
77

@@ -10,7 +10,7 @@ title: 2. Managing Topologies
1010
In Cloud Haskell, the system topology is determined by your choice of _Cloud Haskell Backend_.
1111
The basic topology that Cloud Haskell currently ships with is determined by the
1212
[`simplelocalnet`][1] backend, which provides for a fully connected grid of nodes with optional
13-
master-slave configuration. This backend allows nodes to discover one another using UDP multicast.
13+
controller-worker configuration. This backend allows nodes to discover one another using UDP multicast.
1414
It is a zero-configuration backend designed to get you going with Cloud Haskell quickly without
1515
imposing any particular structure on your application.
1616

@@ -46,35 +46,35 @@ connected to an underlying communications infrastructure and secondly, that we c
4646
evaluate `findPeers` at any time to obtain the set of other nodes that have broadcast
4747
their presence.
4848

49-
### Master Slave Configurations
49+
### Controller Worker Configurations
5050

51-
Here we simply rehash the master/slave example from the `simplelocalnet` documentation.
52-
With the same imports as the example above, we add a no-op slave and a master that
53-
takes a list of its (known) slaves, which it prints out before terminating them all.
51+
Here we simply rehash the controller/worker example from the `simplelocalnet` documentation.
52+
With the same imports as the example above, we add a no-op worker and a controller that
53+
takes a list of its (known) workers, which it prints out before terminating them all.
5454

5555
{% highlight haskell %}
5656
main :: IO ()
5757
main = do
5858
args <- getArgs
5959

6060
case args of
61-
["master", host, port] -> do
61+
["controller", host, port] -> do
6262
backend <- initializeBackend host port initRemoteTable
63-
startMaster backend (master backend)
64-
["slave", host, port] -> do
63+
startMaster backend (controller backend)
64+
["worker", host, port] -> do
6565
backend <- initializeBackend host port initRemoteTable
6666
startSlave backend
6767

6868
{% endhighlight %}
6969

70-
And the master node is defined thus:
70+
And the controller node is defined thus:
7171

7272
{% highlight haskell %}
73-
master :: Backend -> [NodeId] -> Process ()
74-
master backend slaves = do
75-
-- Do something interesting with the slaves
76-
liftIO . putStrLn $ "Slaves: " ++ show slaves
77-
-- Terminate the slaves when the master terminates (this is optional)
73+
controller :: Backend -> [NodeId] -> Process ()
74+
controller backend workers = do
75+
-- Do something interesting with the workers
76+
liftIO . putStrLn $ "Workers: " ++ show workers
77+
-- Terminate the workers when the controller terminates (this is optional)
7878
terminateAllSlaves backend
7979
{% endhighlight %}
8080

wiki/newdesign.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -542,14 +542,14 @@ init :: Int -> ([NodeId] -> Process ()) -> IO ()
542542

543543
It takes a number of (OS) processes to fork and the initial (CH) process gets passes a corresponding number of remote `NodeId`s.
544544

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.
546546

547547
{% highlight haskell %}
548-
initMaster :: MasterConfig -> Process () -> IO ()
549-
initSlave :: SlaveConfig -> IO ()
548+
initController :: ControllerConfig -> Process () -> IO ()
549+
initWorker :: WorkerConfig -> IO ()
550550
{% endhighlight %}
551551

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:
553553

554554
{% highlight haskell %}
555555
spawnVM :: VmAccount -> IO VM

0 commit comments

Comments
 (0)