-
Notifications
You must be signed in to change notification settings - Fork 0
/
dts.yaml.example
48 lines (45 loc) · 2.48 KB
/
dts.yaml.example
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
# dts.yaml - A configuration file for the data transfer service. See README.md
# for details.
# service parameters
service:
port: 8080 # port on which the service listenѕ
max_connections: 100 # maximum number of incoming HTTP connections
max_payload_size: 100 # limit (if any) on DTS payload size (gigabytes)
poll_interval: 60000 # interval at which DTS checks transfer statuses (ms)
endpoint: globus-local # name of endpoint used for manifest generation
data_dir: /path/to/dir # directory DTS uses for internal data storage
manifest_dir: /path/to/dir # directory DTS uses for writing transfer manifests
delete_after: 604800 # period after which info about completed transfers
# is deleted (seconds)
debug: true # set to enable debug-level logging and other tools
endpoints: # file transfer endpoints
globus-local:
name: name-of-endpoint # usually Globus display name
id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx # Unique globus endpoint ID
provider: globus # endpoint provider (globus, ???)
auth:
client_id: <ID of client with authentication secret>
client_secret: <secret>
globus-jdp:
name: name-of-endpoint # usually Globus display name
id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx # Unique globus endpoint ID
provider: globus # endpoint provider (globus, ???)
auth:
client_id: <ID of client with authentication secret>
client_secret: <secret>
globus-kbase:
name: name-of-endpoint # usually Globus display name
id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx # Unique globus endpoint ID
provider: globus # endpoint provider (globus, ???)
auth:
client_id: <ID of client with authentication secret>
client_secret: <secret>
databases: # databases between which files can be transferred
jdp: # JGI data portal configuration
name: JGI Data Portal # descriptive name
organization: Joint Genome Institute # Descriptive organization name
endpoint: globus-jdp # name of associated endpoint
kbase: # KBase configuration
name: KBase Workspace Service (KSS) # descriptive name
organization: KBase # descriptive organization name
endpoint: globus-kbase # name of associated endpoint