46 lines
2.5 KiB
Plaintext
46 lines
2.5 KiB
Plaintext
#summary How distributed PPSS will look like
|
|
#labels Phase-Design
|
|
|
|
= Introduction =
|
|
|
|
The goal is to make PPSS distributed. So a large number of host can be used to process items, not just a single host (node). These nodes will share a single list of items that they will process in parallel.
|
|
|
|
To keep track of which items have been processed by a node, nodes must be able to communicate with each other. Therefore, a server is necessary. The primary role of the server is just a communication channel for nodes. Nodes use the server to signal to other nodes that an item is being processed is processed. So two nodes will never process the same file.
|
|
|
|
http://home.quicknet.nl/mw/prive/nan1/img/ppss.png
|
|
|
|
The secondary role of the server is to act as a file server. Assuming that files are processed, files stored on the PPSS server are transfered to the node, that will proces a file and store the result back on the server.
|
|
|
|
PPSS is very flexible: the file server can be a different host than the PPSS server that is used for inter-node communication.
|
|
|
|
= Design considerations =
|
|
|
|
== Locking of items through SSH ==
|
|
|
|
According to many sources on the Internet, the only reliable solution to *atomic* locking is to use the 'mkdir' command to create a file. The fun thing is that this is also true if 'mkdir' is executed through SSH.
|
|
|
|
So a node tries to lock a file by issueing a mkdir on the server through SSH. If this mkdir fails, the directory and thus the lock already exists and the next item in the list is tried.
|
|
|
|
== Item (file) distribution ==
|
|
|
|
If items are files that need to be processed, they can be accessed in two ways:
|
|
|
|
* using a network file system such as NFS or SMB or other. The -d option must point to the mountpoint of this share.
|
|
|
|
* using scp within scripts to (securely) copy items (files) to the local host and copy the processed items back to the server. Please note that copying files using scp is more resource intensive (CPU) than SMB or NFS.
|
|
|
|
When using PPSS in a distributed fashion, it should be decided if files can be processed in-place on the file server through the share, or that they must be copied to the node first before being processed.
|
|
|
|
== Requirements ==
|
|
|
|
* A central file server (Master).
|
|
* Accessible through SSH.
|
|
* Sufficient bandwidth (gigabit? totally depends on your needs.)
|
|
* One or more slaves.
|
|
* Must support bash shell.
|
|
|
|
optional:
|
|
|
|
* NFS / SMB share for distributing files / content
|
|
|
|
Please note that it is *NOT* required to run PPSS on the central Master server. Only slaves need PPSS installed. |