| # Copyright 2016 Dennis Vriend |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| include "general.conf" |
| include "oracle-schema-overrides.conf" |
| |
| pekko { |
| 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"] |
| } |
| state { |
| plugin = "jdbc-durable-state-store" |
| } |
| } |
| } |
| |
| pekko-persistence-jdbc { |
| shared-databases { |
| slick { |
| profile = "slick.jdbc.OracleProfile$" |
| db { |
| host = ${docker.host} |
| host = ${?DB_HOST} |
| url = "jdbc:oracle:thin:@//"${pekko-persistence-jdbc.shared-databases.slick.db.host}":1521/xe" |
| user = "system" |
| password = "oracle" |
| driver = "oracle.jdbc.OracleDriver" |
| numThreads = 5 |
| maxConnections = 5 |
| minConnections = 1 |
| } |
| } |
| } |
| } |
| |
| jdbc-journal { |
| use-shared-db = "slick" |
| } |
| |
| # the pekko-persistence-snapshot-store in use |
| jdbc-snapshot-store { |
| use-shared-db = "slick" |
| } |
| |
| # the pekko-persistence-query provider in use |
| jdbc-read-journal { |
| use-shared-db = "slick" |
| } |
| |
| # the pekko-persistence-jdbc provider in use for durable state store |
| jdbc-durable-state-store { |
| use-shared-db = "slick" |
| } |