| # 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. |
| |
| // general.conf is included only for shared settings used for the pekko-persistence-jdbc tests |
| 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" |
| } |
| } |
| } |
| |
| jdbc-journal { |
| slick = ${slick} |
| } |
| |
| # the pekko-persistence-snapshot-store in use |
| jdbc-snapshot-store { |
| slick = ${slick} |
| } |
| |
| # the pekko-persistence-query provider in use |
| jdbc-read-journal { |
| slick = ${slick} |
| } |
| |
| # the pekko-persistence-jdbc provider in use for durable state store |
| jdbc-durable-state-store { |
| slick = ${slick} |
| } |
| |
| slick { |
| profile = "slick.jdbc.PostgresProfile$" |
| db { |
| host = "localhost" |
| host = ${?DB_HOST} |
| url = "jdbc:postgresql://"${slick.db.host}":5432/docker?reWriteBatchedInserts=true" |
| user = "docker" |
| password = "docker" |
| driver = "org.postgresql.Driver" |
| numThreads = 5 |
| maxConnections = 5 |
| minConnections = 1 |
| } |
| } |