Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • /var/log/chronopolis/
    • logging data
  • /var/lib/chronopolis/data/
    • journaled journal data for tokenization

Configuration

...

Code Block
languageyml
titleapplication.yml
collapsetrue
# Cron timer for how often the bridge is polled
bridge:
  poll: 0 0 0 * * *

# Bagging Configuration
## bag.unit: The unit for the maximum size of a Bag
## bag.max-size: The maximum size a Bag is allowed to be
## bag.dpn.node-address: The 'DPN-Node-Address' information field for dpn-info.txt | DEPRECATED
## bag.dpn.node-contact: The 'DPN-Node-Contact' information field for dpn-info.txt | DEPRECATED
## bag.dpn.node-email: The 'DPN-Node-Email' information field for dpn-info.txt     | DEPRECATED
bag:
  max-size: 2
  unit: GIGABYTE
  dpn:
    node-address: University of California, San Diego, 9500 Gilman Dr, La Jolla, CA 92093
    node-contact: Sibyl Schaefer
    node-email:
      - sschaefer@ucsd.edu
      - chronopolis-support-l@mailman.ucsd.edu

# General chron configuration
## chron.node: obsolete;
## chron.workDirectory: directory for storing information used for ongoing operations, e.g. file csv
## chron.stage.bags.posix.id: the id of the bag staging area for this service
## chron.stage.bags.posix.path: the path on disk to the bag staging area for this service 
chron:
  node: chron
  workDirectory: /tmp/chronopolis
  stage.bags:
    posix.id: 4
    posix.path: /scratch0/bags

# Chronopolis Ingest API Configuration
## ingest.api.endpoint: the http endpoint of the Ingest Server
## ingest.api.username: the username to connect to the Ingest Server with
## ingest.api.password: the password to connect to the Ingest Server with
ingest.api:
  endpoint: http://localhost:8000/
  username: admin
  password: admin

# ACE IMS Configuration
## ace.ims.endpoint: the fqdn of the ims 
## ace.ims.port: the port to connect to the ims on; one of: 80, 443
##
ace.ims:
  endpoint: localhost
  port: 808080
  waitTime: 6000

# Constraint information for DPN Replications | DEPRECATED
## constraints.nodes.name: the identifier of the DPN Node
## constraints.nodes.size-limit: limit based on the size-limit of a snapshot
## constraints.nodes.size-limit.unit: the unit to measure the snapshot in
## constraints.nodes.size-limit.size: the size of the snapshot
## constraints.nodes.members: limit based on the depositing member of a snapshot
constraints:
  nodes:
    - name: aptrust
      size-limit: 
        unit: TERABYTE
        size: 10
      members:
        - member-uuid-0
        - member-uuid-1
        - member-uuid-2


# DPN Configuration - the server to use when creating replications
#                     and connection information for the registry | DEPRECATED
dpnReplicationServer: dpn-staging.ucsd.edu
dpn:
  endpoint: http://localhost:3000/
  username: chron
  api-key: replace-me

# Duracloud Bridge Configuration
# The storage areas the bridge app writes in to
# Connection information to query the bridge
## duracloud.bridge.name: an identifier for the bridge
## duracloud.bridge.snapshots: the path on disk to the snapshots directory
## duracloud.bridge.restores: the path on disk to the restores directory
## duracloud.bridge.username: the username to use when querying the bridge
## duracloud.bridge.password: the password to use when querying the bridge
## duracloud.bridge.password: the http endpoint of the bridge 
duracloud:
  bridge:
    - name: bridge-0
      snapshots: /bridge-0/snapshots/
      restores: /bridge-0/restore/
      username: replace-me
      password: replace-me
      endpoint: http://localhost:8080/
    - name: bridge-1
      snapshots: /bridge-1/snapshots/
      restores: /bridge-1/restore/
      username: replace-me
      password: replace-me
      endpoint: http://localhost:8081/

# Push settings to decide what networks to push the snapshots into
pushDPN: false | DEPRECATED
pushChronopolis: false

# Logging configuration
logging:
  file: /var/log/bridgeintake/intake.log
  level:
    org.springframework: ERROR
    org.hibernate: ERROR
    org.chronopolis: debug
    org.chronopolis.intake.duracloud.config: trace

# Extraneous settings
#   disable SNI on https connections - false is the default and recommended value
disableSNI: false

...