forked from cea-hpc/coordinatool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoordinatool.conf
60 lines (48 loc) · 1.69 KB
/
coordinatool.conf
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Sample configuration file with default values
# The same file is shared with clients and servers, each ignoring
# values they don't care about.
# All key/values are case insensitive.
# Priority is command line options > environment variables > config file
#
###############################
# Common to client and server #
###############################
# Coordinatool address to connect/bind to
host coordinatool
# Coordinatool port to connect/bind to
port 5123
# message verbosity. Available levels are, in order,
# debug, info, normal, warn, error, off.
verbose normal
##################
# server options #
##################
# archive_id defaults to unset, meaning any archive_id is accepted.
# Set with 'archive_id X' as many times as required
#archive_id XYZ
# Redis server host/port to connect to
redis_host 127.0.0.1
redis_port 6379
# Time we want to remember clients when they disconnect, or at server
# start if there were clients in redis db.
# Make this longer than the maximum reconnection interval.
client_grace_ms 10000
# Force archive requests that match these to go to specified hosts.
# First argument is searched in data field, host name must match client id
# exactly (hostname until first dot by default)
#archive_on_hosts tag=n0 mover0
#archive_on_hosts tag=n1 mover1 mover2
##################
# client options #
##################
# client_id defaults to current hostname
#client_id XYZ
# max number of restore/archive/remove to accept at any given time.
# -1 means unlimited
max_restore -1
max_archive -1
max_remove -1
# max hsm action list size a single recv command can accept.
# This drives the allocation size on client, the server will respect what
# the client requests.
hal_size 1M