Newer
Older
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
# Directory you want to monitor for changes
# Inside this directory only the subdirectories "commissioning", "current" and "local" are monitored
monitoredDir = /space/projects/live-viewer/data/source
#monitoredDir = /home/kuhnm/Arbeit/live-viewer/data/source
#monitoredDir = /rd
# Target to move the files into
localTarget = /space/projects/live-viewer/data/target
#localTarget = /home/kuhnm/Arbeit/live-viewer/data/target
#localTarget = /gpfs
# Event type of files to be monitored (options are: "IN_CLOSE_WRITE", "IN_MOVED_TO", ...)
monitoredEventType = IN_CLOSE_WRITE
#monitoredEventType = IN_MOVED_TO
# Subdirectories of watchDir to be monitored
monitoredSubdirs = ["commissioning", "current", "local"]
# The formats to be monitored, files in an other format will be be neglected
monitoredFormats = [".tif", ".cbf"]
# List of hosts allowed to connect
whitelist = ["localhost", "zitpcx19282", "zitpcx22614", "haspp11eval01", "it-hpc-cxi03"]
#whitelist = ["localhost", "haspp11eval01", "it-hpc-cxi03"]
# Number of parallel data streams
# if this number is modifified, the port numbers also have to be adjusted
parallelDataStreams = 1
# Enable ZMQ pipe into storage system (if set to False: the file is moved into the localTarget)
useDataStream = True
# Fixed host to send the data to with highest priority
fixedStreamHost = zitpcx19282
# Fixed Port to send the data to with highest priority
fixedStreamPort = 6006
# Port number to receive signals from
comPort = 50000
# ZMQ port to forward requests
requestFwPort = 50001
# ZMQ port to get new requests
requestPort = 50100
# ZMQ-router port which coordinates the load-balancing to the worker-processes
routerPort = 50002
# ZMQ-pull-socket port which deletes/moves given files
cleanerPort = 50003
# Chunk size of file-parts getting send via zmq
chunkSize = 10485760 ; # = 1024*1024*10
#chunkSize = 1073741824 ; # = 1024*1024*1024
# Path where the logfile will be created
logfilePath = /space/projects/live-viewer/logs
#logfilePath = /home/kuhnm/Arbeit/live-viewer/logs
#logfilePath = /home/p11user/live-viewer/logs
# Filename used for logging
logfileName = zmq_sender.log