blob: 0b1602ebda4cf8172bcc47651e676f82180b072e [file] [log] [blame]
# 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"]
}
}
}
jdbc-journal {
tables {
journal {
schemaName = "dbo"
}
}
slick = ${slick}
}
# the pekko-persistence-snapshot-store in use
jdbc-snapshot-store {
tables {
snapshot {
schemaName = "dbo"
}
}
slick = ${slick}
}
# the pekko-persistence-query provider in use
jdbc-read-journal {
tables {
journal {
schemaName = "dbo"
}
}
slick = ${slick}
}
# the pekko-persistence-jdbc provider in use for durable state store
jdbc-durable-state-store {
tables {
durable_state {
schemaName = "dbo"
}
}
slick = ${slick}
}
slick {
profile = "slick.jdbc.SQLServerProfile$"
db {
host = ${docker.host}
host = ${?DB_HOST}
url = "jdbc:sqlserver://"${slick.db.host}":1433;databaseName=docker;integratedSecurity=false;encrypt=false;"
user = "docker"
password = "Str0ngPassword"
driver = "com.microsoft.sqlserver.jdbc.SQLServerDriver"
numThreads = 5
maxConnections = 5
minConnections = 1
}
}