-
Notifications
You must be signed in to change notification settings - Fork 0
/
configs-example.yaml
28 lines (21 loc) · 1.15 KB
/
configs-example.yaml
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
# This is an example config file.
# (optional) Used to register additional backend stores.
additional-stores:
- myffs: ffs:s3://my-bucket/my-prefix/
- miso-nda: ffs:s3://miso-nda/miso-prefix/
# (optional, default=False) Give precedence to 'additional-stores' over any hard-coded centralized
# stores when using the `gather` operation to search for datasets when a store id is not provided.
prioritize-additional-stores: True
# (optional, default=False) Disable all hardcoded centralized stores.
disable-centralized: True
# (optionl, no default) - The path to a local directory that is used as the cache.
# Files cached here will be persistent (not removed at the end of the julia session)
# and can be reused across sessions.
DATACLIENT_CACHE_DIR: ./cache/
# (optionl, default=20000) The max cache size in MB before older files are removed
DATACLIENT_CACHE_SIZE_MB: 50000
# (optionl, default=90) Files in the custom cache dir (if specified) that are older
# than this period will be removed during initialization.
DATACLIENT_CACHE_EXPIRE_AFTER_DAYS: 7
# (optionl, default=true) Whether or not to decompress S3 files before caching.
DATACLIENT_CACHE_DECOMPRESS: true