|
|
• Connecting Analytics Server to Azure Postgre SQl database is an optional step. This is required to be done post installation only if you have chosen Azure Postgresql as the Analytics database.
• Analytics Server supports Azure PostgreSQL Flex server.
|
database:
driverClass: "org.postgresql.Driver"
user: "<userName>@<databaseName>"
password: ${microservices.db.user.password} # Could hard code password here for testing
url: "jdbc:postgresql://<AzurePostgresDBaddress>:5432/<databaseName>?sslmode=require&autosave=always "
initialSize: ${microservices.db.minSize}
minSize: ${microservices.db.minSize}
maxSize: ${microservices.db.maxSize}
properties:
hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect"
flyway:
# Locations to scan recursively for migrations. (default: db/migration)
locations:
- /job-create-schema
- /filter-create-schema
- /migration-postgres # update this variable too
- /migration-common
.....
# ---------------------------------
# Flink Key Password
# ---------------------------------
fk) KEYNAME="flinkKeyPasswordKey"
TYPE="Flink Key Password"
;;
# ---------------------------------
# Db Password
# ---------------------------------
db) KEYNAME="databaseCreds"
TYPE="Db Password"
;;
# ---------------------------------
# help
# ---------------------------------
-h)
displayHelp
exit 0
;;
......