Test commit for the new credentials
[aquarium] / src / main / resources / aquarium.properties
1 version = 0.0.2-SNAPSHOT
2
3 # Location of the Aquarium accounting policy config file. If commented
4 # out, Aquarium will look for the file policy.yaml first at the program
5 # starting directory and then fall back to the classpath.
6 aquarium.policy = policy.yaml
7
8 # Location of the file that defines the mappings between
9 # user roles and agreements
10 aquarium.role-agreement.map=role-agreement.map
11
12 ### Queue related settings
13
14 # Comma separated list of amqp servers to use. The servers must be in an
15 # active-active mode.
16 amqp.servers=localhost
17
18 # Comma separated list of amqp servers to use. The servers must be in an
19 # active-active mode.
20 amqp.port=5672
21
22 # User name for connecting with the AMQP server
23 amqp.username=aquarium
24
25 # Passwd for connecting with the AMQP server
26 amqp.passwd=aquarium
27
28 # Virtual host on the AMQP server
29 amqp.vhost=/
30
31 # Queue declarations for receiving resource events.
32 # Format is "exchange:routing.key". Entries are separated by ;
33 amqp.resevents.queues=exch:*.resource.#:aquarium-resevents
34
35 # Queue declarations for receiving IM events, format is "exchange:routing.key"
36 amqp.userevents.queues=exch:*.resource.#:aquarium-resevents
37
38 # REST service listening port
39 rest.port=8080
40
41 ### Message store related settings
42
43 # Provider for persistence services.
44 # Currently one of: mongo
45 persistence.provider=mongodb
46
47 # Hostname for the persistence service
48 persistence.host=localhost
49
50 # Port for connecting to the persistence service
51 persistence.port=27017
52
53 # Username for connecting to the persistence service
54 persistence.username=aquarium
55
56 # Password for connecting to the persistence service
57 persistence.password=aquarium
58
59 ### Performance options
60
61 # Maximum number of open connections to MongoDB. Has no effect if
62 # another driver is in use
63 mongo.connection.pool.size=20
64
65 #######
66 # DO NOT TOUCH the following options, unless you know what you are doing
67 #######
68
69 # Actor subsystem
70 actor.provider.class=gr.grnet.aquarium.actor.SimpleLocalActorProvider
71 # Class that initializes the REST service
72 rest.service.class=gr.grnet.aquarium.rest.actor.RESTActorService
73 # Store subsystem
74 store.provider.class=gr.grnet.aquarium.store.mongodb.MongoDBStoreProvider
75 # Override the user store (if present, it will not be given by the store provider above)
76 #user.state.store.class=gr.grnet.aquarium.store.memory.MemStorede the event store (if present, it will not be given by the store provider above)
77 #resource.event.store.class=
78 # Override the WalletEntry store (if present, it will not be given by the store provider above)
79 #wallet.entry.store.class=
80 # Override the user event store (if present, it will not be given by the store provider above)
81 #user.event.store.class=
82 # Override the user event store (if present, it will not be given by the store provider above)
83 #policy.store.class=
84
85 # The lower mark for the UserActors' LRU, managed by UserActorManager.
86 user.actor.LRU.lower.mark=800
87 # The upper mark for the UserActors' LRU, managed by UserActorManager.
88 user.actors.LRU.upper.mark=1000
89
90 # A time period in milliseconds for which we can tolerate stale data regarding user state.
91 user.state.timestamp.threshold=10000
92
93 # Exchnage used by Aquarium to publish messages
94 amqp.exchange=aquarium
95
96 # The name of the DB schema to use
97 persistence.db=aquarium