-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
31 lines (22 loc) · 976 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
cache manager - load balanced file caching on local harddisks
See also http://code.google.com/p/cache-manager/wiki/Usage
cm-client.py
Uses the configuration in ~/.cmclient
(see cmclient.config)
cm-client.py <filename>
Copy <filename> to the local harddisk. If possible, existing
copies on other compute nodes will be used. A central
server instanced keeps track of the copies and controlls the
number of parallel transfers.
If there is not enough space left on the local disk (see
MIN_FREE and MAX_USAGE in the configuration file), older files
will be deleted.
The location of the cached file is returned on stdout. If
the caching is not possible for any reason, the original
filename will be returned.
cm-client.py -cp <source> <destination>
Copy <source> to <destination> and register <source> as copy
of <destination> on the server instance.
cm-server.py
cm-server.py <config-file>
See cmserver.config