##################################### This file provides all possible options for padas.properties file.# Use this file to configure PADAS instances and their properties.######################################################################### Required Settings# These settings must be defined for each instance regardless of its role.####################################bootstrap.servers=localhost:9092# Required - <string># Kafka bootstrap server list with port information. Multiple servers can be separated by comma.# Default: localhost:9092padas.uuid=# N/A - Automatically assigned# Universally Unique Identifier for this instance. Created upon initial start.##################################### Optional Settings####################################padas.application.id=padas-engine# Optional - <string># Unique ID for this application cluster. Used as consumer group ID as well.# Default: padas-enginepadas.home=/opt/padas# Optional - <string># Root folder where PADAS is installed# Default: /opt/padaspadas.group=default# Optional - <string># Group name that this instance belongs to. This is used to distribute running topologies to different instances.##################################### Advanced Settings####################################padas.state.dir=/opt/padas/var/padas-streams-global-stores# Optional - <string># State store directory to keep local RocksDB data# Default: ${padas.home}/var/padas-streams-global-storespadas.log.dir=/opt/padas/var/logs# Optional - <string># Directory for logs# Default: ${padas.home}/var/logsnum.stream.threads=10# Optional - <integer># Number of threads to run in parallel for this streaming instance. # Default: 10##################################### SETTINGS FOR REST API####################################server.port=8999# Optional - <integer># Port number for REST API# Default: 8999server.ssl.enabled=true# Optional - <boolean># Enable SSL with the server.ssl.* configuration# Default: trueserver.ssl.key-alias=padas# Optional - <string># SSL Key alias for certificate# Default: padasserver.ssl.key-store-password=password# Optional - <string># SSL Key Store password# Default: passwordserver.ssl.key-store=classpath:padas-ssl.p12# Optional - <string># SSL Key Store path, this should be the full path (e.g. /opt/padas/etc/certs/my.jks)# Default: reads from built-in classpathserver.ssl.key-store-type=PKCS12# Optional - <string># SSL Key Store type# Default: PKCS12
Padas Engine Properties Example (padas.properties)
{"server":{"host":"192.168.1.150",// UI is listening on this IP only"port":9000,"ssl":{"key":"padas-key.pem","cert":"padas-cert.pem"}},"api":{"host":"192.168.1.100",// Padas Engine is running on this IP"port":8999}}