application.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. # Configuration for repository.
  2. graph:
  3. # Name of the "main" graph containing metadata about all resources.
  4. #
  5. # Default: main
  6. main_graph: main
  7. # Configuration for binary path and fixity check generation. The hash is a
  8. # checksumn of the contents of the file.
  9. uuid:
  10. # Algorithm used to calculate the hash that generates the content path.
  11. # One of: sha1, sha224, sha256, sha384, or sha512, corresponding to the
  12. # omonymous hashlib function.
  13. #
  14. # Default: sha1.
  15. algo: sha1
  16. # Data store configuration.
  17. store:
  18. # The semantic store used for persisting LDP-RS (RDF Source) resources.
  19. # MUST support SPARQL 1.1 query and update.
  20. ldp_rs:
  21. # Connector class. This corresponds to a sub-class of the
  22. # `lakesuperior.store_layouts.rdf.base_connector.BaseConnector`.
  23. connector:
  24. module: sparql_connector
  25. options:
  26. # `location` must be consistent for all connector types. Other
  27. # options may vary.
  28. location: http://localhost:3030/fcrepo/
  29. query_ep: query
  30. update_ep: update
  31. # Optional
  32. #username: <set me>
  33. #password: <set me>
  34. #ssl_verify: false
  35. # Connector for BerkeleyDB embedded store.
  36. #module: bdb_connector
  37. #options:
  38. # location: /data/fcrepo/ldprs_store/bdb
  39. # store layout. this corresponds to a sub-class of the
  40. # `lakesuperior.store_layouts.rdf.base_rdf_layout/baserdflayout`.
  41. layout: default_layout
  42. # whether to check if the object of a client-provided triple is the uri
  43. # of a repository-managed resource and veify if that exists.
  44. # if set to false, properties are allowed to point to resources in the
  45. # repositoy that do not exist. also, if a resource is deleted, inbound
  46. # relationships may not be cleaned up.
  47. # this can be one of `false` (boolean), `lenient` or `strict`. `false`
  48. # does not check for referential integrity. `lenient` quietly drops a
  49. # user-provided triple if its object violates referential integrity.
  50. # `strict` raises an exception.
  51. referential_integrity: lenient
  52. # this mimics fedora4 behavior which segments an identifier on post.
  53. # hyrax will break if this is off.
  54. legacy_ptree_split: false
  55. # The path used to persist LDP-NR (bitstreams).
  56. # This is for now a POSIX filesystem. Other solutions such as HDFS may be
  57. # possible in the future.
  58. ldp_nr:
  59. # See store.ldp_rs.layout.
  60. layout: default_layout
  61. # The filesystem path to the root of the binary store.
  62. path: /data/fcrepo/ldpnr_store
  63. # How to split the balanced pairtree to generate a path. The hash
  64. # string is defined by the uuid.algo parameter value.
  65. # This parameter defines how many characters are in each branch. 2-4 is
  66. # the recommended setting. NOTE: a value of 2 will generate up to 256
  67. # sub-folders in a folder; 3 will generate max. 4096 and 4 will
  68. # generate max. 65536. Check your filesystem capabilities before
  69. # setting this to a non-default value.
  70. #
  71. # Default: 2
  72. pairtree_branch_length: 2
  73. # Max. number of branches to generate. 0 will split the string until
  74. # it reaches the end.
  75. # E.g. if the hash value is 0123456789abcdef01234565789abcdef and the
  76. # branch length value is 2, and the branch number is 4, the path will
  77. # be 01/23/45/67/89abcdef01234565789abcdef. For a value of 0 it will be
  78. # 01/23/45/67/89/ab/cd/ef/01/23/45/67/89/ab/cd/ef. Check your system
  79. # capabilities for maximum nested directories before setting this to 0,
  80. # especially with longer hash algorithms.
  81. #
  82. # Default: 4
  83. pairtree_branches: 4
  84. # Configuration for messaging.
  85. messaging:
  86. # List of channels to send messages to.
  87. # Each channel must define the `endpoint` and the `level` parameters.
  88. routes:
  89. # Output handler. Currently only `StompHandler` is supported.
  90. - handler: StompHandler
  91. # Whether this route is used. It False, no messages will be emitted
  92. # for this route.
  93. active: True
  94. host: 127.0.0.1
  95. port: 61613
  96. username:
  97. password:
  98. protocol: '12'
  99. destination: '/topic/fcrepo'
  100. # Message format: at the moment the following are supported:
  101. # - `ASResourceFormatter`: Sends information about a resource being
  102. # created, updated or deleted, by who and when, with no further
  103. # information about what changed.
  104. # - `ASDeltaFormatter`: Sends the same information as
  105. # `ASResourceFormatter` with the addition of the triples that were
  106. # added and the ones that were removed in the request. This may be
  107. # used to send rich provenance data to a preservation system.
  108. formatter: ASResourceFormatter