# Marquez configuration
server:
  applicationConnectors:
    - type: http
      port: 5000
      bindHost: 0.0.0.0
  adminConnectors:
    - type: http
      port: 5001
      bindHost: 0.0.0.0

# Database DataSource configuration (use `db` for Dropwizard DataSourceFactory)
db:
  driverClass: org.postgresql.Driver
  url: jdbc:postgresql://marquez-postgres:5432/marquez
  user: marquez
  password: marquez
  maxWaitForConnection: 1s
  validationQuery: "SELECT 1"
  validationQueryTimeout: 3s
  minSize: 8
  maxSize: 32
  checkConnectionWhileIdle: false
  evictionInterval: 10s
  minIdleTime: 1 minute

logging:
  level: INFO
  loggers:
    marquez: INFO
  appenders:
    - type: console
