-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
52 lines (45 loc) · 1.39 KB
/
config.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[system]
# Verbose levels:
# 0 => Errors (log::error!)
# 1 => Warnings (log::warning!)
# 2 => Info (log::info!)
# 3+ => Debug (log::debug!)
file_verbosity_level = 2
log_output = "rsys.log"
term_verbosity_level = 0
[matrix]
allow_chunk_optimization = true
chunk_size_threshold = 0.3 # percentage of original size
partial_users_chunk_size = 10000
[engine]
partial_users_chunk_size = 10000
[databases.simple-movie]
mongo_db = "simple-movie"
mongo_url = "mongodb://localhost:27017"
psql_url = "postgres://postgres:@localhost/simple-movie"
users_ratings_mongo = false
users_who_rated_mongo = false
[databases.books]
mongo_db = "books"
mongo_url = "mongodb://localhost:27017"
psql_url = "postgres://postgres:@localhost/books"
users_ratings_mongo = false
users_who_rated_mongo = false
[databases.shelves]
mongo_db = "shelves"
mongo_url = "mongodb://localhost:27017"
psql_url = "postgres://postgres:@localhost/shelves"
users_ratings_mongo = false # no effect
users_who_rated_mongo = false
[databases.movie-lens]
mongo_db = "movie-lens"
mongo_url = "mongodb://localhost:27017"
psql_url = "postgres://postgres:@localhost/movie-lens"
users_ratings_mongo = false
users_who_rated_mongo = false
[databases.movie-lens-small]
mongo_db = "movie-lens-small"
mongo_url = "mongodb://localhost:27017"
psql_url = "postgres://postgres:@localhost/movie-lens-small"
users_ratings_mongo = false
users_who_rated_mongo = false