| # 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" |
| |
| 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.H2Profile$" |
| db { |
| url = "jdbc:h2:mem:test-database;DATABASE_TO_UPPER=false;" |
| user = "root" |
| password = "root" |
| driver = "org.h2.Driver" |
| 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" |
| } |
| |