-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathoracle-shared-db-application.conf
More file actions
53 lines (47 loc) · 1.3 KB
/
oracle-shared-db-application.conf
File metadata and controls
53 lines (47 loc) · 1.3 KB
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
53
# Copyright 2016 Dennis Vriend
# Copyright (C) 2019 - 2022 Lightbend Inc. <https://www.lightbend.com>
include "general.conf"
include "oracle-schema-overrides.conf"
akka {
persistence {
journal {
plugin = "jdbc-journal"
// Enable the line below to automatically start the journal when the actorsystem is started
// auto-start-journals = ["jdbc-journal"]
}
snapshot-store {
plugin = "jdbc-snapshot-store"
// Enable the line below to automatically start the snapshot-store when the actorsystem is started
// auto-start-snapshot-stores = ["jdbc-snapshot-store"]
}
}
}
akka-persistence-jdbc {
shared-databases {
slick {
profile = "slick.jdbc.OracleProfile$"
db {
host = ${docker.host}
host = ${?DB_HOST}
url = "jdbc:oracle:thin:@//"${akka-persistence-jdbc.shared-databases.slick.db.host}":1521/FREEPDB1"
user = "system"
password = "oracle"
driver = "oracle.jdbc.OracleDriver"
numThreads = 5
maxConnections = 5
minConnections = 1
}
}
}
}
jdbc-journal {
use-shared-db = "slick"
}
# the akka-persistence-snapshot-store in use
jdbc-snapshot-store {
use-shared-db = "slick"
}
# the akka-persistence-query provider in use
jdbc-read-journal {
use-shared-db = "slick"
}