-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapplication.properties
37 lines (31 loc) · 1.42 KB
/
application.properties
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
#
# Copyright (c) 2023-2025 - for information on the respective copyright owner
# see the NOTICE file and/or the repository https://github.com/carbynestack/castor.
#
# SPDX-License-Identifier: Apache-2.0
#
spring.profiles.group.k8s=tuplestore-minio,cache-redis,markerstorage-postgres-k8s
server.port=${CASTOR_SERVICE_PORT:10100}
server.servlet.context-path=/
management.endpoints.web.exposure.include=info,health,prometheus
carbynestack.castor.serverHeartbeat=0
carbynestack.castor.clientHeartbeat=10000
# buffer size in Bytes 10 * 1024 * 1024 == 10 MB
carbynestack.castor.messageBuffer=10485760
carbynestack.castor.master=${IS_MASTER:true}
carbynestack.castor.noSslValidation=${NO_SSL_VALIDATION:false}
# list of trusted certificates comma separated (absolute path)
carbynestack.castor.trustedCertificates=${TRUSTED_CERTIFICATES:}
# Default size of the fragments an uploaded tuple chunk is split into.
carbynestack.castor.initialFragmentSize=${INITIAL_FRAGMENT_SIZE:1000}
# can be an empty string, if this is a slave
carbynestack.castor.slaveUris=${SLAVE_URIS:}
# reservation timeout in milliseconds
carbynestack.castor.slave.waitForReservationTimeout=${RESERVATION_TIMEOUT:5000}
carbynestack.castor.slave.retryDelay=${RESERVATION_RETRY_DELAY:50}