Introduce save.unparsed.event.im
[aquarium] / src / test / 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:queue". Entries are separated by ;
33 amqp.resevents.queues=pithos:pithos.resource.#:aquarium-pithos-resevents;cyclades:cyclades.resource.#:aquarium-cyclades-resevents
34
35 # Queue declarations for receiving IM events, format is "exchange:routing.key:queue"
36 amqp.userevents.queues=astakos:astakos.user:aquarium-userevents
37
38 # REST service listening port
39 rest.port=8888
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 events.store.folder=events
66
67 #######
68 # DO NOT TOUCH the following options, unless you know what you are doing
69 #######
70
71 # Actor subsystem
72 actor.provider.class=gr.grnet.aquarium.actor.SimpleLocalActorProvider
73
74 # Class that initializes the REST service
75 rest.service.class=gr.grnet.aquarium.rest.actor.RESTActorService
76
77 # Store subsystem
78 store.provider.class=gr.grnet.aquarium.store.mongodb.MemStore
79
80 # Override the user store (if present, it will not be given by the store provider above)
81 user.state.store.class=gr.grnet.aquarium.store.memory.MemStore
82
83 # Override the event store (if present, it will not be given by the store provider above)
84 resource.event.store.class=gr.grnet.aquarium.store.memory.MemStore
85
86 # Override the WalletEntry store (if present, it will not be given by the store provider above)
87 wallet.entry.store.class=gr.grnet.aquarium.store.memory.MemStore
88
89 # Override the user event store (if present, it will not be given by the store provider above)
90 user.event.store.class=gr.grnet.aquarium.store.memory.MemStore
91
92 # Override the user event store (if present, it will not be given by the store provider above)
93 policy.store.class=gr.grnet.aquarium.store.memory.MemStore
94
95 # The lower mark for the UserActors' LRU, managed by UserActorManager.
96 user.actor.LRU.lower.mark=800
97
98 # The upper mark for the UserActors' LRU, managed by UserActorManager.
99 user.actors.LRU.upper.mark=1000
100
101 # A time period in milliseconds for which we can tolerate stale data regarding user state.
102 user.state.timestamp.threshold=10000
103
104 # Comma separated list of exchanges known to aquarium
105 amqp.exchange=aquarium
106
107 # The name of the DB schema to use
108 persistence.db=aquarium
109
110 # This is an absolute constant for the lifetime of an Aquarium installation.
111 # 1 means that every second counts
112 time.unit.in.seconds = 1
113
114 # Save unparsed user events to user event store
115 ack.unparsed.event.im=false