Commit 025d9a43 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Modified sample config file.

parent cbe51861
Loading
Loading
Loading
Loading
+32 −10
Original line number Diff line number Diff line
@@ -4,25 +4,33 @@

# Postgres
[file_catalog]
; hostname or IP address of the machine that hosts the Postgres database
host = file_catalog
; port at which the service is available, default is 5432
port = 5432
; database name
db = vospace_testdb
; user name, default is 'postgres'
user = postgres
; password, default is 'postgres'
password = postgres

# Redis
[job_cache]
; hostname or IP address of the machine that hosts Redis
host = redis
; port at which the service is available, default is 6379
port = 6379
; db index representing the db associated to jobs that retrieve data, default is 0
dbRead = 0
db_read = 0
; db index representing the db associated to jobs that store data, default is 1
dbWrite = 1
db_write = 1
; db index representing the db that stores the scheduling queues, default is 2
dbSched = 2
db_sched = 2

# Rabbitmq
[rabbitmq]
# RabbitMQ
[amqp]
; hostname or IP address of the machine that hosts the RabbitMQ broker
host = rabbitmq


@@ -32,10 +40,24 @@ host = rabbitmq

[checksum]
; buffer size in bytes when reading a chunk, default is 4096 B
fileBufferSize = 4096
file_buffer_size = 4096
; suffix for files containing MD5 checksums
md5_file_suffix = -md5sum.txt

[filegrouper]

[file_grouper]
; minimum number of files contained by a 'leaf', default is 1000
minNumOfFiles = 1000
; maximum size in bytes for a 'leaf', default is 100 GB
maxFolderSize = 100 * (2 ** 30)
 No newline at end of file
min_num_files = 1000
; maximum size in GB for a 'leaf', default is 100 GB
max_dir_size = 100


####################
# Storage settings #
####################

[tape]
path_prefix = None

[server1]
path_prefix = None